diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-01-22 21:44:07 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-01-22 21:44:07 -0500 |
commit | 321954cb5c23fcec4054a6ba554015e2c0862a7d (patch) | |
tree | 57d9fd54117c2a8e18ed76b327e1c542f6777512 | |
parent | 48026bb824fd2d9cfb00ecd040db6ef3a416bae9 (diff) |
fix elf run addr
-rw-r--r-- | gui/wxmain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/wxmain.cpp b/gui/wxmain.cpp index cbc1f8a..dd32127 100644 --- a/gui/wxmain.cpp +++ b/gui/wxmain.cpp @@ -49,7 +49,7 @@ all: @arm-none-eabi-g++ -x c++ -Os -fno-exceptions -fno-rtti \ -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mtune=cortex-m4 \ -nostartfiles \ - -Wl,-Ttext-segment=0x10000000 -Wl,-zmax-page-size=512 -Wl,-eprocess_data_entry \ + -Wl,-Ttext-segment=0x00000000 -Wl,-zmax-page-size=512 -Wl,-eprocess_data_entry \ $0 -o $0.o @cp $0.o $0.orig.o @arm-none-eabi-strip -s -S --strip-unneeded $0.o |