Commit ce7ec2b3 authored by Max Kellermann's avatar Max Kellermann

meson.build: add -f{function,data}-sections to C++ as well

By accident, this was only enabled for C.
parent fada4aa5
......@@ -88,6 +88,10 @@ test_ldflags = [
]
if get_option('buildtype') != 'debug'
test_cxxflags += [
'-ffunction-sections',
'-fdata-sections',
]
test_cflags += [
'-ffunction-sections',
'-fdata-sections',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment