mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01: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:
parent
f17e6f75b2
commit
f34878ac01
1 changed files with 4 additions and 4 deletions
|
@ -1,11 +1,11 @@
|
||||||
RELEASEPKG="release-alix"
|
RELEASEPKG="release-alix"
|
||||||
TARGET="i686-linux-musl"
|
TARGET="i586-linux-musl"
|
||||||
GCC_CPU="i686"
|
GCC_CPU="geode"
|
||||||
|
|
||||||
CPU_IS_64BIT="no"
|
CPU_IS_64BIT="no"
|
||||||
|
|
||||||
GCC_EXTRACFG="--disable-libmpx"
|
GCC_EXTRACFG="--disable-libmpx --disable-cet"
|
||||||
BINUTILS_EXTRACFG=""
|
BINUTILS_EXTRACFG="--disable-cet"
|
||||||
|
|
||||||
LINUXPKG="linux"
|
LINUXPKG="linux"
|
||||||
LINUX_TGT="bzImage modules"
|
LINUX_TGT="bzImage modules"
|
||||||
|
|
Loading…
Reference in a new issue