Skip to content

Commit f451db2

Browse files
committed
builder: Fix newlib-nano flags not set
Signed-off-by: Ajay Bhargav <[email protected]>
1 parent 78a2bde commit f451db2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

builder/framework/siwisdk.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,10 @@ def gen_fota_file(target, source, env):
171171
env.Append(
172172
LINKFLAGS=[
173173
"--specs=nano.specs",
174-
"-u _printf_float",
175-
"-u _scanf_float",
174+
"-u",
175+
"_printf_float",
176+
"-u",
177+
"_scanf_float",
176178
"--specs=nosys.specs"
177179
]
178180
)

0 commit comments

Comments
 (0)