X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=blobdiff_plain;f=include%2Fprereq-build.mk;h=2d3a1faf2dbcaf61cb4c32cf7a06bdca69f389da;hp=7945f053251b3ce5f5c76e1c3faadd245ff0e711;hb=1f22957247caa85b9583ebb4edaee618dff4b3ba;hpb=330fcd48e5282485e1d5c4f339cfc1caf1027497 diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 7945f05325..2d3a1faf2d 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. @@ -7,7 +7,6 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/prereq.mk -include $(INCLUDE_DIR)/host.mk include $(INCLUDE_DIR)/host-build.mk SHELL:=sh @@ -20,10 +19,14 @@ $(eval $(call TestHostCommand,working-make, \ $(MAKE) -v | grep -E 'Make (3\.8[1-9]|3\.9[0-9]|[4-9]\.)')) $(eval $(call TestHostCommand,case-sensitive-fs, \ - OpenWrt can only be built on a case-sensitive filesystem, \ + LEDE can only be built on a case-sensitive filesystem, \ rm -f $(TMP_DIR)/test.*; touch $(TMP_DIR)/test.fs; \ test ! -f $(TMP_DIR)/test.FS)) +$(eval $(call TestHostCommand,proper-umask, \ + Please build with umask 022 - other values produce broken packages, \ + umask | grep -xE 00[012][012])) + $(eval $(call SetupHostCommand,gcc, \ Please install the GNU C Compiler (gcc), \ $(CC) --version | grep gcc, \ @@ -31,7 +34,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 +49,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, \ @@ -58,15 +63,20 @@ $(eval $(call TestHostCommand,ncurses, \ echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \ gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses)) +ifeq ($(HOST_OS),Linux) + zlib_link_flags := -Wl,-Bstatic -lz -Wl,-Bdynamic +else + zlib_link_flags := -lz +endif + $(eval $(call TestHostCommand,zlib, \ - Please install zlib. (Missing libz.so or zlib.h), \ + Please install a static zlib. (Missing libz.a or zlib.h), \ echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \ - gcc -include zlib.h -x c -o $(TMP_DIR)/a.out - -lz)) + gcc -include zlib.h -x c -o $(TMP_DIR)/a.out - $(zlib_link_flags))) -$(eval $(call TestHostCommand,libssl, \ - Please install the openssl library (with development headers), \ - 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)) +$(eval $(call TestHostCommand,perl-thread-queue, \ + Please install the Perl Thread::Queue module, \ + perl -MThread::Queue -e 1)) $(eval $(call SetupHostCommand,tar,Please install GNU 'tar', \ @@ -90,8 +100,8 @@ $(eval $(call SetupHostCommand,diff,Please install diffutils, \ diff --version 2>&1 | grep diff)) $(eval $(call SetupHostCommand,cp,Please install GNU fileutils, \ - gcp --help, \ - cp --help)) + gcp --help 2>&1 | grep 'Copy SOURCE', \ + cp --help 2>&1 | grep 'Copy SOURCE')) $(eval $(call SetupHostCommand,seq,, \ gseq --version, \ @@ -112,14 +122,9 @@ $(eval $(call SetupHostCommand,getopt, \ getopt -o t --long test -- --test | grep '^ *--test *--')) $(eval $(call SetupHostCommand,stat,Cannot find a file stat utility, \ - gnustat -c%s $(TMP_DIR)/.host.mk, \ - gstat -c%s $(TMP_DIR)/.host.mk, \ - stat -c%s $(TMP_DIR)/.host.mk)) - -$(eval $(call SetupHostCommand,md5sum,, \ - gmd5sum /dev/null | grep d41d8cd98f00b204e9800998ecf8427e, \ - md5sum /dev/null | grep d41d8cd98f00b204e9800998ecf8427e, \ - $(SCRIPT_DIR)/md5sum /dev/null | grep d41d8cd98f00b204e9800998ecf8427e)) + gnustat -c%s $(TOPDIR)/Makefile, \ + gstat -c%s $(TOPDIR)/Makefile, \ + stat -c%s $(TOPDIR)/Makefile)) $(eval $(call SetupHostCommand,unzip,Please install 'unzip', \ unzip 2>&1 | grep zipfile, \ @@ -132,25 +137,24 @@ $(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, \ python2 -V 2>&1 | grep Python, \ python -V 2>&1 | grep Python)) -$(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 2>&1 | grep -- --recursive)) +$(eval $(call SetupHostCommand,git,Please install Git (git-core) >= 1.7.12.2, \ + git --exec-path | xargs -I % -- grep -q -- --recursive %/git-submodule)) $(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)) +$(STAGING_DIR_HOST)/bin/mkhash: $(SCRIPT_DIR)/mkhash.c + mkdir -p $(dir $@) + $(CC) -O2 -I$(TOPDIR)/tools/include -o $@ $< +prereq: $(STAGING_DIR_HOST)/bin/mkhash # Install ldconfig stub $(eval $(call TestHostCommand,ldconfig-stub,Failed to install stub, \