diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-03-17 10:32:12 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-03-17 10:32:12 +0000 |
commit | 43433fde0bd127e7857379a2799f538b71796287 (patch) | |
tree | 06ba9a664a3ae35259388c97e256ea823f222231 /demos/STM32/RT-STM32L476-DISCOVERY | |
parent | 52b961258008124cecb3f6f62f8c1aa7b608de12 (diff) | |
download | ChibiOS-43433fde0bd127e7857379a2799f538b71796287.tar.gz ChibiOS-43433fde0bd127e7857379a2799f538b71796287.tar.bz2 ChibiOS-43433fde0bd127e7857379a2799f538b71796287.zip |
Improvements to simulator IRQ detection.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11792 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'demos/STM32/RT-STM32L476-DISCOVERY')
-rw-r--r-- | demos/STM32/RT-STM32L476-DISCOVERY/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/STM32/RT-STM32L476-DISCOVERY/Makefile b/demos/STM32/RT-STM32L476-DISCOVERY/Makefile index 1c1516070..26e343617 100644 --- a/demos/STM32/RT-STM32L476-DISCOVERY/Makefile +++ b/demos/STM32/RT-STM32L476-DISCOVERY/Makefile @@ -18,7 +18,7 @@ ifeq ($(USE_CPPOPT),) USE_CPPOPT = -fno-rtti
endif
-# Enable this if you want the linker to remove unused code and data
+# Enable this if you want the linker to remove unused code and data.
ifeq ($(USE_LINK_GC),)
USE_LINK_GC = yes
endif
@@ -28,7 +28,7 @@ ifeq ($(USE_LDOPT),) USE_LDOPT =
endif
-# Enable this if you want link time optimizations (LTO)
+# Enable this if you want link time optimizations (LTO).
ifeq ($(USE_LTO),)
USE_LTO = yes
endif
@@ -141,7 +141,7 @@ TCSRC = # option that results in lower performance and larger code size.
TCPPSRC =
-# List ASM source files here
+# List ASM source files here.
ASMSRC = $(ALLASMSRC)
ASMXSRC = $(ALLXASMSRC)
|