9c88b06dc7
This patch fixes the following build error of 2.6.30-rc3-git2:
AS arch/m32r/kernel/head.o
In file included from /include/linux/init.h:7,
from /arch/m32r/kernel/head.S:11:
/include/linux/stringify.h:9: error: syntax error in macro parameter list
/include/linux/stringify.h:10: error: syntax error in macro parameter list
This build error was caused at __HEAD macro in arch/m32r/kernel/head.S,
which uses __stringify() macro.
Remove -traditional option from EXTRA_AFLAGS for the m32r,
because the __stringify() macro depends on the gcc's variadic macro
extension function, due to commit:
Make __stringify support variable argument macros too
commit: 8f7c2c3731
Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
42 lines
1020 B
Makefile
42 lines
1020 B
Makefile
#
|
|
# linux/arch/sh/boot/compressed/Makefile
|
|
#
|
|
# create a compressed vmlinux image from the original vmlinux
|
|
#
|
|
|
|
targets := vmlinux vmlinux.bin vmlinux.bin.gz head.o misc.o \
|
|
piggy.o vmlinux.lds
|
|
|
|
OBJECTS = $(obj)/head.o $(obj)/misc.o
|
|
|
|
#
|
|
# IMAGE_OFFSET is the load offset of the compression loader
|
|
#
|
|
#IMAGE_OFFSET := $(shell printf "0x%08x" $$[$(CONFIG_MEMORY_START)+0x2000])
|
|
#IMAGE_OFFSET := $(shell printf "0x%08x" $$[$(CONFIG_MEMORY_START)+0x00400000])
|
|
|
|
LDFLAGS_vmlinux := -T
|
|
|
|
$(obj)/vmlinux: $(obj)/vmlinux.lds $(OBJECTS) $(obj)/piggy.o FORCE
|
|
$(call if_changed,ld)
|
|
@:
|
|
|
|
$(obj)/vmlinux.bin: vmlinux FORCE
|
|
$(call if_changed,objcopy)
|
|
|
|
$(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
|
|
$(call if_changed,gzip)
|
|
|
|
CFLAGS_misc.o += -fpic
|
|
|
|
ifdef CONFIG_MMU
|
|
LDFLAGS_piggy.o := -r --format binary --oformat elf32-m32r-linux -T
|
|
else
|
|
LDFLAGS_piggy.o := -r --format binary --oformat elf32-m32r -T
|
|
endif
|
|
|
|
OBJCOPYFLAGS += -R .empty_zero_page
|
|
|
|
$(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.gz FORCE
|
|
$(call if_changed,ld)
|