Browse Source

Updated the LLVM build paths to the latest version.

pull/146/merge
triton 12 years ago
parent
commit
b05e54b148
  1. 4
      build/LLVM.lua

4
build/LLVM.lua

@ -18,10 +18,10 @@ function SetupLLVMLibs() @@ -18,10 +18,10 @@ function SetupLLVMLibs()
}
configuration { "Debug", "vs*" }
libdirs { path.join(LLVMBuildDir, "lib/Debug") }
libdirs { path.join(LLVMBuildDir, "Debug/lib") }
configuration { "Release", "vs*" }
libdirs { path.join(LLVMBuildDir, "lib/RelWithDebInfo") }
libdirs { path.join(LLVMBuildDir, "RelWithDebInfo/lib") }
configuration "not vs*"
buildoptions { "-fpermissive" }

Loading…
Cancel
Save