Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
François Revol
firmware
Commits
6c2c4c15
Commit
6c2c4c15
authored
Jul 05, 2019
by
schneider
Browse files
fix(meson): Only use nano.specs for the cross build
parent
1a3a2ea5
Changes
2
Hide whitespace changes
Inline
Side-by-side
card10-cross.ini
View file @
6c2c4c15
...
...
@@ -5,7 +5,8 @@ strip = 'arm-none-eabi-strip'
[properties]
c_args
=
['-mthumb', '-mcpu=cortex-m4', '-mfloat-abi=hard', '-mfpu=fpv4-sp-d16', '-Wa,-mimplicit-it=thumb', '-ffunction-sections', '-fdata-sections', '-fsingle-precision-constant', '-fno-isolate-erroneous-paths-dereference', '-Wl,--start-group', '-lc', '-lnosys', '-Wl,--end-group']
c_link_args
=
['-mthumb', '-mcpu=cortex-m4', '-mfloat-abi=hard', '-mfpu=fpv4-sp-d16', '-Wl,--start-group', '-lc', '-lnosys', '-Wl,--end-group']
c_link_args
=
['-mthumb', '-mcpu=cortex-m4', '-mfloat-abi=hard', '-mfpu=fpv4-sp-d16', '-Wl,--start-group', '-lc', '-lnosys', '-Wl,--end-group', '--specs=nano.specs', '-u _printf_float']
target_defs
=
['-DTARGET=32665', '-DTARGET_REV=0x4131', '-DBOARD_CARD10=1']
...
...
meson.build
View file @
6c2c4c15
...
...
@@ -24,8 +24,6 @@ add_global_arguments(
add_global_link_arguments(
'-Wl,--gc-sections',
'-lm',
'--specs=nano.specs',
'-u _printf_float',
language: 'c',
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment