diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-16 10:14:41 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-16 10:14:41 +0000 |
commit | 6abec945c2cc50d861f43e669b6e621367be0485 (patch) | |
tree | a640cf4570d50ed4da095278eb53feb241f025cd /os/common | |
parent | 0aabb7e5adc270fbfd31b331a8e3ee3397a24a6e (diff) | |
download | ChibiOS-6abec945c2cc50d861f43e669b6e621367be0485.tar.gz ChibiOS-6abec945c2cc50d861f43e669b6e621367be0485.tar.bz2 ChibiOS-6abec945c2cc50d861f43e669b6e621367be0485.zip |
New licensing headers.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9286 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common')
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/rules.mk | 3 | ||||
-rw-r--r-- | os/common/startup/ARMCMx/compilers/GCC/rules.mk | 3 | ||||
-rw-r--r-- | os/common/startup/SIMIA32/compilers/GCC/rules.mk | 3 | ||||
-rw-r--r-- | os/common/startup/e200/compilers/GCC/rules.mk | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/os/common/startup/ARM/compilers/GCC/rules.mk b/os/common/startup/ARM/compilers/GCC/rules.mk index b585a277f..583e2b88c 100644 --- a/os/common/startup/ARM/compilers/GCC/rules.mk +++ b/os/common/startup/ARM/compilers/GCC/rules.mk @@ -9,6 +9,9 @@ OPT = $(USE_OPT) COPT = $(USE_COPT)
CPPOPT = $(USE_CPPOPT)
+# Enforced search paths
+INCDIR := $(CHIBIOS)/os/license $(INCDIR)
+
# Garbage collection
ifeq ($(USE_LINK_GC),yes)
OPT += -ffunction-sections -fdata-sections -fno-common
diff --git a/os/common/startup/ARMCMx/compilers/GCC/rules.mk b/os/common/startup/ARMCMx/compilers/GCC/rules.mk index 4ea7768ec..93191415d 100644 --- a/os/common/startup/ARMCMx/compilers/GCC/rules.mk +++ b/os/common/startup/ARMCMx/compilers/GCC/rules.mk @@ -9,6 +9,9 @@ OPT := $(USE_OPT) COPT := $(USE_COPT)
CPPOPT := $(USE_CPPOPT)
+# Enforced search paths
+INCDIR := $(CHIBIOS)/os/license $(INCDIR)
+
# Garbage collection
ifeq ($(USE_LINK_GC),yes)
OPT += -ffunction-sections -fdata-sections -fno-common
diff --git a/os/common/startup/SIMIA32/compilers/GCC/rules.mk b/os/common/startup/SIMIA32/compilers/GCC/rules.mk index 47262a27b..b7e2a5500 100644 --- a/os/common/startup/SIMIA32/compilers/GCC/rules.mk +++ b/os/common/startup/SIMIA32/compilers/GCC/rules.mk @@ -9,6 +9,9 @@ OPT = $(USE_OPT) COPT = $(USE_COPT)
CPPOPT = $(USE_CPPOPT)
+# Enforced search paths
+INCDIR := $(CHIBIOS)/os/license $(INCDIR)
+
# Garbage collection
ifeq ($(USE_LINK_GC),yes)
OPT += -ffunction-sections -fdata-sections -fno-common
diff --git a/os/common/startup/e200/compilers/GCC/rules.mk b/os/common/startup/e200/compilers/GCC/rules.mk index 9e5fd8fb8..e9d839966 100644 --- a/os/common/startup/e200/compilers/GCC/rules.mk +++ b/os/common/startup/e200/compilers/GCC/rules.mk @@ -9,6 +9,9 @@ OPT = $(USE_OPT) COPT = $(USE_COPT)
CPPOPT = $(USE_CPPOPT)
+# Enforced search paths
+INCDIR := $(CHIBIOS)/os/license $(INCDIR)
+
# Garbage collection
ifeq ($(USE_LINK_GC),yes)
OPT += -ffunction-sections -fdata-sections -fno-common
|