2020-09-22 02:48:37 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2015-03-29 07:29:18 +00:00
|
|
|
#
|
2020-09-22 02:48:37 +00:00
|
|
|
# Copyright (C) 2006-2020 OpenWrt.org
|
2006-07-29 11:30:06 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/prereq.mk
|
|
|
|
|
2015-02-05 16:57:39 +00:00
|
|
|
SHELL:=sh
|
2007-03-28 18:13:54 +00:00
|
|
|
PKG_NAME:=Build dependency
|
|
|
|
|
2006-08-24 18:49:51 +00:00
|
|
|
|
2006-07-29 11:30:06 +00:00
|
|
|
# Required for the toolchain
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call TestHostCommand,working-make, \
|
2020-12-13 06:57:21 +00:00
|
|
|
Please install GNU make v4.1 or later., \
|
|
|
|
$(MAKE) -v | grep -E 'Make (4\.[1-9]|[5-9]\.)'))
|
2015-02-05 16:57:12 +00:00
|
|
|
|
|
|
|
$(eval $(call TestHostCommand,case-sensitive-fs, \
|
2017-11-07 08:45:57 +00:00
|
|
|
OpenWrt can only be built on a case-sensitive filesystem, \
|
2015-02-05 16:57:12 +00:00
|
|
|
rm -f $(TMP_DIR)/test.*; touch $(TMP_DIR)/test.fs; \
|
|
|
|
test ! -f $(TMP_DIR)/test.FS))
|
|
|
|
|
2016-10-04 09:04:50 +00:00
|
|
|
$(eval $(call TestHostCommand,proper-umask, \
|
|
|
|
Please build with umask 022 - other values produce broken packages, \
|
2018-10-22 17:28:50 +00:00
|
|
|
umask | grep -xE 0?0[012][012]))
|
2016-10-04 09:04:50 +00:00
|
|
|
|
2020-09-27 21:07:38 +00:00
|
|
|
ifndef IB
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,gcc, \
|
2021-03-01 12:27:17 +00:00
|
|
|
Please install the GNU C Compiler (gcc) 6 or later, \
|
2021-03-01 12:29:19 +00:00
|
|
|
$(CC) -dumpversion | grep -E '^([6-9]\.?|1[0-9]\.?)', \
|
|
|
|
gcc -dumpversion | grep -E '^([6-9]\.?|1[0-9]\.?)', \
|
2019-10-10 11:42:56 +00:00
|
|
|
gcc --version | grep -E 'Apple.(LLVM|clang)' ))
|
2015-02-05 16:57:12 +00:00
|
|
|
|
|
|
|
$(eval $(call TestHostCommand,working-gcc, \
|
2021-05-17 00:38:03 +00:00
|
|
|
Please reinstall the GNU C Compiler (6 or later) - \
|
2017-10-20 11:47:43 +00:00
|
|
|
it appears to be broken, \
|
2006-07-29 11:30:06 +00:00
|
|
|
echo 'int main(int argc, char **argv) { return 0; }' | \
|
2015-02-05 16:57:12 +00:00
|
|
|
gcc -x c -o $(TMP_DIR)/a.out -))
|
|
|
|
|
|
|
|
$(eval $(call SetupHostCommand,g++, \
|
2021-03-01 12:27:17 +00:00
|
|
|
Please install the GNU C++ Compiler (g++) 6 or later, \
|
2021-03-01 12:29:19 +00:00
|
|
|
$(CXX) -dumpversion | grep -E '^([6-9]\.?|1[0-9]\.?)', \
|
|
|
|
g++ -dumpversion | grep -E '^([6-9]\.?|1[0-9]\.?)', \
|
2019-10-10 11:42:56 +00:00
|
|
|
g++ --version | grep -E 'Apple.(LLVM|clang)' ))
|
2015-02-05 16:57:12 +00:00
|
|
|
|
|
|
|
$(eval $(call TestHostCommand,working-g++, \
|
2021-05-17 00:38:03 +00:00
|
|
|
Please reinstall the GNU C++ Compiler (6 or later) - \
|
2017-10-20 11:47:43 +00:00
|
|
|
it appears to be broken, \
|
2006-07-29 11:30:06 +00:00
|
|
|
echo 'int main(int argc, char **argv) { return 0; }' | \
|
2009-04-09 21:13:15 +00:00
|
|
|
g++ -x c++ -o $(TMP_DIR)/a.out - -lstdc++ && \
|
2015-02-05 16:57:12 +00:00
|
|
|
$(TMP_DIR)/a.out))
|
2006-07-29 11:30:06 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(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))
|
2020-12-30 04:19:08 +00:00
|
|
|
endif # IB
|
2015-02-05 16:57:12 +00:00
|
|
|
|
2015-09-16 08:44:53 +00:00
|
|
|
ifeq ($(HOST_OS),Linux)
|
|
|
|
zlib_link_flags := -Wl,-Bstatic -lz -Wl,-Bdynamic
|
|
|
|
else
|
|
|
|
zlib_link_flags := -lz
|
|
|
|
endif
|
|
|
|
|
2020-03-30 01:13:56 +00:00
|
|
|
$(eval $(call TestHostCommand,perl-data-dumper, \
|
|
|
|
Please install the Perl Data::Dumper module, \
|
|
|
|
perl -MData::Dumper -e 1))
|
|
|
|
|
2021-04-19 23:08:19 +00:00
|
|
|
$(eval $(call TestHostCommand,perl-findbin, \
|
|
|
|
Please install the Perl FindBin module, \
|
|
|
|
perl -MFindBin -e 1))
|
|
|
|
|
|
|
|
$(eval $(call TestHostCommand,perl-file-copy, \
|
|
|
|
Please install the Perl File::Copy module, \
|
|
|
|
perl -MFile::Copy -e 1))
|
|
|
|
|
|
|
|
$(eval $(call TestHostCommand,perl-file-compare, \
|
|
|
|
Please install the Perl File::Compare module, \
|
|
|
|
perl -MFile::Compare -e 1))
|
|
|
|
|
2015-09-29 11:37:10 +00:00
|
|
|
$(eval $(call TestHostCommand,perl-thread-queue, \
|
|
|
|
Please install the Perl Thread::Queue module, \
|
|
|
|
perl -MThread::Queue -e 1))
|
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,tar,Please install GNU 'tar', \
|
|
|
|
gtar --version 2>&1 | grep GNU, \
|
|
|
|
gnutar --version 2>&1 | grep GNU, \
|
|
|
|
tar --version 2>&1 | grep GNU))
|
2006-07-29 11:30:06 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,find,Please install GNU 'find', \
|
|
|
|
gfind --version 2>&1 | grep GNU, \
|
|
|
|
find --version 2>&1 | grep GNU))
|
2006-07-29 11:30:06 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,bash,Please install GNU 'bash', \
|
|
|
|
bash --version 2>&1 | grep GNU))
|
2012-08-11 00:05:18 +00:00
|
|
|
|
2020-02-29 15:28:44 +00:00
|
|
|
$(eval $(call SetupHostCommand,xargs, \
|
|
|
|
Please install 'xargs' that supports '-r/--no-run-if-empty', \
|
|
|
|
gxargs -r --version, \
|
|
|
|
xargs -r --version))
|
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,patch,Please install GNU 'patch', \
|
|
|
|
gpatch --version 2>&1 | grep 'Free Software Foundation', \
|
|
|
|
patch --version 2>&1 | grep 'Free Software Foundation'))
|
2012-08-11 00:05:18 +00:00
|
|
|
|
2021-06-12 23:02:29 +00:00
|
|
|
$(eval $(call SetupHostCommand,diff,Please install GNU diffutils, \
|
|
|
|
gdiff --version 2>&1 | grep GNU, \
|
|
|
|
diff --version 2>&1 | grep GNU))
|
2006-07-29 11:30:06 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,cp,Please install GNU fileutils, \
|
2016-10-11 07:33:18 +00:00
|
|
|
gcp --help 2>&1 | grep 'Copy SOURCE', \
|
|
|
|
cp --help 2>&1 | grep 'Copy SOURCE'))
|
2006-07-29 11:30:06 +00:00
|
|
|
|
2019-03-15 18:23:31 +00:00
|
|
|
$(eval $(call SetupHostCommand,seq,Please install seq, \
|
2015-02-05 16:57:12 +00:00
|
|
|
gseq --version, \
|
2019-03-15 18:23:31 +00:00
|
|
|
seq --version 2>&1 | grep seq))
|
2006-07-29 11:30:06 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,awk,Please install GNU 'awk', \
|
|
|
|
gawk --version 2>&1 | grep GNU, \
|
|
|
|
awk --version 2>&1 | grep GNU))
|
2006-10-10 21:06:45 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,grep,Please install GNU 'grep', \
|
|
|
|
ggrep --version 2>&1 | grep GNU, \
|
|
|
|
grep --version 2>&1 | grep GNU))
|
2008-08-04 23:59:18 +00:00
|
|
|
|
2020-08-06 10:53:14 +00:00
|
|
|
$(eval $(call SetupHostCommand,egrep,Please install GNU 'grep', \
|
|
|
|
gegrep --version 2>&1 | grep GNU, \
|
|
|
|
egrep --version 2>&1 | grep GNU))
|
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,getopt, \
|
|
|
|
Please install an extended getopt version that supports --long, \
|
|
|
|
gnugetopt -o t --long test -- --test | grep '^ *--test *--', \
|
2020-11-14 06:35:11 +00:00
|
|
|
getopt -o t --long test -- --test | grep '^ *--test *--', \
|
|
|
|
/usr/local/opt/gnu-getopt/bin/getopt -o t --long test -- --test | grep '^ *--test *--'))
|
2006-10-13 23:36:43 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,stat,Cannot find a file stat utility, \
|
2017-02-20 13:24:54 +00:00
|
|
|
gnustat -c%s $(TOPDIR)/Makefile, \
|
|
|
|
gstat -c%s $(TOPDIR)/Makefile, \
|
|
|
|
stat -c%s $(TOPDIR)/Makefile))
|
2012-04-06 12:05:59 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,unzip,Please install 'unzip', \
|
|
|
|
unzip 2>&1 | grep zipfile, \
|
|
|
|
unzip))
|
2006-10-10 21:06:45 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,bzip2,Please install 'bzip2', \
|
|
|
|
bzip2 --version </dev/null))
|
2006-11-24 00:03:05 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,wget,Please install GNU 'wget', \
|
|
|
|
wget --version | grep GNU))
|
2007-11-16 03:10:40 +00:00
|
|
|
|
2021-01-04 20:55:38 +00:00
|
|
|
$(eval $(call SetupHostCommand,install,Please install GNU 'install', \
|
|
|
|
install --version | grep GNU, \
|
|
|
|
ginstall --version | grep GNU))
|
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,perl,Please install Perl 5.x, \
|
2015-02-06 17:38:54 +00:00
|
|
|
perl --version | grep "perl.*v5"))
|
2014-10-20 09:17:56 +00:00
|
|
|
|
2019-03-20 08:52:58 +00:00
|
|
|
$(eval $(call CleanupPython2))
|
|
|
|
|
2021-02-16 07:21:08 +00:00
|
|
|
$(eval $(call SetupHostCommand,python,Please install Python >= 3.6, \
|
2020-10-29 07:12:16 +00:00
|
|
|
python3.9 -V 2>&1 | grep 'Python 3', \
|
2019-11-14 15:41:10 +00:00
|
|
|
python3.8 -V 2>&1 | grep 'Python 3', \
|
2019-11-14 15:50:18 +00:00
|
|
|
python3.7 -V 2>&1 | grep 'Python 3', \
|
|
|
|
python3.6 -V 2>&1 | grep 'Python 3', \
|
2021-02-16 07:21:08 +00:00
|
|
|
python3 -V 2>&1 | grep -E 'Python 3\.[6-9]\.?'))
|
2019-03-19 12:02:07 +00:00
|
|
|
|
2021-02-16 07:21:08 +00:00
|
|
|
$(eval $(call SetupHostCommand,python3,Please install Python >= 3.6, \
|
2020-10-29 07:12:16 +00:00
|
|
|
python3.9 -V 2>&1 | grep 'Python 3', \
|
2019-11-14 15:41:10 +00:00
|
|
|
python3.8 -V 2>&1 | grep 'Python 3', \
|
2019-11-14 15:50:18 +00:00
|
|
|
python3.7 -V 2>&1 | grep 'Python 3', \
|
|
|
|
python3.6 -V 2>&1 | grep 'Python 3', \
|
2021-02-16 07:21:08 +00:00
|
|
|
python3 -V 2>&1 | grep -E 'Python 3\.[6-9]\.?'))
|
2014-10-20 09:23:55 +00:00
|
|
|
|
2016-02-29 20:12:25 +00:00
|
|
|
$(eval $(call SetupHostCommand,git,Please install Git (git-core) >= 1.7.12.2, \
|
2016-03-05 21:07:18 +00:00
|
|
|
git --exec-path | xargs -I % -- grep -q -- --recursive %/git-submodule))
|
2007-12-11 22:28:10 +00:00
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
$(eval $(call SetupHostCommand,file,Please install the 'file' package, \
|
2015-02-06 17:38:54 +00:00
|
|
|
file --version 2>&1 | grep file))
|
2008-09-02 10:57:14 +00:00
|
|
|
|
2020-12-04 17:16:26 +00:00
|
|
|
$(eval $(call SetupHostCommand,rsync,Please install 'rsync', \
|
|
|
|
rsync --version </dev/null))
|
|
|
|
|
2021-03-03 18:48:55 +00:00
|
|
|
$(eval $(call SetupHostCommand,which,Please install 'which', \
|
|
|
|
which which | grep which))
|
|
|
|
|
2016-12-25 15:23:34 +00:00
|
|
|
$(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
|
|
|
|
|
2015-02-05 16:57:12 +00:00
|
|
|
# Install ldconfig stub
|
|
|
|
$(eval $(call TestHostCommand,ldconfig-stub,Failed to install stub, \
|
|
|
|
touch $(STAGING_DIR_HOST)/bin/ldconfig && \
|
|
|
|
chmod +x $(STAGING_DIR_HOST)/bin/ldconfig))
|