Skip to content

Commit

Permalink
Fixed semihost testing
Browse files Browse the repository at this point in the history
Seems like platformio change GetBuildType string to "debug, test"
  • Loading branch information
dzid26 committed Aug 4, 2024
1 parent a7363c2 commit 8acc5c3
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions firmware/linker_options_pio.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,8 @@
)


if(env.GetBuildType()=="debug+test"):
if(env.GetBuildType()=="debug, test"):
env.Append(
# Remove stub implementations
BUILD_UNFLAGS=[
"-lnosys",
"--specs=nosys.specs",
],

# Use the semihosted version of the syscalls
LINKFLAGS=[
Expand Down

0 comments on commit 8acc5c3

Please sign in to comment.