[libadwaita/msvc: 31/36] test/meson.build: Don't use PIE/PIC for MSVC-like compilers




commit f83b0da90c25b05558beee108d5ebf679cb1df57
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]