[libadwaita/msvc: 6/13] 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: 6/13] test/meson.build: Don't use PIE/PIC for MSVC-like compilers
- Date: Mon, 3 Jan 2022 04:51:21 +0000 (UTC)
commit 5d840c1b917ceedc1a96c87be1ab25790ee630f8
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 e133e7e2..6c2a2066 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',
@@ -59,7 +63,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]