| 1234567891011121314151617181920212223242526272829 |
- TARGET = smphello
- NUCLEI_SDK_ROOT = ../../..
- SRCDIRS = .
- INCDIRS = .
- COMMON_FLAGS := -O2
- # REQUIRE: AMO, SMPCC, SYSTIMER, CCM
- XLCFG_AMO :=
- XLCFG_SMPCC :=
- XLCFG_SYSTIMER :=
- XLCFG_CCM :=
- # Per-Core HEAP and STACK Size Settings
- HEAPSZ ?= 2K
- STACKSZ ?= 2K
- # DOWNLOAD mode must be a mode
- # where all cpus share the same code/data ram
- # such as external ddr/sram, core local ilm is not ok
- DOWNLOAD ?= sram
- CORE ?= nx900
- # SMP CORE Number Settings
- SMP ?= 2
- include $(NUCLEI_SDK_ROOT)/Build/Makefile.base
|