diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-10 23:35:20 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-10 23:35:20 +0000 |
commit | a996cc1444f71e867e56c4211b859b54d67c7986 (patch) | |
tree | ce01261f396cb5e1f4583b010490c60ecc8e641e /include | |
parent | df261c26ba84fbdc318defc1e44435e82159c70c (diff) | |
download | upstream-a996cc1444f71e867e56c4211b859b54d67c7986.tar.gz upstream-a996cc1444f71e867e56c4211b859b54d67c7986.tar.bz2 upstream-a996cc1444f71e867e56c4211b859b54d67c7986.zip |
add a build preeq check for glibc-static
SVN-Revision: 33121
Diffstat (limited to 'include')
-rw-r--r-- | include/prereq-build.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 228fcdcb0b..28c2a216b2 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -70,6 +70,15 @@ $(eval $(call Require,working-g++, \ Please install the GNU C++ Compiler (g++). \ )) +define Require/working-gcc-static + echo 'int main(int argc, char **argv) { return 0; }' | \ + gcc -x c -static -o $(TMP_DIR)/a.out - +endef + +$(eval $(call Require,working-gcc-static, \ + Please install the static libc development package (glibc-static on CentOS/Fedora/RHEL). \ +)) + define Require/ncurses echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \ gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses |