Add cpu flag name flag.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 10 Apr 2009 14:14:21 +0000 (14:14 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 10 Apr 2009 14:14:21 +0000 (14:14 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2483 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/arm/info/at91sam7.common
bertos/cpu/avr/info/avr.common

index c305d5ed394a30f5c2cd0b99af892c76d96dbb7e..fe55da456dbc2ffdc8ef2ec21f05d3074634bf85 100644 (file)
@@ -54,6 +54,9 @@ TOOLCHAIN = "arm"
 # If we use the GCC compiler we should pass some flags.
 CORE_CPU = "arm7tdmi"
 
+# Name of the flag used by the build system to pass to the compiler the CPU type.
+CPU_FLAG_NAME = "CPU"
+
 # Where are locate the bertos directories
 SCRIPT_DIR = CPU_DIR + "arm/script/"
 HW_DIR = CPU_DIR + "arm/hw/"
index 946818733de767f0e4475377db8f416c072670e1..24b56cc534c646adc0693d26049b8aa376edf026 100644 (file)
@@ -53,6 +53,9 @@ CPU_TAGS = ["harvard"]
 # Type of the toolchain we should use to compile the source for this CPU.
 TOOLCHAIN = "avr"
 
+# Name of the flag used by the build system to pass to the compiler the CPU type.
+CPU_FLAG_NAME = "MCU"
+
 # Where are locate the bertos directories
 SCRIPT_DIR = CPU_DIR + "avr/script/"
 HW_DIR = CPU_DIR + "avr/hw/"