Skip to content

Commit 815f29a

Browse files
committed
---
yaml --- r: 1653 b: refs/heads/master c: 316158d h: refs/heads/master i: 1651: 78b3038 v: v3
1 parent ea46472 commit 815f29a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 7f5bffc3ea8545be1916dd089e4f25a360c83950
2+
refs/heads/master: 316158df8e423f6c123cf2d3349e27c2794b147b

trunk/src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ endif
184184
ifneq ($(CFG_LLVM_CONFIG),)
185185
CFG_LLVM_VERSION := $(shell $(CFG_LLVM_CONFIG) --version)
186186
$(info cfg: found llvm-config at $(CFG_LLVM_CONFIG))
187-
CFG_LLVM_ALLOWED_VERSIONS := 2.8svn 2.8 2.9svn 3.0svn
187+
CFG_LLVM_ALLOWED_VERSIONS := 3.0svn
188188
ifneq ($(findstring $(CFG_LLVM_VERSION),$(CFG_LLVM_ALLOWED_VERSIONS)),)
189189
$(info cfg: using LLVM version $(CFG_LLVM_VERSION))
190190
else

trunk/src/comp/rustc.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ auth pretty.pprust = impure;
5151
mod lib {
5252
alt (target_os) {
5353
case ("win32") {
54-
let (llvm_lib = "LLVM-2.8.dll") {
54+
let (llvm_lib = "LLVM-3.0.dll") {
5555
mod llvm;
5656
}
5757
}
5858
case ("macos") {
59-
let (llvm_lib = "libLLVM-2.8svn.dylib") {
59+
let (llvm_lib = "libLLVM-3.0svn.dylib") {
6060
mod llvm;
6161
}
6262
}
6363
else {
64-
let (llvm_lib = "libLLVM-2.8svn.so") {
64+
let (llvm_lib = "libLLVM-3.0svn.so") {
6565
mod llvm;
6666
}
6767
}

0 commit comments

Comments
 (0)