HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39070 )
Change subject: cpu/Kconfig: Remove old refrence to ROMCC
......................................................................
cpu/Kconfig: Remove old refrence to ROMCC
Change-Id: I06425d8290a89e72a2420aeb6a9bc4b4acbaf498
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M src/cpu/Kconfig
1 file changed, 2 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/39070/1
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig
index 1ad7ef1..c1b84f9 100644
--- a/src/cpu/Kconfig
+++ b/src/cpu/Kconfig
@@ -27,15 +27,13 @@
bool
help
Select MMX in your socket or model Kconfig if your CPU has MMX
- streaming SIMD instructions. ROMCC can build more efficient
- code if it can spill to MMX registers.
+ streaming SIMD instructions.
config SSE
bool
help
Select SSE in your socket or model Kconfig if your CPU has SSE
- streaming SIMD instructions. ROMCC can build more efficient
- code if it can spill to SSE (aka XMM) registers.
+ streaming SIMD instructions.
config SSE2
bool
--
To view, visit https://review.coreboot.org/c/coreboot/+/39070
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I06425d8290a89e72a2420aeb6a9bc4b4acbaf498
Gerrit-Change-Number: 39070
Gerrit-PatchSet: 1
Gerrit-Owner: HAOUAS Elyes <ehaouas(a)noos.fr>
Gerrit-MessageType: newchange
Jacob Garber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38290 )
Change subject: xcompile: Use GCC wrappers for ar, nm
......................................................................
xcompile: Use GCC wrappers for ar, nm
These wrappers provide the path to the plugin that ar and nm need to
understand LTO object files.
Change-Id: Ibdae4faabf67bf6a4bb8c38970f6189646ee74b3
Signed-off-by: Jacob Garber <jgarber1(a)ualberta.ca>
---
M util/xcompile/xcompile
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/90/38290/1
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index cc4641e..987789f 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -294,12 +294,12 @@
fi # if [ "${TARCH}" = "arm64" ]...
cat <<EOF
-NM_${TARCH}:=${GCCPREFIX}nm
+NM_${TARCH}:=${GCCPREFIX}gcc-nm
OBJCOPY_${TARCH}:=${GCCPREFIX}objcopy
OBJDUMP_${TARCH}:=${GCCPREFIX}objdump
READELF_${TARCH}:=${GCCPREFIX}readelf
STRIP_${TARCH}:=${GCCPREFIX}strip
-AR_${TARCH}:=${GCCPREFIX}ar
+AR_${TARCH}:=${GCCPREFIX}gcc-ar
GNATBIND_${TARCH}:=${GCCPREFIX}gnatbind
CROSS_COMPILE_${TARCH}:=${GCCPREFIX}
--
To view, visit https://review.coreboot.org/c/coreboot/+/38290
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ibdae4faabf67bf6a4bb8c38970f6189646ee74b3
Gerrit-Change-Number: 38290
Gerrit-PatchSet: 1
Gerrit-Owner: Jacob Garber <jgarber1(a)ualberta.ca>
Gerrit-MessageType: newchange