[ci] Fix meson deprecation warning

DEPRECATION: c_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
DEPRECATION: c_link_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
DEPRECATION: cpp_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
DEPRECATION: cpp_link_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
This commit is contained in:
Khaled Hosny 2025-03-17 20:48:57 +02:00
parent 7272abc35e
commit 1a7b31f260
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ cpu_family = 'x86'
cpu = 'i686'
endian = 'little'
[properties]
[built-in options]
c_args = []
c_link_args = ['-static-libgcc', '-Wl,-Bstatic', '-lpthread']
cpp_args = []

View file

@ -4,7 +4,7 @@ cpu_family = 'x86_64'
cpu = 'x86_64'
endian = 'little'
[properties]
[built-in options]
c_args = []
c_link_args = ['-static-libgcc', '-Wl,-Bstatic', '-lpthread']
cpp_args = []