diff options
author | Rob Landley <rob@landley.net> | 2020-01-30 16:17:37 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-01-30 16:17:37 -0600 |
commit | c3fe030e31b2da9104cdd62cac3fa31509cb83a8 (patch) | |
tree | 1d1df5d2603410a4249c0ca68450f85c6c78a9e2 | |
parent | 509897444bd46e83c540deef06f86a8efde72acb (diff) | |
download | toybox-c3fe030e31b2da9104cdd62cac3fa31509cb83a8.tar.gz |
gcc 8.3 requires different config to build the same toolchain, because gcc.
-rwxr-xr-x | scripts/mcm-buildall.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mcm-buildall.sh b/scripts/mcm-buildall.sh index 21e650e2..6e36c7c4 100755 --- a/scripts/mcm-buildall.sh +++ b/scripts/mcm-buildall.sh @@ -148,7 +148,8 @@ else # which is used to build the rest (in alphabetical order) for i in i686:: \ aarch64:eabi: armv4l:eabihf:"--with-arch=armv5t --with-float=soft" \ - armv5l:eabihf:--with-arch=armv5t armv7l:eabihf:--with-arch=armv7-a \ + "armv5l:eabihf:--with-arch=armv5t --with-float=vfp" \ + "armv7l:eabihf:--with-arch=armv7-a --with-float=vfp" \ "armv7m:eabi:--with-arch=armv7-m --with-mode=thumb --disable-libatomic --enable-default-pie" \ armv7r:eabihf:"--with-arch=armv7-r --enable-default-pie" \ i486:: m68k:: microblaze:: mips:: mips64:: mipsel:: powerpc:: \ |