[vte/vte-0-66] build: Fix check for -fstack-protector* compiler support
- From: Christian Persch <chpe src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte/vte-0-66] build: Fix check for -fstack-protector* compiler support
- Date: Mon, 27 Dec 2021 18:25:09 +0000 (UTC)
commit eca903d08cab9900fed9fd2f6e827479dab503f7
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
(cherry picked from commit e32dba1d5cf884959af5b2c0691db00c263ea048)
meson.build | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/meson.build b/meson.build
index eef5f6a8..4970b0dc 100644
--- a/meson.build
+++ b/meson.build
@@ -348,8 +348,6 @@ compiler_flags_common = [
'-fdiagnostics-show-option',
'-fno-common',
'-fno-semantic-interposition',
- '-fstack-protector',
- '-fstack-protector-strong',
]
if enable_debug
@@ -437,6 +435,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]