diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-23 06:47:26 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-23 06:47:26 +0000 |
commit | faf584ff60ea5241873e676bcf119f3bd2278a6d (patch) | |
tree | 3e47f66cb748845fc55aa6b8c3af2e9383937eba /os/common/startup/ARM/compilers | |
parent | 498be17d1f3e02d9bf217a10a8c406ac19a4d322 (diff) | |
download | ChibiOS-faf584ff60ea5241873e676bcf119f3bd2278a6d.tar.gz ChibiOS-faf584ff60ea5241873e676bcf119f3bd2278a6d.tar.bz2 ChibiOS-faf584ff60ea5241873e676bcf119f3bd2278a6d.zip |
GCC asm files extension changed from .s to .S.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9345 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common/startup/ARM/compilers')
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/crt0.S (renamed from os/common/startup/ARM/compilers/GCC/crt0.s) | 0 | ||||
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/ld/rules.ld (renamed from os/common/startup/ARM/compilers/GCC/rules.ld) | 0 | ||||
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk | 4 | ||||
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/vectors.S (renamed from os/common/startup/ARM/compilers/GCC/vectors.s) | 0 |
4 files changed, 2 insertions, 2 deletions
diff --git a/os/common/startup/ARM/compilers/GCC/crt0.s b/os/common/startup/ARM/compilers/GCC/crt0.S index 663d975b9..663d975b9 100644 --- a/os/common/startup/ARM/compilers/GCC/crt0.s +++ b/os/common/startup/ARM/compilers/GCC/crt0.S diff --git a/os/common/startup/ARM/compilers/GCC/rules.ld b/os/common/startup/ARM/compilers/GCC/ld/rules.ld index 219d0d420..219d0d420 100644 --- a/os/common/startup/ARM/compilers/GCC/rules.ld +++ b/os/common/startup/ARM/compilers/GCC/ld/rules.ld diff --git a/os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk b/os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk index baf301a34..04611a33f 100644 --- a/os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk +++ b/os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk @@ -1,8 +1,8 @@ # List of the ChibiOS generic LPC214x file.
STARTUPSRC = $(CHIBIOS)/os/common/startup/ARM/compilers/GCC/crt1.c
-STARTUPASM = $(CHIBIOS)/os/common/startup/ARM/compilers/GCC/vectors.s \
- $(CHIBIOS)/os/common/startup/ARM/compilers/GCC/crt0.s
+STARTUPASM = $(CHIBIOS)/os/common/startup/ARM/compilers/GCC/vectors.S \
+ $(CHIBIOS)/os/common/startup/ARM/compilers/GCC/crt0.S
STARTUPINC = ${CHIBIOS}/os/common/startup/ARM/devices/LPC214x
diff --git a/os/common/startup/ARM/compilers/GCC/vectors.s b/os/common/startup/ARM/compilers/GCC/vectors.S index 39bd6db73..39bd6db73 100644 --- a/os/common/startup/ARM/compilers/GCC/vectors.s +++ b/os/common/startup/ARM/compilers/GCC/vectors.S |