diff options
author | Timo Teräs <timo.teras@iki.fi> | 2017-02-24 11:58:32 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-02-27 06:23:05 +0000 |
commit | f9110e603a3ce00536142e4caeae8f3db1fc48a1 (patch) | |
tree | bab8401b2e1dbbcfd74e8633d8ca26f3318a57e5 /scripts | |
parent | f5c4b298918ba1d5ff85861cdeed9eff2cbcd5b9 (diff) | |
download | aports-f9110e603a3ce00536142e4caeae8f3db1fc48a1.tar.bz2 aports-f9110e603a3ce00536142e4caeae8f3db1fc48a1.tar.xz |
scripts/bootstrap.sh, main/{binutils,gcc,musl}: no more options="toolchain"
abuild has been updated to figure this one out from $BOOTSTRAP.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index de2cf7e4ed..93a1e1a36f 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -66,7 +66,7 @@ fi msg "Building cross-compiler" # Build and install cross binutils (--with-sysroot) -CTARGET=$TARGET_ARCH APKBUILD=$(apkbuildname binutils) abuild -r +CTARGET=$TARGET_ARCH BOOTSTRAP=nobase APKBUILD=$(apkbuildname binutils) abuild -r if ! CHOST=$TARGET_ARCH BOOTSTRAP=nolibc APKBUILD=$(apkbuildname musl) abuild up2date 2>/dev/null; then # C-library headers for target @@ -83,10 +83,10 @@ fi # Full cross GCC EXTRADEPENDS_TARGET="musl musl-dev" \ -CTARGET=$TARGET_ARCH APKBUILD=$(apkbuildname gcc) abuild -r -k +CTARGET=$TARGET_ARCH BOOTSTRAP=nobase APKBUILD=$(apkbuildname gcc) abuild -r # Cross build-base -CTARGET=$TARGET_ARCH APKBUILD=$(apkbuildname build-base) abuild -r +CTARGET=$TARGET_ARCH BOOTSTRAP=nobase APKBUILD=$(apkbuildname build-base) abuild -r msg "Cross building base system" |