Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pellegrino Prevete
libhandy
Commits
6befd1c2
Commit
6befd1c2
authored
Dec 14, 2018
by
Pellegrino Prevete
Browse files
The crash happens only with `-fstack-protector-strong`, but it goes well with `-fstack-protector`
parent
b25f873e
Pipeline
#2574
failed with stage
in 3 minutes and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
meson.build
View file @
6befd1c2
...
...
@@ -86,8 +86,11 @@ test_c_args = [
host_system = host_machine.system()
if get_option('buildtype') != 'plain' and host_system != 'windows'
test_c_args += '-fstack-protector-strong'
if get_option('buildtype') != 'plain'
if host_system == 'windows'
test_c_args += '-fstack-protector'
else
test_c_args += '-fstack-protector-strong'
endif
if get_option('profiling')
test_c_args += '-pg'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment