mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-21 05:33:45 -04:00
Merge branch 'no-async-unwind' into master
This commit is contained in:
commit
277d676159
1 changed files with 3 additions and 1 deletions
|
|
@ -14,7 +14,9 @@ cc = meson.get_compiler('c')
|
||||||
|
|
||||||
add_project_arguments(
|
add_project_arguments(
|
||||||
['-D_POSIX_C_SOURCE=200809L', '-D_GNU_SOURCE=200809L'] +
|
['-D_POSIX_C_SOURCE=200809L', '-D_GNU_SOURCE=200809L'] +
|
||||||
(is_debug_build ? ['-D_DEBUG'] : []) +
|
(is_debug_build
|
||||||
|
? ['-D_DEBUG']
|
||||||
|
: [cc.get_supported_arguments('-fno-asynchronous-unwind-tables')]) +
|
||||||
cc.get_supported_arguments(
|
cc.get_supported_arguments(
|
||||||
['-fstrict-aliasing',
|
['-fstrict-aliasing',
|
||||||
'-Wstrict-aliasing']),
|
'-Wstrict-aliasing']),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue