123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- include $(TOPDIR)/rules.mk
- include $(INCLUDE_DIR)/prereq.mk
- include $(INCLUDE_DIR)/host.mk
- include $(INCLUDE_DIR)/host-build.mk
- SHELL:=sh
- PKG_NAME:=Build dependency
- $(eval $(call TestHostCommand,working-make, \
- Please install GNU make v3.81 or later. (This version has bugs), \
- $(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, \
- rm -f $(TMP_DIR)/test.*; touch $(TMP_DIR)/test.fs; \
- test ! -f $(TMP_DIR)/test.FS))
- $(eval $(call SetupHostCommand,gcc, \
- Please install the GNU C Compiler (gcc), \
- $(CC)
- gcc
- gcc49
- gcc48
- gcc47
- gcc46
- gcc
- $(eval $(call TestHostCommand,working-gcc, \
- Please reinstall the GNU C Compiler - it appears to be broken, \
- echo 'int main(int argc, char **argv) { return 0; }' | \
- gcc -x c -o $(TMP_DIR)/a.out -))
- $(eval $(call SetupHostCommand,g++, \
- Please install the GNU C++ Compiler (g++), \
- $(CXX)
- g++
- g++49
- g++48
- g++47
- g++46
- g++
- $(eval $(call TestHostCommand,working-g++, \
- Please reinstall the GNU C++ Compiler - it appears to be broken, \
- echo 'int main(int argc, char **argv) { return 0; }' | \
- g++ -x c++ -o $(TMP_DIR)/a.out - -lstdc++ && \
- $(TMP_DIR)/a.out))
- $(eval $(call TestHostCommand,ncurses, \
- Please install ncurses. (Missing libncurses.so or ncurses.h), \
- echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \
- gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses))
- $(eval $(call TestHostCommand,zlib, \
- Please install zlib. (Missing libz.so 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))
- $(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 $(HOST_CFLAGS) -include openssl/ssl.h -x c -o $(TMP_DIR)/a.out - -lcrypto -lssl $(HOST_LDFLAGS)))
- $(eval $(call SetupHostCommand,tar,Please install GNU 'tar', \
- gtar
- gnutar
- tar
- $(eval $(call SetupHostCommand,find,Please install GNU 'find', \
- gfind
- find
- $(eval $(call SetupHostCommand,bash,Please install GNU 'bash', \
- bash
- $(eval $(call SetupHostCommand,patch,Please install GNU 'patch', \
- gpatch
- patch
- $(eval $(call SetupHostCommand,diff,Please install diffutils, \
- gdiff
- diff
- $(eval $(call SetupHostCommand,cp,Please install GNU fileutils, \
- gcp
- cp
- $(eval $(call SetupHostCommand,seq,, \
- gseq
- seq
- $(eval $(call SetupHostCommand,awk,Please install GNU 'awk', \
- gawk
- awk
- $(eval $(call SetupHostCommand,grep,Please install GNU 'grep', \
- ggrep
- grep
- $(eval $(call SetupHostCommand,getopt, \
- Please install an extended getopt version that supports
- gnugetopt -o t
- /usr/local/bin/getopt -o t
- getopt -o t
- $(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))
- $(eval $(call SetupHostCommand,unzip,Please install 'unzip', \
- unzip 2>&1 | grep zipfile, \
- unzip))
- $(eval $(call SetupHostCommand,bzip2,Please install 'bzip2', \
- bzip2
- $(eval $(call SetupHostCommand,wget,Please install GNU 'wget', \
- wget
- $(eval $(call SetupHostCommand,perl,Please install Perl 5.x, \
- perl
- $(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
- $(eval $(call SetupHostCommand,git,Please install Git (git-core) >= 1.6.5, \
- git
- $(eval $(call SetupHostCommand,file,Please install the 'file' package, \
- file
- $(eval $(call SetupHostCommand,openssl,Please install the 'openssl' utility, \
- openssl version | grep OpenSSL))
- $(eval $(call TestHostCommand,ldconfig-stub,Failed to install stub, \
- touch $(STAGING_DIR_HOST)/bin/ldconfig && \
- chmod +x $(STAGING_DIR_HOST)/bin/ldconfig))
|