Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33580
Change subject: xcompile: Fix harmless typo ......................................................................
xcompile: Fix harmless typo
As CFLAGS_GCC and CFLAGS_CLANG are still the same at this point, this just removes some duplicate flags.
Change-Id: I532e5fa146891b70e4c1949c614b280055524593 Signed-off-by: Nico Huber nico.huber@secunet.com --- M util/xcompile/xcompile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/80/33580/1
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 052b88f..91b0c2b 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -162,7 +162,7 @@ "elf32-i386" ) LDFLAGS="$LDFLAGS -melf_i386" CFLAGS_GCC="$CFLAGS_GCC -Wl,-b,elf32-i386 -Wl,-melf_i386" - CFLAGS_CLANG="$CFLAGS_GCC -Wl,-b,elf32-i386 -Wl,-melf_i386" + CFLAGS_CLANG="$CFLAGS_CLANG -Wl,-b,elf32-i386 -Wl,-melf_i386" ;; esac
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/33580 )
Change subject: xcompile: Fix harmless typo ......................................................................
Patch Set 1: Code-Review+1
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/33580 )
Change subject: xcompile: Fix harmless typo ......................................................................
Patch Set 1: Code-Review+2
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/33580 )
Change subject: xcompile: Fix harmless typo ......................................................................
Patch Set 2: Code-Review+2
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/33580 )
Change subject: xcompile: Fix harmless typo ......................................................................
Patch Set 2: Code-Review+1
Nico Huber has submitted this change and it was merged. ( https://review.coreboot.org/c/coreboot/+/33580 )
Change subject: xcompile: Fix harmless typo ......................................................................
xcompile: Fix harmless typo
As CFLAGS_GCC and CFLAGS_CLANG are still the same at this point, this just removes some duplicate flags.
Change-Id: I532e5fa146891b70e4c1949c614b280055524593 Signed-off-by: Nico Huber nico.huber@secunet.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/33580 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: HAOUAS Elyes ehaouas@noos.fr Reviewed-by: Paul Menzel paulepanter@users.sourceforge.net Reviewed-by: Patrick Georgi pgeorgi@google.com --- M util/xcompile/xcompile 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved Paul Menzel: Looks good to me, but someone else must approve HAOUAS Elyes: Looks good to me, approved
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 7ab1cb7..050cc59 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -162,7 +162,7 @@ "elf32-i386" ) LDFLAGS="$LDFLAGS -melf_i386" CFLAGS_GCC="$CFLAGS_GCC -Wl,-b,elf32-i386 -Wl,-melf_i386" - CFLAGS_CLANG="$CFLAGS_GCC -Wl,-b,elf32-i386 -Wl,-melf_i386" + CFLAGS_CLANG="$CFLAGS_CLANG -Wl,-b,elf32-i386 -Wl,-melf_i386" ;; esac
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/33580 )
Change subject: xcompile: Fix harmless typo ......................................................................
Patch Set 3: Code-Review+2