mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 03:50:13 +01:00
meson: split more compiler options to their own line
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
parent
3fd0afd5e3
commit
da496d4e30
1 changed files with 4 additions and 2 deletions
|
|
@ -896,7 +896,8 @@ foreach a : ['-Werror=implicit-function-declaration',
|
|||
'-Wno-missing-field-initializers',
|
||||
'-Wno-format-truncation',
|
||||
'-fno-math-errno',
|
||||
'-fno-trapping-math', '-Qunused-arguments']
|
||||
'-fno-trapping-math',
|
||||
'-Qunused-arguments']
|
||||
if cc.has_argument(a)
|
||||
c_args += a
|
||||
endif
|
||||
|
|
@ -915,7 +916,8 @@ foreach a : ['-Werror=return-type',
|
|||
'-Wno-non-virtual-dtor',
|
||||
'-Wno-missing-field-initializers',
|
||||
'-Wno-format-truncation',
|
||||
'-fno-math-errno', '-fno-trapping-math',
|
||||
'-fno-math-errno',
|
||||
'-fno-trapping-math',
|
||||
'-Qunused-arguments']
|
||||
if cpp.has_argument(a)
|
||||
cpp_args += a
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue