diff options
| author | Trygve Laugstøl <trygvis@inamo.no> | 2017-01-25 22:33:54 +0100 | 
|---|---|---|
| committer | Trygve Laugstøl <trygvis@inamo.no> | 2017-01-25 22:33:54 +0100 | 
| commit | 99faf57b4296b032e486cbf3829745cbcb14a80b (patch) | |
| tree | 85ad7541a4e7aef2a5ffa9eef91b3b26100ed2f8 /apps/stepper2 | |
| parent | 40e04e3772726829d66c12e69f24b03920d79c67 (diff) | |
| download | stm32f103-playground-99faf57b4296b032e486cbf3829745cbcb14a80b.tar.gz stm32f103-playground-99faf57b4296b032e486cbf3829745cbcb14a80b.tar.bz2 stm32f103-playground-99faf57b4296b032e486cbf3829745cbcb14a80b.tar.xz stm32f103-playground-99faf57b4296b032e486cbf3829745cbcb14a80b.zip | |
o Using upstream's tinyprintf which requires 64-bit math operations, so add gcc as a required library.HEADmaster
Diffstat (limited to 'apps/stepper2')
| -rw-r--r-- | apps/stepper2/CMakeLists.txt | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/apps/stepper2/CMakeLists.txt b/apps/stepper2/CMakeLists.txt index 928bbfd..14dbb45 100644 --- a/apps/stepper2/CMakeLists.txt +++ b/apps/stepper2/CMakeLists.txt @@ -15,7 +15,7 @@ target_include_directories(stepper2.elf PUBLIC          $<TARGET_PROPERTY:playground,INTERFACE_INCLUDE_DIRECTORIES>          )  target_compile_definitions(stepper2.elf PUBLIC ${STM32F10X_STDPERIPH_DEFINES}) -target_link_libraries(stepper2.elf tinyprintf m) +target_link_libraries(stepper2.elf tinyprintf m gcc)  set_target_properties(stepper2.elf PROPERTIES LINK_FLAGS "-nostartfiles -T${CMAKE_SOURCE_DIR}/cmake/stm32.ld")  add_extra_commands(stepper2.elf) | 
