mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-16 01:54:00 +00:00
6588169d51
It is now possible to assign options to AS, CC and LD on the command line - which is only used when building modules. {A,C,LD}FLAGS_MODULE was all used both in the top-level Makefile in the arch makefiles, thus users had no way to specify additional options to AS, CC, LD when building modules without overriding the original value. Introduce a new set of variables KBUILD_{A,C,LD}FLAGS_MODULE that is used by arch specific files and free up {A,C,LD}FLAGS_MODULE so they can be assigned on the command line. All arch Makefiles that used the old variables has been updated. Note: Previously we had a MODFLAGS variable for both AS and CC. But in favour of consistency this was dropped. So in some cases arch Makefile has one assignmnet replaced by two assignmnets. Note2: MODFLAGS was not documented and is dropped without any notice. I do not expect much/any breakage from this. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Denys Vlasenko <vda.linux@googlemail.com> Cc: Haavard Skinnemoen <hskinnemoen@atmel.com> Cc: Mike Frysinger <vapier@gentoo.org> Cc: Tony Luck <tony.luck@intel.com> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Chen Liqin <liqin.chen@sunplusct.com> Acked-by: Mike Frysinger <vapier@gentoo.org> [blackfin] Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> [avr32] Signed-off-by: Michal Marek <mmarek@suse.cz>
63 lines
1.4 KiB
Makefile
63 lines
1.4 KiB
Makefile
#
|
|
# m32r/Makefile
|
|
#
|
|
# This file is included by the global makefile so that you can add your own
|
|
# architecture-specific flags and dependencies.
|
|
#
|
|
|
|
KBUILD_DEFCONFIG := m32700ut.smp_defconfig
|
|
|
|
LDFLAGS :=
|
|
OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
|
LDFLAGS_vmlinux :=
|
|
|
|
KBUILD_CFLAGS += -pipe -fno-schedule-insns
|
|
CFLAGS_KERNEL += -mmodel=medium
|
|
KBUILD_CFLAGS_MODULE += -mmodel=large
|
|
|
|
ifdef CONFIG_CHIP_VDEC2
|
|
cflags-$(CONFIG_ISA_M32R2) += -DNO_FPU -Wa,-bitinst
|
|
aflags-$(CONFIG_ISA_M32R2) += -DNO_FPU -O2 -Wa,-bitinst -Wa,-no-parallel
|
|
else
|
|
cflags-$(CONFIG_ISA_M32R2) += -DNO_FPU -m32r2
|
|
aflags-$(CONFIG_ISA_M32R2) += -DNO_FPU -m32r2 -O2
|
|
endif
|
|
|
|
cflags-$(CONFIG_ISA_M32R) += -DNO_FPU
|
|
aflags-$(CONFIG_ISA_M32R) += -DNO_FPU -O2 -Wa,-no-bitinst
|
|
|
|
KBUILD_CFLAGS += $(cflags-y)
|
|
KBUILD_AFLAGS += $(aflags-y)
|
|
|
|
CHECKFLAGS += -D__m32r__ -D__BIG_ENDIAN__=1
|
|
|
|
head-y := arch/m32r/kernel/head.o arch/m32r/kernel/init_task.o
|
|
|
|
LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
|
|
|
|
libs-y += arch/m32r/lib/ $(LIBGCC)
|
|
core-y += arch/m32r/kernel/ \
|
|
arch/m32r/mm/ \
|
|
arch/m32r/boot/ \
|
|
arch/m32r/platforms/
|
|
|
|
drivers-$(CONFIG_OPROFILE) += arch/m32r/oprofile/
|
|
|
|
boot := arch/m32r/boot
|
|
|
|
PHONY += zImage
|
|
|
|
all: zImage
|
|
|
|
zImage: vmlinux
|
|
$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
|
|
|
|
compressed: zImage
|
|
|
|
archclean:
|
|
$(Q)$(MAKE) $(clean)=$(boot)
|
|
|
|
define archhelp
|
|
echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
|
|
endef
|