diff options
Diffstat (limited to 'lib/chibios/os/common/startup/ARMCMx/compilers/GCC/mk/arm-none-eabi.mk')
-rw-r--r-- | lib/chibios/os/common/startup/ARMCMx/compilers/GCC/mk/arm-none-eabi.mk | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/chibios/os/common/startup/ARMCMx/compilers/GCC/mk/arm-none-eabi.mk b/lib/chibios/os/common/startup/ARMCMx/compilers/GCC/mk/arm-none-eabi.mk new file mode 100644 index 000000000..986f08b2e --- /dev/null +++ b/lib/chibios/os/common/startup/ARMCMx/compilers/GCC/mk/arm-none-eabi.mk | |||
@@ -0,0 +1,23 @@ | |||
1 | ############################################################################## | ||
2 | # Compiler settings | ||
3 | # | ||
4 | |||
5 | TRGT = arm-none-eabi- | ||
6 | CC = $(TRGT)gcc | ||
7 | CPPC = $(TRGT)g++ | ||
8 | # Enable loading with g++ only if you need C++ runtime support. | ||
9 | # NOTE: You can use C++ even without C++ support if you are careful. C++ | ||
10 | # runtime support makes code size explode. | ||
11 | LD = $(TRGT)gcc | ||
12 | #LD = $(TRGT)g++ | ||
13 | CP = $(TRGT)objcopy | ||
14 | AS = $(TRGT)gcc -x assembler-with-cpp | ||
15 | AR = $(TRGT)ar | ||
16 | OD = $(TRGT)objdump | ||
17 | SZ = $(TRGT)size | ||
18 | HEX = $(CP) -O ihex | ||
19 | BIN = $(CP) -O binary | ||
20 | |||
21 | # | ||
22 | # Compiler settings | ||
23 | ############################################################################## | ||