harvard-acc / LLVM-Tracer

An LLVM pass to profile dynamic LLVM IR instructions and runtime values
Other
135 stars 35 forks source link

Fixes #11 #12

Closed z-a-f closed 8 years ago

z-a-f commented 8 years ago

In the TracerConfig.cmake LLVM version is checked as if(NOT DEFINED LLVM_RECOMMEND_VERSION). I believe the correct line should say if(NOT DEFINED ENV{LLVM_RECOMMEND_VERSION}). cmake pipermail

That way one can have export LLVM_RECOMMEND_VERSION="3.x" in the environment setup

z-a-f commented 8 years ago

Sorry made a small mistake in the code. Will try to test it first