From 2c200877c9325dee722f362cf97938a02e8b92e8 Mon Sep 17 00:00:00 2001 From: Yonghong Song Date: Sun, 26 Mar 2023 13:10:49 -0700 Subject: [PATCH] Fix compilation error when built with llvm17 With llvm17, building bcc hits the following compilation errors: ... /home/yhs/work/bcc/src/cc/bpf_module.cc:21:10: fatal error: llvm-c/Transforms/IPO.h: No such file or directory 21 | #include | ^~~~~~~~~~~~~~~~~~~~~~~~~ /home/yhs/work/bcc/src/cc/bpf_module.cc:48:10: fatal error: llvm/Transforms/IPO/PassManagerBuilder.h: No such file or directory 48 | #include | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The above two files are removed by https://reviews.llvm.org/D144970 and https://reviews.llvm.org/D145835 Signed-off-by: Yonghong Song --- src/cc/bpf_module.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cc/bpf_module.cc b/src/cc/bpf_module.cc index 7b6f1af9..ffa703ca 100644 --- a/src/cc/bpf_module.cc +++ b/src/cc/bpf_module.cc @@ -17,7 +17,9 @@ #include #include +#if LLVM_MAJOR_VERSION <= 16 #include +#endif #include #include #if LLVM_MAJOR_VERSION >= 16 @@ -43,7 +45,9 @@ #include #include #include +#if LLVM_MAJOR_VERSION <= 16 #include +#endif #include #include #include -- 2.27.0