diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-05-25 21:15:38 +0200 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-05-27 00:29:02 +0000 |
commit | 91795a6da1c02e8af75cf52f9e28662a7947b204 (patch) | |
tree | 7c7ed219dd99f9dd5749c6bfb5cfa2a5036e024a /util/xcompile | |
parent | c7921cd859eafb211f86ec13851092be449b78c5 (diff) |
libpayload;arch,cpu/x86: drop USE_MARCH_586 Kconfig option
Only the Intel Quark SoC selected this option and that SoC was dropped
in commit 531023285ea4 ("soc/intel/quark: Drop support"), so drop this
Kconfig option too.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ic4f1c7530cd8ac7a1945b1493a2d53a7904daa06
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75473
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/xcompile')
-rwxr-xr-x | util/xcompile/xcompile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 7fba665121..a3f9be73f8 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -286,11 +286,7 @@ fi if [ "${TARCH}" = "x86_32" ]; then cat <<EOF -ifneq (\$(CONFIG_USE_MARCH_586)\$(CONFIG_LP_USE_MARCH_586),) - CFLAGS_${TARCH} += -march=i586 -else - CFLAGS_${TARCH} += -march=i686 -endif +CFLAGS_${TARCH} += -march=i686 EOF fi |