diff options
| author | Graydon Hoare <[email protected]> | 2010-08-18 11:34:22 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-08-18 11:34:22 -0700 |
| commit | b5ad78f3161d2aeb5e3547f19d14447f34d422db (patch) | |
| tree | b78959d484b2dcbf124390f0092a98234ad80410 /src/comp | |
| parent | Flesh out the ast module in rustc a little. (diff) | |
| download | rust-b5ad78f3161d2aeb5e3547f19d14447f34d422db.tar.xz rust-b5ad78f3161d2aeb5e3547f19d14447f34d422db.zip | |
Change indent on rustc.rc.
Diffstat (limited to 'src/comp')
| -rw-r--r-- | src/comp/rustc.rc | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/src/comp/rustc.rc b/src/comp/rustc.rc index 77b89806..75f893c9 100644 --- a/src/comp/rustc.rc +++ b/src/comp/rustc.rc @@ -16,28 +16,29 @@ mod driver { auth driver = unsafe; mod lib { - alt (target_os) { - case ("win32") { - let (llvm_lib = "LLVM-2.8svn.dll") { - mod llvm; - } + alt (target_os) { + case ("win32") { + let (llvm_lib = "LLVM-2.8svn.dll") { + mod llvm; + } + } + case ("macos") { + let (llvm_lib = "libLLVM-2.8svn.dylib") { + mod llvm; + } + } + else { + let (llvm_lib = "libLLVM-2.8svn.so") { + mod llvm; + } + } } - case ("macos") { - let (llvm_lib = "libLLVM-2.8svn.dylib") { - mod llvm; - } - } - else { - let (llvm_lib = "libLLVM-2.8svn.so") { - mod llvm; - } - } - } } // Local Variables: // fill-column: 78; // indent-tabs-mode: nil +// c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix // compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; // End: |