aboutsummaryrefslogtreecommitdiff
path: root/src/comp/rustc.rc
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2011-03-23 17:48:53 -0700
committerPatrick Walton <[email protected]>2011-03-23 17:48:53 -0700
commit4c5ab05741d804e46ee22cd157a4de863f6535f4 (patch)
treeec547c48d01b54d7ae53b7fd57dc26aa1725ec8b /src/comp/rustc.rc
parentbuild: Use the .def files when linking on Windows (diff)
downloadrust-4c5ab05741d804e46ee22cd157a4de863f6535f4.tar.xz
rust-4c5ab05741d804e46ee22cd157a4de863f6535f4.zip
rustc: Switch over to using rustllvm.dll exclusively, ending the "Franken-LLVM" problem
Diffstat (limited to 'src/comp/rustc.rc')
-rw-r--r--src/comp/rustc.rc18
1 files changed, 6 insertions, 12 deletions
diff --git a/src/comp/rustc.rc b/src/comp/rustc.rc
index 7f1a7a03..a0c8aecb 100644
--- a/src/comp/rustc.rc
+++ b/src/comp/rustc.rc
@@ -52,24 +52,18 @@ auth pretty.pprust = impure;
mod lib {
alt (target_os) {
case ("win32") {
- let (llvm_lib = "LLVM-3.0svn.dll") {
- let (llvmext_lib = "rustllvm.dll") {
- mod llvm;
- }
+ let (llvm_lib = "rustllvm.dll") {
+ mod llvm;
}
}
case ("macos") {
- let (llvm_lib = "libLLVM-3.0svn.dylib") {
- let (llvmext_lib = "librustllvm.dylib") {
- mod llvm;
- }
+ let (llvm_lib = "librustllvm.dylib") {
+ mod llvm;
}
}
else {
- let (llvm_lib = "libLLVM-3.0svn.so") {
- let (llvmext_lib = "librustllvm.so") {
- mod llvm;
- }
+ let (llvm_lib = "librustllvm.so") {
+ mod llvm;
}
}
}