mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-13 15:37:23 +00:00

* Install a missing library to unbreak lldb (Closes: #815809) * New snapshot release * Update the clang description for something more accurate (C++-11, 14, etc) * Update debian/orig-tar.sh to remove autoconf/config.sub autoconf/config.guess in polly * clang-tidy-3.8: Remove Breaks/Replaces on clang-modernize-3.8. * Disable lldb on s390x. * New snapshot release * Remove build-llvm/ after the install step to save space. Most of the rc1 builds failed because of hd space. * New snapshot release * Cmake migration. Done by Andrew Wilkins. Many thanks to him - Update patches to set SONAME in CMake build - Create symlinks with ".links", don't install from build tree - Remove LLVM-internal tools (lit, FileCheck, not, tblgen, etc.) - Remove llvm-X.Y-tools package, because it contained only internal tools that are not intended for distribution. - Remove autotools-specific artifacts from packages. - Remove "dummy" documentation artifacts from llvm-X.Y-docs package. Not built/installed by CMake, not useful. - Update control/rules to support CMake - Patch LLDB SWIG interfaces to workaround a bug in SWIG See https://llvm.org/bugs/show_bug.cgi?id=25468 - add missing files to clang-format - Add patch to fix sanitizer lit invocation - removed LLVM-internal tools (lit, FileCheck, not, *-tblgen, etc.); not installed by CMake, not intended for distribution - removed llvm-X.Y-tools (contained only internal tools) - removed autotools-specific artifacts (configure, Makefile, etc.) - removed dummy documentation files
20 lines
859 B
Diff
20 lines
859 B
Diff
Index: llvm-toolchain-snapshot_3.9~svn260089/tools/llvm-config/llvm-config.cpp
|
|
===================================================================
|
|
--- llvm-toolchain-snapshot_3.9~svn260089.orig/tools/llvm-config/llvm-config.cpp
|
|
+++ llvm-toolchain-snapshot_3.9~svn260089/tools/llvm-config/llvm-config.cpp
|
|
@@ -533,9 +533,9 @@ int main(int argc, char **argv) {
|
|
} else if (Arg == "--shared-mode") {
|
|
PrintSharedMode = true;
|
|
} 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 if (Arg == "--link-shared") {
|
|
LinkMode = LinkModeShared;
|
|
} else if (Arg == "--link-static") {
|
|
} else {
|
|
usage();
|
|
}
|