diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-10-26 14:19:48 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-10-26 14:21:48 -0700 |
commit | 469991120bcf550b6e2124203103876b6b7be918 (patch) | |
tree | 3b016b909aa0260d653eacfebdcc7642f47afe72 /tools/nightly | |
parent | 86395f53634b3ef1ce76a7f1e5edfdb61f8ffd80 (diff) | |
download | tmwa-469991120bcf550b6e2124203103876b6b7be918.tar.gz tmwa-469991120bcf550b6e2124203103876b6b7be918.tar.bz2 tmwa-469991120bcf550b6e2124203103876b6b7be918.tar.xz tmwa-469991120bcf550b6e2124203103876b6b7be918.zip |
Cross toolchain has landed in Debian Jessie
Diffstat (limited to 'tools/nightly')
-rwxr-xr-x | tools/nightly | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/tools/nightly b/tools/nightly index c5b96ac..16a52eb 100755 --- a/tools/nightly +++ b/tools/nightly @@ -5,9 +5,6 @@ WWW=${HOME}/www/ -# the cross-toolchain repo doesn't have gcc-defaults, so we have -# to specify the suffix. -CROSS_VERSION_SUFFIX=-4.9 BUILD=x86_64-linux-gnu ALL_HOSTS=( @@ -17,10 +14,9 @@ ALL_HOSTS=( # On Debian, boot with 'syscall.x32=y' on the kernel command line # (see GRUB_CMDLINE_LINUX in /etc/default/grub) #x86_64-linux-gnux32 -# Cross arches can be built by enabling multiarch, then installing from the -# toolchain repo at http://toolchains.secretsauce.net/ -# Executables can be run via qemu-user, but tests that require gdb fail -# (NYI: implement configure with GDB=/bin/true) +# Cross arches can be built by enabling multiarch, then installing +# the g++-$ARCH package. +# Executables can be run via qemu-user, but gdb tests must be disabled. # Bug 762073 notes impossible coinstallation of mips, mipsel, and powerpc. # dpkg-divert can only fix *one* of them. #aarch64-linux-gnu @@ -49,7 +45,7 @@ config---help() { common-config() { # HOST is set by the calling function - CXX=$HOST-g++$CROSS_VERSION_SUFFIX + CXX=$HOST-g++ EXTRA_LIBS=( /lib/$HOST/libc.so.6 /lib/$HOST/libm.so.6 @@ -61,7 +57,7 @@ common-config() { config-x86_64-linux-gnu () { - CROSS_VERSION_SUFFIX='' common-config + common-config GDB=gdb } |