X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=include%2Fprereq-build.mk;h=211201af3da1e0aaf85a2b3701f78c3bd0d6f499;hb=d08f0c7353391ea04f07bc9a63a7446db0e38d85;hp=306a6b3e38bd5855579c3f19cf2bca0cb7e35dff;hpb=e47a17f9012e1d5a7f1af8637ac150de1647d366;p=15.05%2Fopenwrt.git diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 306a6b3e38..211201af3d 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -1,4 +1,4 @@ -# +# # Copyright (C) 2006-2012 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. @@ -31,7 +31,8 @@ $(eval $(call SetupHostCommand,gcc, \ gcc49 --version | grep gcc, \ gcc48 --version | grep gcc, \ gcc47 --version | grep gcc, \ - gcc46 --version | grep gcc)) + gcc46 --version | grep gcc, \ + gcc --version | grep Apple.LLVM )) $(eval $(call TestHostCommand,working-gcc, \ Please reinstall the GNU C Compiler - it appears to be broken, \ @@ -45,7 +46,8 @@ $(eval $(call SetupHostCommand,g++, \ g++49 --version | grep g++, \ g++48 --version | grep g++, \ g++47 --version | grep g++, \ - g++46 --version | grep g++)) + g++46 --version | grep g++, \ + g++ --version | grep Apple.LLVM )) $(eval $(call TestHostCommand,working-g++, \ Please reinstall the GNU C++ Compiler - it appears to be broken, \ @@ -68,24 +70,6 @@ $(eval $(call TestHostCommand,libssl, \ echo 'int main(int argc, char **argv) { SSL_library_init(); return 0; }' | \ gcc -include openssl/ssl.h -x c -o $(TMP_DIR)/a.out - -lcrypto -lssl)) -ifneq ($(HOST_STATIC_LINKING),) - $(eval $(call TestHostCommand,working-gcc-static, \ - Please install the static libc development package (glibc-static on CentOS/Fedora/RHEL)., \ - echo 'int main(int argc, char **argv) { return 0; }' | \ - gcc -x c $(HOST_STATIC_LINKING) -o $(TMP_DIR)/a.out -)) - - $(eval $(call TestHostCommand,working-g++-static, \ - Please install the static libstdc++ development package (libstdc++-static on CentOS/Fedora/RHEL)., \ - echo 'int main(int argc, char **argv) { return 0; }' | \ - g++ -x c++ $(HOST_STATIC_LINKING) -o $(TMP_DIR)/a.out - -lstdc++ && \ - $(TMP_DIR)/a.out)) - - $(eval $(call TestHostCommand,zlib-static, \ - Please install a static zlib. (zlib-static on CentOS/Fedora/RHEL)., \ - echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \ - gcc -include zlib.h -x c $(HOST_STATIC_LINKING) -o $(TMP_DIR)/a.out - -lz)) -endif - $(eval $(call SetupHostCommand,tar,Please install GNU 'tar', \ gtar --version 2>&1 | grep GNU, \ @@ -150,7 +134,7 @@ $(eval $(call SetupHostCommand,wget,Please install GNU 'wget', \ wget --version | grep GNU)) $(eval $(call SetupHostCommand,perl,Please install Perl 5.x, \ - perl --version | grep "perl 5")) + perl --version | grep "perl.*v5")) $(eval $(call SetupHostCommand,python,Please install Python 2.x, \ python2.7 -V 2>&1 | grep Python, \ @@ -161,10 +145,10 @@ $(eval $(call SetupHostCommand,svn,Please install the Subversion client, \ svn --version | grep Subversion)) $(eval $(call SetupHostCommand,git,Please install Git (git-core) >= 1.6.5, \ - git clone --help | grep -- --recursive)) + git clone 2>&1 | grep -- --recursive)) $(eval $(call SetupHostCommand,file,Please install the 'file' package, \ - file --version | grep file)) + file --version 2>&1 | grep file)) $(eval $(call SetupHostCommand,openssl,Please install the 'openssl' utility, \ openssl version | grep OpenSSL))