From: batt Date: Fri, 30 Apr 2010 10:33:55 +0000 (+0000) Subject: Comply to new wizard policy: the toolchain name is no more added automatically to... X-Git-Tag: 2.5.0~333 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=699ec4b1c3eae59baf1c98e1d2aeb51c496802ba;p=bertos.git Comply to new wizard policy: the toolchain name is no more added automatically to the tag list. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3575 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/cpu/arm/info/at91sam7.common b/bertos/cpu/arm/info/at91sam7.common index 50d172d3..0026de91 100644 --- a/bertos/cpu/arm/info/at91sam7.common +++ b/bertos/cpu/arm/info/at91sam7.common @@ -64,7 +64,7 @@ MK_CPU = CORE_CPU CPU_DEFAULT_FREQ = "48023000UL" # Special CPU related tags. -CPU_TAGS = ["at91", CORE_CPU] +CPU_TAGS = ["at91", CORE_CPU, TOOLCHAIN] # Where are locate the bertos directories SCRIPT_DIR = CPU_DIR + "arm/scripts/" diff --git a/bertos/cpu/arm/info/lpc2.common b/bertos/cpu/arm/info/lpc2.common index 0577347e..b6b80043 100644 --- a/bertos/cpu/arm/info/lpc2.common +++ b/bertos/cpu/arm/info/lpc2.common @@ -61,7 +61,7 @@ MK_CPU = CORE_CPU CPU_DEFAULT_FREQ = "72000000UL" # Special CPU related tags. -CPU_TAGS = ["lpc2", CORE_CPU] +CPU_TAGS = ["lpc2", CORE_CPU, TOOLCHAIN] # Where are locate the bertos directories SCRIPT_DIR = CPU_DIR + "arm/scripts/" diff --git a/bertos/cpu/avr/info/avr.common b/bertos/cpu/avr/info/avr.common index 081d8f3f..f0fd278c 100644 --- a/bertos/cpu/avr/info/avr.common +++ b/bertos/cpu/avr/info/avr.common @@ -47,12 +47,12 @@ include("../../path.common") CPU_DESC = [ "ATMEL AVR Microcontroller ", "8-bit RISC Architecture"] -# Special CPU related tags. -CPU_TAGS = ["harvard", "avr"] - # Type of the toolchain we should use to compile the source for this CPU. TOOLCHAIN = "avr" +# Special CPU related tags. +CPU_TAGS = ["harvard", TOOLCHAIN] + # CPU default clock frequency CPU_DEFAULT_FREQ = "8000000UL" diff --git a/bertos/cpu/cortex-m3/info/cm3.common b/bertos/cpu/cortex-m3/info/cm3.common index 881bf0b1..d08f913a 100644 --- a/bertos/cpu/cortex-m3/info/cm3.common +++ b/bertos/cpu/cortex-m3/info/cm3.common @@ -49,7 +49,7 @@ CPU_DESC = ["ARM Cortex-M3", "16-bit and 32-bit RISC Architecture"] # Type of the toolchain we should use to compile the source for this CPU. -TOOLCHAIN = "arm-" +TOOLCHAIN = "arm" # If we use the GCC compiler we should pass some flags. CORE_CPU = "cortex-m3"