mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-13 12:33:45 +00:00

* Bring back the dependency on gcc 4.8. It breaks the nightly snapshot packages and it should be the norm now... [ Martin Nowack ] * Fixed build directory for llvm-config * Add Unittests for running tests for llvm-based projects * Install FileCheck and not for testing
17 lines
727 B
Diff
17 lines
727 B
Diff
Index: llvm-toolchain-snapshot_3.5~svn201239/tools/llvm-config/llvm-config.cpp
|
|
===================================================================
|
|
--- llvm-toolchain-snapshot_3.5~svn201239.orig/tools/llvm-config/llvm-config.cpp 2014-02-12 16:21:54.713558937 +0100
|
|
+++ llvm-toolchain-snapshot_3.5~svn201239/tools/llvm-config/llvm-config.cpp 2014-02-12 16:34:24.993540587 +0100
|
|
@@ -321,9 +321,9 @@
|
|
OS << "ON\n";
|
|
#endif
|
|
} else if (Arg == "--obj-root") {
|
|
- OS << ActivePrefix << '\n';
|
|
+ OS << ActivePrefix << "/build/" << '\n';
|
|
} else if (Arg == "--src-root") {
|
|
- OS << LLVM_SRC_ROOT << '\n';
|
|
+ OS << ActivePrefix << "/build/" << '\n';
|
|
} else {
|
|
usage();
|
|
}
|