[libadwaita/msvc: 82/88] test/meson.build: Don't use PIE/PIC for MSVC-like compilers
- From: Chun-wei Fan <fanchunwei src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libadwaita/msvc: 82/88] test/meson.build: Don't use PIE/PIC for MSVC-like compilers
- Date: Fri, 29 Oct 2021 09:53:03 +0000 (UTC)
commit f04c1e861020292cd9358a333bab0ce9bfb0e7b1
Author: Chun-wei Fan <fanchunwei src gnome org>
Date: Mon Jul 26 18:55:43 2021 +0800
test/meson.build: Don't use PIE/PIC for MSVC-like compilers
It's not supported nor needed.
tests/meson.build | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/tests/meson.build b/tests/meson.build
index 83c40b69..0c281313 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -15,9 +15,13 @@ test_cflags = [
'-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir()),
]
-test_link_args = [
- '-fPIC',
-]
+test_link_args = []
+use_pie = false
+
+if cc.get_argument_syntax() != 'msvc'
+ test_link_args += '-fPIC'
+ use_pie = true
+endif
test_names = [
'test-action-row',
@@ -54,7 +58,7 @@ foreach test_name : test_names
c_args: test_cflags,
link_args: test_link_args,
dependencies: libadwaita_deps + [libadwaita_dep],
- pie: true,
+ pie: use_pie,
)
test(test_name, t, env: test_env)
endforeach
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]