We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ef1fa3 commit a56e7b6Copy full SHA for a56e7b6
src/backend/jit/llvm/Makefile
@@ -22,6 +22,12 @@ endif
22
PGFILEDESC = "llvmjit - JIT using LLVM"
23
NAME = llvmjit
24
25
+# LLVM 14 produces deprecation warnings. We'll need to make some changes
26
+# before the relevant functions are removed, but for now silence the warnings.
27
+ifeq ($(GCC), yes)
28
+LLVM_CFLAGS += -Wno-deprecated-declarations
29
+endif
30
+
31
# All files in this directory use LLVM.
32
CFLAGS += $(LLVM_CFLAGS)
33
CXXFLAGS += $(LLVM_CXXFLAGS)
0 commit comments