diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-23 12:13:07 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-23 12:13:07 +0000 |
commit | 6b9e823237f11f44f70044d6cdc81751fca5b3b3 (patch) | |
tree | ad4d7ba365dd74c69bde6a48b1d1d9980dfc5bb1 /demos | |
parent | f5d6a078c744d81c0e1ceee7d6efeeba6a6c1037 (diff) | |
download | ChibiOS-6b9e823237f11f44f70044d6cdc81751fca5b3b3.tar.gz ChibiOS-6b9e823237f11f44f70044d6cdc81751fca5b3b3.tar.bz2 ChibiOS-6b9e823237f11f44f70044d6cdc81751fca5b3b3.zip |
development
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1105 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r-- | demos/ARMCM3-STM32F103-GCC/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/demos/ARMCM3-STM32F103-GCC/Makefile b/demos/ARMCM3-STM32F103-GCC/Makefile index 8ed5863ed..74d231e8d 100644 --- a/demos/ARMCM3-STM32F103-GCC/Makefile +++ b/demos/ARMCM3-STM32F103-GCC/Makefile @@ -53,7 +53,7 @@ endif PROJECT = ch
# Define linker script file here
-LDSCRIPT = ch.ld
+LDSCRIPT= ch.ld
# Imported source files
include ../../os/ports/GCC/ARMCM3/port.mk
@@ -71,6 +71,7 @@ CSRC = ${PORTSRC} \ ../../os/io/platforms/STM32F103/serial_lld.c \
../../os/various/evtimer.c \
board.c main.c
+ # C++ sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
@@ -116,7 +117,7 @@ INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \ MCU = cortex-m3
-TRGT = arm-none-eabi-
+TRGT = arm-elf-
CC = $(TRGT)gcc
CPPC = $(TRGT)g++
# Enable loading with g++ only if you need C++ runtime support.
|