From 1a7b31f260234cd746b85eb86941ebde00f0937f Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 17 Mar 2025 20:48:57 +0200 Subject: [PATCH] [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. --- .ci/win32-cross-file.txt | 2 +- .ci/win64-cross-file.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/win32-cross-file.txt b/.ci/win32-cross-file.txt index 3c2997cae..0c9b99beb 100644 --- a/.ci/win32-cross-file.txt +++ b/.ci/win32-cross-file.txt @@ -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 = [] diff --git a/.ci/win64-cross-file.txt b/.ci/win64-cross-file.txt index 33ffa52e0..84f0766de 100644 --- a/.ci/win64-cross-file.txt +++ b/.ci/win64-cross-file.txt @@ -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 = []