79316938

Date: 2024-12-30 06:31:38
Score: 1
Natty:
Report link

You must set turn ON LLVM_ENABLE_EH and LLVM_ENABLE_RTTI when you compile llvm, example:

cmake ... 
   -DLLVM_ENABLE_EH=ON \
   -DLLVM_ENABLE_RTTI=ON \
   ...

More information could be found here https://llvm.org/docs/CMake.html

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RoadRoller01