[vte] build: Fix check for -fstack-protector* compiler support



commit e32dba1d5cf884959af5b2c0691db00c263ea048
Author: Christian Persch <chpe src gnome org>
Date:   Mon Dec 27 19:24:46 2021 +0100

    build: Fix check for -fstack-protector* compiler support
    
    Need to use has_link_argument() on some platforms.
    
    Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2535

 meson.build | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/meson.build b/meson.build
index 93b7f376..381d5d58 100644
--- a/meson.build
+++ b/meson.build
@@ -461,8 +461,6 @@ compiler_flags_common = [
   '-fdiagnostics-show-option',
   '-fno-common',
   '-fno-semantic-interposition',
-  '-fstack-protector',
-  '-fstack-protector-strong',
 ]
 
 if enable_debug
@@ -550,6 +548,10 @@ add_project_arguments(global_cxxflags, language: 'cpp')
 linker_flags = [
   ['-Wl,-Bsymbolic', false,],
   ['-Wl,-Bsymbolic-functions', get_option('_b_symbolic_functions'),],
+
+  # See issue vte#2535.
+  ['-fstack-protector', false],
+  ['-fstack-protector-strong', false],
 ]
 
 foreach flag: linker_flags


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]