meson.build: re-add -funwind-tables which got lost in v0.20.23 merge

This commit is contained in:
Max Kellermann 2018-10-30 13:33:10 +01:00
parent c97469283c
commit 2c388434dd
1 changed files with 4 additions and 0 deletions

View File

@ -60,6 +60,10 @@ test_cxxflags = test_common_flags + [
# in C++17 because the exception specification is part of a function # in C++17 because the exception specification is part of a function
# type" # type"
'-Wno-noexcept-type', '-Wno-noexcept-type',
# Workaround for clang bug
# https://bugs.llvm.org/show_bug.cgi?id=32611
'-funwind-tables',
] ]
test_cflags = test_common_flags + [ test_cflags = test_common_flags + [