stm32f407_discovery.make 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. ##############################################################################
  2. # Build global options
  3. # NOTE: Can be overridden externally.
  4. #
  5. # Compiler options here.
  6. ifeq ($(USE_OPT),)
  7. USE_OPT = -O2 -ggdb -fomit-frame-pointer -falign-functions=16
  8. endif
  9. # C specific options here (added to USE_OPT).
  10. ifeq ($(USE_COPT),)
  11. USE_COPT =
  12. endif
  13. # C++ specific options here (added to USE_OPT).
  14. ifeq ($(USE_CPPOPT),)
  15. USE_CPPOPT = -fno-rtti
  16. endif
  17. # Enable this if you want the linker to remove unused code and data
  18. ifeq ($(USE_LINK_GC),)
  19. USE_LINK_GC = yes
  20. endif
  21. # Linker extra options here.
  22. ifeq ($(USE_LDOPT),)
  23. USE_LDOPT =
  24. endif
  25. # Enable this if you want link time optimizations (LTO)
  26. ifeq ($(USE_LTO),)
  27. USE_LTO = yes
  28. endif
  29. # If enabled, this option allows to compile the application in THUMB mode.
  30. ifeq ($(USE_THUMB),)
  31. USE_THUMB = yes
  32. endif
  33. # Enable this if you want to see the full log while compiling.
  34. ifeq ($(USE_VERBOSE_COMPILE),)
  35. USE_VERBOSE_COMPILE = no
  36. endif
  37. # If enabled, this option makes the build process faster by not compiling
  38. # modules not used in the current configuration.
  39. ifeq ($(USE_SMART_BUILD),)
  40. USE_SMART_BUILD = yes
  41. endif
  42. #
  43. # Build global options
  44. ##############################################################################
  45. ##############################################################################
  46. # Architecture or project specific options
  47. #
  48. # Stack size to be allocated to the Cortex-M process stack. This stack is
  49. # the stack used by the main() thread.
  50. ifeq ($(USE_PROCESS_STACKSIZE),)
  51. USE_PROCESS_STACKSIZE = 0x400
  52. endif
  53. # Stack size to the allocated to the Cortex-M main/exceptions stack. This
  54. # stack is used for processing interrupts and exceptions.
  55. ifeq ($(USE_EXCEPTIONS_STACKSIZE),)
  56. USE_EXCEPTIONS_STACKSIZE = 0x400
  57. endif
  58. # Enables the use of FPU (no, softfp, hard).
  59. ifeq ($(USE_FPU),)
  60. USE_FPU = no
  61. endif
  62. # FPU-related options.
  63. ifeq ($(USE_FPU_OPT),)
  64. USE_FPU_OPT = -mfloat-abi=$(USE_FPU) -mfpu=fpv4-sp-d16 -fsingle-precision-constant
  65. endif
  66. #
  67. # Architecture or project specific options
  68. ##############################################################################
  69. ##############################################################################
  70. # Project, sources and paths
  71. #
  72. # Define project name here
  73. PROJECT = ch
  74. # Imported source files and paths
  75. CHIBIOS := ../../../..
  76. CONFDIR := ./cfg/stm32f407_discovery
  77. BUILDDIR := ./build/stm32f407_discovery
  78. DEPDIR := ./.dep/stm32f407_discovery
  79. # Licensing files.
  80. include $(CHIBIOS)/os/license/license.mk
  81. # Startup files.
  82. include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32f4xx.mk
  83. # HAL-OSAL files (optional).
  84. include $(CHIBIOS)/os/hal/hal.mk
  85. include $(CHIBIOS)/os/hal/ports/STM32/STM32F4xx/platform.mk
  86. include $(CHIBIOS)/os/hal/boards/ST_STM32F4_DISCOVERY/board.mk
  87. include $(CHIBIOS)/os/hal/osal/rt/osal.mk
  88. # RTOS files (optional).
  89. include $(CHIBIOS)/os/rt/rt.mk
  90. include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk
  91. # Auto-build files in ./source recursively.
  92. include $(CHIBIOS)/tools/mk/autobuild.mk
  93. # Other files (optional).
  94. #include $(CHIBIOS)/test/lib/test.mk
  95. #include $(CHIBIOS)/test/rt/rt_test.mk
  96. #include $(CHIBIOS)/test/oslib/oslib_test.mk
  97. # Define linker script file here
  98. LDSCRIPT= $(STARTUPLD)/STM32F407xG.ld
  99. # C sources that can be compiled in ARM or THUMB mode depending on the global
  100. # setting.
  101. CSRC = $(ALLCSRC) \
  102. $(TESTSRC) \
  103. $(CONFDIR)/portab.c \
  104. main.c
  105. # C++ sources that can be compiled in ARM or THUMB mode depending on the global
  106. # setting.
  107. CPPSRC = $(ALLCPPSRC)
  108. # C sources to be compiled in ARM mode regardless of the global setting.
  109. # NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
  110. # option that results in lower performance and larger code size.
  111. ACSRC =
  112. # C++ sources to be compiled in ARM mode regardless of the global setting.
  113. # NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
  114. # option that results in lower performance and larger code size.
  115. ACPPSRC =
  116. # C sources to be compiled in THUMB mode regardless of the global setting.
  117. # NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
  118. # option that results in lower performance and larger code size.
  119. TCSRC =
  120. # C sources to be compiled in THUMB mode regardless of the global setting.
  121. # NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
  122. # option that results in lower performance and larger code size.
  123. TCPPSRC =
  124. # List ASM source files here
  125. ASMSRC = $(ALLASMSRC)
  126. ASMXSRC = $(ALLXASMSRC)
  127. INCDIR = $(ALLINC) $(TESTINC) $(CONFDIR)
  128. #
  129. # Project, sources and paths
  130. ##############################################################################
  131. ##############################################################################
  132. # Start of user section
  133. #
  134. # List all user C define here, like -D_DEBUG=1
  135. UDEFS =
  136. # Define ASM defines here
  137. UADEFS =
  138. # List all user directories here
  139. UINCDIR =
  140. # List the user directory to look for the libraries here
  141. ULIBDIR =
  142. # List all user libraries here
  143. ULIBS =
  144. #
  145. # End of user section
  146. ##############################################################################
  147. ##############################################################################
  148. # Compiler settings
  149. #
  150. MCU = cortex-m4
  151. #TRGT = arm-elf-
  152. TRGT = arm-none-eabi-
  153. CC = $(TRGT)gcc
  154. CPPC = $(TRGT)g++
  155. # Enable loading with g++ only if you need C++ runtime support.
  156. # NOTE: You can use C++ even without C++ support if you are careful. C++
  157. # runtime support makes code size explode.
  158. LD = $(TRGT)gcc
  159. #LD = $(TRGT)g++
  160. CP = $(TRGT)objcopy
  161. AS = $(TRGT)gcc -x assembler-with-cpp
  162. AR = $(TRGT)ar
  163. OD = $(TRGT)objdump
  164. SZ = $(TRGT)size
  165. HEX = $(CP) -O ihex
  166. BIN = $(CP) -O binary
  167. # ARM-specific options here
  168. AOPT =
  169. # THUMB-specific options here
  170. TOPT = -mthumb -DTHUMB
  171. # Define C warning options here
  172. CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes
  173. # Define C++ warning options here
  174. CPPWARN = -Wall -Wextra -Wundef
  175. #
  176. # Compiler settings
  177. ##############################################################################
  178. RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk
  179. include $(RULESPATH)/rules.mk