1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-15 18:26:14 +02:00

Fix toolchain configuration for alix bsp

The new gcc 8.2 toolchain emits fancy new endbr32 instructions that the
Geode LX doesn't have. The system chokes during boot with an illegal
opcode in libmount. This commit disables cet for the Alix bsp.

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2019-01-11 18:40:05 +01:00
parent f17e6f75b2
commit f34878ac01

View file

@ -1,11 +1,11 @@
RELEASEPKG="release-alix"
TARGET="i686-linux-musl"
GCC_CPU="i686"
TARGET="i586-linux-musl"
GCC_CPU="geode"
CPU_IS_64BIT="no"
GCC_EXTRACFG="--disable-libmpx"
BINUTILS_EXTRACFG=""
GCC_EXTRACFG="--disable-libmpx --disable-cet"
BINUTILS_EXTRACFG="--disable-cet"
LINUXPKG="linux"
LINUX_TGT="bzImage modules"