Author: wmb Date: Sat Nov 13 00:57:55 2010 New Revision: 2022 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/2022
Log: x86 - Added -melf_i386 to makefile rule for inflate.ld to help with building on 64-bit hosts
Modified: cpu/x86/Linux/Makefile
Modified: cpu/x86/Linux/Makefile ============================================================================== --- cpu/x86/Linux/Makefile Sat Nov 13 00:56:24 2010 (r2021) +++ cpu/x86/Linux/Makefile Sat Nov 13 00:57:55 2010 (r2022) @@ -34,7 +34,7 @@ ${CC} -c -m32 -Wall -fno-stack-protector -ffreestanding -D_FORTIFY_SOURCE=0 -DNEED_BCOPY -O3 -fpic $< -o $@
inflate.o: inflate.lo - ${LD} -T inflate.ld $< -o $@ + ${LD} -melf_i386 -T inflate.ld $< -o $@
../build/inflate.bin: inflate.o objcopy -O binary $< $@
openfirmware@openfirmware.info