2015-08-23 23:22:40 +08:00
|
|
|
KBUILD_CFLAGS += $(call cc-option,-ffunction-sections,) $(call cc-option,-fdata-sections,)
|
|
|
|
|
2016-04-03 21:37:43 +08:00
|
|
|
include $(srctree)/arch/$(ARCH)/soc/$(SOC_PATH)/Makefile
|
2015-08-23 23:22:40 +08:00
|
|
|
|
2016-01-13 20:49:42 +08:00
|
|
|
cflags-$(CONFIG_LTO) += $(call cc-option,-flto,)
|
2015-08-23 23:22:40 +08:00
|
|
|
|
2016-01-13 20:49:42 +08:00
|
|
|
KBUILD_CFLAGS += $(cflags-y)
|
|
|
|
KBUILD_CXXFLAGS += $(cflags-y)
|
2015-08-23 23:22:40 +08:00
|
|
|
|
|
|
|
QEMU_CPU_TYPE_arm = cortex-m3
|
|
|
|
QEMU_FLAGS_arm = -cpu $(QEMU_CPU_TYPE_arm) \
|
2016-05-05 22:55:39 +08:00
|
|
|
-machine lm3s6965evb -nographic -vga none
|
2015-08-23 23:22:40 +08:00
|
|
|
QEMU_arm = qemu-system-arm
|
|
|
|
|
|
|
|
export QEMU_FLAGS_arm QEMU_arm
|