Hi, I am new to LLVM. How can I access the doxygen pages for older versions of LLVM (say 12.0)?
Thanks!
Hi, I am new to LLVM. How can I access the doxygen pages for older versions of LLVM (say 12.0)?
Thanks!
Hi, You have to build them from source.
Set LLVM_ENABLE_DOXYGEN :BOOL and LLVM_BUILD_DOCS :BOOL during your cmake invocation and run doxygen-llvm
as make or ninja target. Final html files should be in build/docs/doxygen/html.
Thanks, this works!