diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2015-06-04 13:14:54 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-06-04 20:01:52 +0200 |
commit | 45dd591ff6e55a71dbe539588de673a9d4a2bc35 (patch) | |
tree | 3788c85f554f49c608c8925bf18a0adf2834bebe /src/arch/x86 | |
parent | 527f3923b0dc4a33b3be368107768792e09dc31e (diff) | |
download | coreboot-45dd591ff6e55a71dbe539588de673a9d4a2bc35.tar.xz |
arch/x86: No need to specify -Wa,--divide in a Makefile
We test for it in xcompile and add it to CFLAGS.
Change-Id: I041a881b542bc55c1725af384f038da3356e3bb1
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/10426
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/Makefile.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/arch/x86/Makefile.inc b/src/arch/x86/Makefile.inc index 5da5a4a241..9f4589b77e 100644 --- a/src/arch/x86/Makefile.inc +++ b/src/arch/x86/Makefile.inc @@ -27,8 +27,6 @@ subdirs-y += boot subdirs-y += lib subdirs-y += smp -DISASSEMBLY=-Wa,--divide - ################################################################################ # i386 specific tools NVRAMTOOL:=$(objutil)/nvramtool/nvramtool @@ -114,7 +112,7 @@ $(objgenerated)/bootblock_inc.S: $$(bootblock_inc) $(objgenerated)/bootblock.o: $(objgenerated)/bootblock.s @printf " CC $(subst $(obj)/,,$(@))\n" - $(CC_bootblock) $(CFLAGS_x86_32) $(DISASSEMBLY) -c -o $@ $< > $(basename $@).disasm + $(CC_bootblock) $(CFLAGS_x86_32) -c -o $@ $< > $(basename $@).disasm $(objgenerated)/bootblock.s: $(objgenerated)/bootblock_inc.S $(obj)/config.h $(obj)/build.h @printf " CC $(subst $(obj)/,,$(@))\n" |