diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-05-08 11:55:12 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-05-08 11:55:12 -0400 |
commit | d2f50fb9259a3142fa6b319a7a735a0e19355d01 (patch) | |
tree | 920d579453ca23cbda5323b865b72e3a9d3c255d /gui/wxmain_devdata.cpp | |
parent | 4a0fb43d375bd095643ea50cf9b09dae6515b20e (diff) |
include dsp lib; split timers; user message
Diffstat (limited to 'gui/wxmain_devdata.cpp')
-rw-r--r-- | gui/wxmain_devdata.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gui/wxmain_devdata.cpp b/gui/wxmain_devdata.cpp index 0f384fa..551f6cc 100644 --- a/gui/wxmain_devdata.cpp +++ b/gui/wxmain_devdata.cpp @@ -26,13 +26,14 @@ const std::array<unsigned int, 6> srateNums { #endif // $0 = temp file name +// TODO try -ffunction-sections -fdata-sections -Wl,--gc-sections const char *makefile_text_h7 = #ifdef STMDSP_WIN32 "echo off" NEWLINE #endif "arm-none-eabi-g++ -x c++ -Os -std=c++20 -fno-exceptions -fno-rtti " "-mcpu=cortex-m7 -mthumb -mfloat-abi=hard -mfpu=fpv5-d16 -mtune=cortex-m7 " - "-nostartfiles " + "-nostartfiles " "-Wl,-Ttext-segment=0x00000000 -Wl,-zmax-page-size=512 -Wl,-eprocess_data_entry " "$0 -o $0.o" NEWLINE COPY " $0.o $0.orig.o" NEWLINE @@ -48,7 +49,7 @@ const char *makefile_text_l4 = #endif "arm-none-eabi-g++ -x c++ -Os -std=c++20 -fno-exceptions -fno-rtti " "-mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mtune=cortex-m4 " - "-nostartfiles " + "-nostartfiles -I$1/cmsis" "-Wl,-Ttext-segment=0x10000000 -Wl,-zmax-page-size=512 -Wl,-eprocess_data_entry " "$0 -o $0.o" NEWLINE COPY " $0.o $0.orig.o" NEWLINE |