* Drop CppBackend. It is removed. Changelog: * GCC ABI Tag * LLVM IR: new intrinsics etc. * Change LLVM IPO model * Support ThinLTO * Improve the ARM targets, ARMv8.2-A support etc. * Improve the MIPS targets * Improve the PowerPC target, default optim O3 to O2 * Improve the X86 target, SKylake AVX-512 etc. * Improve the AMDGPU, better support for Mesa 12
55 lines
2.3 KiB
C++
55 lines
2.3 KiB
C++
$NetBSD: patch-tools_llvm-config_llvm-config.cpp,v 1.2 2016/11/14 20:15:33 ryoon Exp $
|
|
|
|
avoid conflict with lang/clang.
|
|
Use -lLLVM-3.8 instead of -lLLVM-3.8.0 so we don't break unnecessarily
|
|
on patch updates.
|
|
|
|
--- tools/llvm-config/llvm-config.cpp.orig 2016-03-14 21:39:58.000000000 +0000
|
|
+++ tools/llvm-config/llvm-config.cpp
|
|
@@ -327,9 +327,9 @@ int main(int argc, char **argv) {
|
|
("-I" + ActiveIncludeDir + " " + "-I" + ActiveObjRoot + "/include");
|
|
} else {
|
|
ActivePrefix = CurrentExecPrefix;
|
|
- ActiveIncludeDir = ActivePrefix + "/include";
|
|
+ ActiveIncludeDir = "@PREFIX@/include/libLLVM";
|
|
ActiveBinDir = ActivePrefix + "/bin";
|
|
- ActiveLibDir = ActivePrefix + "/lib" + LLVM_LIBDIR_SUFFIX;
|
|
+ ActiveLibDir = "@PREFIX@/lib/libLLVM";
|
|
ActiveIncludeOption = "-I" + ActiveIncludeDir;
|
|
}
|
|
|
|
@@ -363,14 +363,14 @@ int main(int argc, char **argv) {
|
|
StaticDir = ActiveLibDir;
|
|
} else if (HostTriple.isOSDarwin()) {
|
|
SharedExt = "dylib";
|
|
- SharedVersionedExt = LLVM_DYLIB_VERSION ".dylib";
|
|
+ SharedVersionedExt = ".dylib";
|
|
StaticExt = "a";
|
|
StaticDir = SharedDir = ActiveLibDir;
|
|
StaticPrefix = SharedPrefix = "lib";
|
|
} else {
|
|
// default to the unix values:
|
|
SharedExt = "so";
|
|
- SharedVersionedExt = LLVM_DYLIB_VERSION ".so";
|
|
+ SharedVersionedExt = "-@LLVM_MAJOR_MINOR@.so";
|
|
StaticExt = "a";
|
|
StaticDir = SharedDir = ActiveLibDir;
|
|
StaticPrefix = SharedPrefix = "lib";
|
|
@@ -383,7 +383,7 @@ int main(int argc, char **argv) {
|
|
|
|
bool DyLibExists = false;
|
|
const std::string DyLibName =
|
|
- (SharedPrefix + "LLVM-" + SharedVersionedExt).str();
|
|
+ (SharedPrefix + "LLVM" + SharedVersionedExt).str();
|
|
|
|
// If LLVM_LINK_DYLIB is ON, the single shared library will be returned
|
|
// for "--libs", etc, if they exist. This behaviour can be overridden with
|
|
@@ -474,7 +474,7 @@ int main(int argc, char **argv) {
|
|
OS << ActiveIncludeOption << ' ' << LLVM_CXXFLAGS << '\n';
|
|
} else if (Arg == "--ldflags") {
|
|
OS << ((HostTriple.isWindowsMSVCEnvironment()) ? "-LIBPATH:" : "-L")
|
|
- << ActiveLibDir << ' ' << LLVM_LDFLAGS << '\n';
|
|
+ << ActiveLibDir << " @COMPILER_RPATH_FLAG@" << ActiveLibDir << ' ' << LLVM_LDFLAGS << '\n';
|
|
} else if (Arg == "--system-libs") {
|
|
PrintSystemLibs = true;
|
|
} else if (Arg == "--libs") {
|