summaryrefslogtreecommitdiff
path: root/src/backend/jit
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2022-10-03 14:52:51 -0700
committerAndres Freund <andres@anarazel.de>2022-10-03 14:55:52 -0700
commit908e17151b4834bd4bbfb703e206b68f5db341f9 (patch)
tree2fe8a00e093be8477153832f3ebe5b78378fab92 /src/backend/jit
parent4a79fd1a754edcc85f9b94f17a2fb4576becf0a3 (diff)
downloadpostgresql-908e17151b4834bd4bbfb703e206b68f5db341f9.tar.gz
meson: llvm: Use llvm-config's --cxxflags when building llvmjit
Otherwise we don't use LLVM's flags when building llvmjit_wrap.cpp and llvmjit_inline.cpp. That can cause compile time failures if the C++ compiler doesn't default to a new enough C++ standards version and link time failures due to ABI influencing flags like -fno-rtti.
Diffstat (limited to 'src/backend/jit')
-rw-r--r--src/backend/jit/llvm/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/jit/llvm/meson.build b/src/backend/jit/llvm/meson.build
index de2e624ab5..6ae7aaad01 100644
--- a/src/backend/jit/llvm/meson.build
+++ b/src/backend/jit/llvm/meson.build
@@ -24,6 +24,7 @@ llvmjit = shared_module('llvmjit',
llvmjit_sources,
kwargs: pg_mod_args + {
'dependencies': pg_mod_args['dependencies'] + [llvm],
+ 'cpp_args': pg_mod_args['cpp_args'] + llvm.get_variable(configtool: 'cxxflags').split(),
}
)