GitHub user kongfanshen-0801 edited a comment on the discussion: source compile configure --with-llvm
This error is caused by a compatibility issue with the LLVM API version. The error is displayed in the llvmjit_expr.c file, where the type of ExprEvalStep * is incompatible with the type of LLVMValueRef. Here is the solution: # Disable the -Werror option during compilation make -j$(nproc) -C ~/cloudberry CFLAGS="-Wno-incompatible-pointer-types" GitHub link: https://github.com/apache/cloudberry/discussions/1362#discussioncomment-14475409 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
