Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -10,9 +10,10 @@
|
||||
#
|
||||
BR2_CMAKE_VERSION_MIN = 3.1
|
||||
|
||||
BR2_CMAKE ?= cmake
|
||||
ifeq ($(call suitable-host-package,cmake,\
|
||||
$(BR2_CMAKE) $(BR2_CMAKE_VERSION_MIN)),)
|
||||
BR2_CMAKE = $(HOST_DIR)/usr/bin/cmake
|
||||
BR2_CMAKE_CANDIDATES ?= cmake cmake3
|
||||
BR2_CMAKE ?= $(call suitable-host-package,cmake,\
|
||||
$(BR2_CMAKE_VERSION_MIN) $(BR2_CMAKE_CANDIDATES))
|
||||
ifeq ($(BR2_CMAKE),)
|
||||
BR2_CMAKE = $(HOST_DIR)/bin/cmake
|
||||
BR2_CMAKE_HOST_DEPENDENCY = host-cmake
|
||||
endif
|
||||
|
||||
@@ -1,47 +1,45 @@
|
||||
#!/bin/sh
|
||||
|
||||
candidate="${1}"
|
||||
version_min="${2}"
|
||||
# prevent shift error
|
||||
[ $# -lt 2 ] && exit 1
|
||||
|
||||
major_min="${version_min%.*}"
|
||||
minor_min="${version_min#*.}"
|
||||
major_min="${1%.*}"
|
||||
minor_min="${1#*.}"
|
||||
|
||||
# cmake-3.7 incorrectly handles rpath, linking to host libraries
|
||||
blacklist_version="3.7"
|
||||
shift
|
||||
|
||||
cmake=`which ${candidate}`
|
||||
if [ ! -x "${cmake}" ]; then
|
||||
# echo nothing: no suitable cmake found
|
||||
exit 1
|
||||
fi
|
||||
for candidate; do
|
||||
|
||||
# Extract version X.Y from versions in the form X.Y or X.Y.Z
|
||||
# with X, Y and Z numbers with one or more digits each, e.g.
|
||||
# 3.2 -> 3.2
|
||||
# 3.2.3 -> 3.2
|
||||
# 3.2.42 -> 3.2
|
||||
# 3.10 -> 3.10
|
||||
# 3.10.4 -> 3.10
|
||||
# 3.10.42 -> 3.10
|
||||
version="$(${cmake} --version \
|
||||
|sed -r -e '/.* ([[:digit:]]+\.[[:digit:]]+).*$/!d;' \
|
||||
-e 's//\1/'
|
||||
)"
|
||||
major="${version%.*}"
|
||||
minor="${version#*.}"
|
||||
# Try to locate the candidate. Discard it if not located.
|
||||
cmake=`which "${candidate}" 2>/dev/null`
|
||||
[ -n "${cmake}" ] || continue
|
||||
|
||||
if [ "${version}" = "${blacklist_version}" ]; then
|
||||
# echo nothing: no suitable cmake found
|
||||
exit 1
|
||||
fi
|
||||
# Extract version X.Y from versions in the form X.Y or X.Y.Z
|
||||
# with X, Y and Z numbers with one or more digits each, e.g.
|
||||
# 3.2 -> 3.2
|
||||
# 3.2.3 -> 3.2
|
||||
# 3.2.42 -> 3.2
|
||||
# 3.10 -> 3.10
|
||||
# 3.10.4 -> 3.10
|
||||
# 3.10.42 -> 3.10
|
||||
# Discard the candidate if no version can be obtained
|
||||
version="$(${cmake} --version \
|
||||
|sed -r -e '/.* ([[:digit:]]+\.[[:digit:]]+).*$/!d;' \
|
||||
-e 's//\1/'
|
||||
)"
|
||||
[ -n "${version}" ] || continue
|
||||
|
||||
if [ ${major} -gt ${major_min} ]; then
|
||||
echo "${cmake}"
|
||||
else
|
||||
if [ ${major} -eq ${major_min} -a ${minor} -ge ${minor_min} ]; then
|
||||
major="${version%.*}"
|
||||
minor="${version#*.}"
|
||||
|
||||
if [ ${major} -gt ${major_min} ]; then
|
||||
echo "${cmake}"
|
||||
else
|
||||
# echo nothing: no suitable cmake found
|
||||
exit 1
|
||||
exit
|
||||
elif [ ${major} -eq ${major_min} -a ${minor} -ge ${minor_min} ]; then
|
||||
echo "${cmake}"
|
||||
exit
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# echo nothing: no suitable cmake found
|
||||
exit 1
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
ifeq (,$(call suitable-host-package,lzip,$(LZCAT)))
|
||||
DEPENDENCIES_HOST_PREREQ += host-lzip
|
||||
EXTRACTOR_DEPENDENCY_PRECHECKED_EXTENSIONS += .lz
|
||||
LZCAT = $(HOST_DIR)/usr/bin/lzip -d -c
|
||||
LZCAT = $(HOST_DIR)/bin/lzip -d -c
|
||||
endif
|
||||
|
||||
@@ -2,5 +2,5 @@ TAR ?= tar
|
||||
|
||||
ifeq (,$(call suitable-host-package,tar,$(TAR)))
|
||||
DEPENDENCIES_HOST_PREREQ += host-tar
|
||||
TAR = $(HOST_DIR)/usr/bin/tar
|
||||
TAR = $(HOST_DIR)/bin/tar
|
||||
endif
|
||||
|
||||
@@ -26,10 +26,11 @@ if [ ! -z "${version_bsd}" ] ; then
|
||||
minor=0
|
||||
fi
|
||||
|
||||
# Minimal version = 1.17 (previous versions do not correctly unpack archives
|
||||
# containing hard-links if the --strip-components option is used).
|
||||
# Minimal version = 1.27 (previous versions do not correctly unpack archives
|
||||
# containing hard-links if the --strip-components option is used or create
|
||||
# different gnu long link headers for path elements > 100 characters).
|
||||
major_min=1
|
||||
minor_min=17
|
||||
minor_min=27
|
||||
|
||||
# Maximal version = 1.29 (1.30 changed --numeric-owner output for
|
||||
# filenames > 100 characters). This is really a fix for a bug in
|
||||
|
||||
@@ -4,5 +4,5 @@
|
||||
ifeq (,$(call suitable-host-package,xzcat,$(XZCAT)))
|
||||
DEPENDENCIES_HOST_PREREQ += host-xz
|
||||
EXTRACTOR_DEPENDENCY_PRECHECKED_EXTENSIONS += .xz .lzma
|
||||
XZCAT = $(HOST_DIR)/usr/bin/xzcat
|
||||
XZCAT = $(HOST_DIR)/bin/xzcat
|
||||
endif
|
||||
|
||||
@@ -22,12 +22,13 @@ DEPENDENCIES_HOST_PREREQ += host-ccache
|
||||
endif
|
||||
|
||||
core-dependencies:
|
||||
@HOSTCC="$(firstword $(HOSTCC))" MAKE="$(MAKE)" \
|
||||
DL_TOOLS="$(sort $(DL_TOOLS_DEPENDENCIES))" \
|
||||
@MAKE="$(MAKE)" DL_TOOLS="$(sort $(DL_TOOLS_DEPENDENCIES))" \
|
||||
$(TOPDIR)/support/dependencies/dependencies.sh
|
||||
|
||||
core-dependencies $(DEPENDENCIES_HOST_PREREQ): HOSTCC=$(HOSTCC_NOCCACHE)
|
||||
core-dependencies $(DEPENDENCIES_HOST_PREREQ): HOSTCXX=$(HOSTCXX_NOCCACHE)
|
||||
$(DEPENDENCIES_HOST_PREREQ): HOSTCC=$(HOSTCC_NOCCACHE)
|
||||
$(DEPENDENCIES_HOST_PREREQ): HOSTCXX=$(HOSTCXX_NOCCACHE)
|
||||
$(DEPENDENCIES_HOST_PREREQ): core-dependencies
|
||||
|
||||
dependencies: core-dependencies $(DEPENDENCIES_HOST_PREREQ)
|
||||
|
||||
################################################################################
|
||||
|
||||
@@ -11,39 +11,38 @@ if test $? != 0 ; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# sanity check for CWD in LD_LIBRARY_PATH
|
||||
# try not to rely on egrep..
|
||||
if test -n "$LD_LIBRARY_PATH" ; then
|
||||
echo TRiGGER_start"$LD_LIBRARY_PATH"TRiGGER_end | grep '::' >/dev/null 2>&1 ||
|
||||
echo TRiGGER_start"$LD_LIBRARY_PATH"TRiGGER_end | grep ':\.:' >/dev/null 2>&1 ||
|
||||
echo TRiGGER_start"$LD_LIBRARY_PATH"TRiGGER_end | grep 'TRiGGER_start:' >/dev/null 2>&1 ||
|
||||
echo TRiGGER_start"$LD_LIBRARY_PATH"TRiGGER_end | grep 'TRiGGER_start\.:' >/dev/null 2>&1 ||
|
||||
echo TRiGGER_start"$LD_LIBRARY_PATH"TRiGGER_end | grep ':TRiGGER_end' >/dev/null 2>&1 ||
|
||||
echo TRiGGER_start"$LD_LIBRARY_PATH"TRiGGER_end | grep ':\.TRiGGER_end' >/dev/null 2>&1 ||
|
||||
echo TRiGGER_start"$LD_LIBRARY_PATH"TRiGGER_end | grep 'TRiGGER_start\.TRiGGER_end' >/dev/null 2>&1
|
||||
if test $? = 0; then
|
||||
echo
|
||||
echo "You seem to have the current working directory in your"
|
||||
echo "LD_LIBRARY_PATH environment variable. This doesn't work."
|
||||
exit 1;
|
||||
fi
|
||||
fi;
|
||||
# Sanity check for CWD in LD_LIBRARY_PATH
|
||||
case ":${LD_LIBRARY_PATH:-unset}:" in
|
||||
(*::*|*:.:*)
|
||||
echo
|
||||
echo "You seem to have the current working directory in your"
|
||||
echo "LD_LIBRARY_PATH environment variable. This doesn't work."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# sanity check for CWD in PATH. Having the current working directory
|
||||
# in the PATH makes the toolchain build process break.
|
||||
# try not to rely on egrep..
|
||||
if test -n "$PATH" ; then
|
||||
echo TRiGGER_start"$PATH"TRiGGER_end | grep ':\.:' >/dev/null 2>&1 ||
|
||||
echo TRiGGER_start"$PATH"TRiGGER_end | grep 'TRiGGER_start\.:' >/dev/null 2>&1 ||
|
||||
echo TRiGGER_start"$PATH"TRiGGER_end | grep ':\.TRiGGER_end' >/dev/null 2>&1 ||
|
||||
echo TRiGGER_start"$PATH"TRiGGER_end | grep 'TRiGGER_start\.TRiGGER_end' >/dev/null 2>&1
|
||||
if test $? = 0; then
|
||||
echo
|
||||
echo "You seem to have the current working directory in your"
|
||||
echo "PATH environment variable. This doesn't work."
|
||||
exit 1;
|
||||
fi
|
||||
fi;
|
||||
# Sanity check for CWD in PATH. Having the current working directory
|
||||
# in the PATH makes various packages (e.g. toolchain, coreutils...)
|
||||
# build process break.
|
||||
# PATH should not contain a newline, otherwise it fails in spectacular
|
||||
# ways as soon as PATH is referenced in a package rule
|
||||
# An empty PATH is technically possible, but in practice we would not
|
||||
# even arrive here if that was the case.
|
||||
case ":${PATH:-unset}:" in
|
||||
(*::*|*:.:*)
|
||||
echo
|
||||
echo "You seem to have the current working directory in your"
|
||||
echo "PATH environment variable. This doesn't work."
|
||||
exit 1
|
||||
;;
|
||||
(*"
|
||||
"*) printf "\n"
|
||||
# Break the '\n' sequence, or a \n is printed (which is not what we want).
|
||||
printf "Your PATH contains a newline (%sn) character.\n" "\\"
|
||||
printf "This doesn't work. Fix you PATH.\n"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
if test -n "$PERL_MM_OPT" ; then
|
||||
echo
|
||||
@@ -188,7 +187,7 @@ if grep ^BR2_NEEDS_HOST_UTF8_LOCALE=y $BR2_CONFIG > /dev/null; then
|
||||
echo "You need locale support on your build machine to build a toolchain supporting locales"
|
||||
exit 1 ;
|
||||
fi
|
||||
if ! locale -a | grep -q -i utf8$ ; then
|
||||
if ! locale -a | grep -q -i -E 'utf-?8$' ; then
|
||||
echo
|
||||
echo "You need at least one UTF8 locale to build a toolchain supporting locales"
|
||||
exit 1 ;
|
||||
@@ -223,6 +222,8 @@ if grep -q ^BR2_HOSTARCH_NEEDS_IA32_LIBS=y $BR2_CONFIG ; then
|
||||
echo "If you're running a Debian/Ubuntu distribution, install the libc6-i386,"
|
||||
echo "lib32stdc++6, and lib32z1 packages (or alternatively libc6:i386,"
|
||||
echo "libstdc++6:i386, and zlib1g:i386)."
|
||||
echo "If you're running a RedHat/Fedora distribution, install the glibc.i686 and"
|
||||
echo "zlib.i686 packages."
|
||||
echo "For other distributions, refer to the documentation on how to install the 32 bits"
|
||||
echo "compatibility libraries."
|
||||
exit 1
|
||||
@@ -237,6 +238,14 @@ if grep -q ^BR2_HOSTARCH_NEEDS_IA32_COMPILER=y $BR2_CONFIG ; then
|
||||
echo "For other distributions, refer to their documentation."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! echo "int main(void) {}" | g++ -m32 -x c++ - -o /dev/null 2>/dev/null; then
|
||||
echo
|
||||
echo "Your Buildroot configuration needs a compiler capable of building 32 bits binaries."
|
||||
echo "If you're running a Debian/Ubuntu distribution, install the g++-multilib package."
|
||||
echo "For other distributions, refer to their documentation."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
# Check that the Perl installation is complete enough for Buildroot.
|
||||
@@ -268,3 +277,8 @@ if [ -n "$missing_perl_modules" ] ; then
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! python -c "import argparse" > /dev/null 2>&1 ; then
|
||||
echo "Your Python installation is not complete enough: argparse module is missing"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user