How to determine the LLVM version?

Hi I just downloaded LLVM using the command

svn co llvm 

How can I determine the version of this LLVM (4.0, 3.9 or 3.8 etc)?

2 Answers

After installation

Try running :

llvm-config --version

1

You are checking out the trunk.

If you want a particular version checkout the appropriate branch.

would be llvm-3.5

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like