summaryrefslogtreecommitdiffstats
path: root/payloads
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-06-20 14:33:28 -0700
committerLee Leahy <leroy.p.leahy@intel.com>2017-06-26 23:14:05 +0000
commit6796d787c5355b0d86d753b0df13fe128ed12a15 (patch)
treee8a1d1714991440ac1ec2ef0b8502cecacddea7f /payloads
parent08bb837268fb6d5ce84d07c8d9fe0ef4d56ac479 (diff)
downloadcoreboot-6796d787c5355b0d86d753b0df13fe128ed12a15.tar.gz
coreboot-6796d787c5355b0d86d753b0df13fe128ed12a15.tar.bz2
coreboot-6796d787c5355b0d86d753b0df13fe128ed12a15.zip
libpayload: Enable building libpayload with march=i586
Add a Kconfig value to enable building libpayload with the 586 compiler. Update the cross compiler script to add the Kconfig value name that is used when libpayload builds. The Quark SOC does not support some of the instructions generated with the 686 compiler (e.g. CMOV). Success occurs when payloads/libpayload/build/config.h indicates that CONFIG_LP_USE_MARCH_586=1. TEST=Build and run on Galileo Gen2. Change-Id: I04907e9a38ee139bae2e8b227821f54614707c25 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/20322 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'payloads')
-rw-r--r--payloads/libpayload/Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/payloads/libpayload/Kconfig b/payloads/libpayload/Kconfig
index dcb1f4e721c5..5a5bce2a640d 100644
--- a/payloads/libpayload/Kconfig
+++ b/payloads/libpayload/Kconfig
@@ -157,6 +157,14 @@ config BASE_ADDRESS
endmenu
+config USE_MARCH_586
+ bool "Use march=586 qualifier to build"
+ default n
+ depends on ARCH_X86
+ help
+ Allow a platform or processor to select to be compiled using
+ the '-march=i586' option instead of the typical '-march=i686'
+
menu "Standard Libraries"
config LIBC