Fix the linking issue with llvm dev version

This commit is contained in:
Sameer Rahmani 2022-01-05 16:18:32 +00:00
parent 37f6798c5e
commit fd668bbb34
2 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ class SERENE_EXPORT SereneContext {
bool JITenableObjectCache = true;
bool JITenableGDBNotificationListener = true;
bool JITenablePerfNotificationListener = true;
bool JITLazy = false;
bool JITLazy = true;
Options() = default;
};

View File

@ -170,7 +170,7 @@ target_link_libraries(serene PRIVATE
LLVMOrcJIT
MLIRLLVMToLLVMIRTranslation
#LLVMTarget
#LLVMX86AsmParser
LLVMTarget
LLVMX86AsmParser
${llvm_libs})