2013-11-19 09:12:59 +00:00
|
|
|
Index: llvm/tools/clang/lib/Driver/ToolChains.cpp
|
2013-08-28 11:07:57 +00:00
|
|
|
===================================================================
|
2013-11-19 09:12:59 +00:00
|
|
|
--- llvm.orig/tools/clang/lib/Driver/ToolChains.cpp
|
|
|
|
+++ llvm/tools/clang/lib/Driver/ToolChains.cpp
|
|
|
|
@@ -1110,8 +1110,9 @@ void Generic_GCC::GCCInstallationDetecto
|
2013-08-28 11:07:57 +00:00
|
|
|
// Declare a bunch of static data sets that we'll select between below. These
|
|
|
|
// are specifically designed to always refer to string literals to avoid any
|
|
|
|
// lifetime or initialization issues.
|
|
|
|
- static const char *const AArch64LibDirs[] = { "/lib" };
|
|
|
|
+ static const char *const AArch64LibDirs[] = { "/lib64", "/lib" };
|
2013-11-19 09:12:59 +00:00
|
|
|
static const char *const AArch64Triples[] = { "aarch64-none-linux-gnu",
|
|
|
|
+ "aarch64-suse-linux",
|
|
|
|
"aarch64-linux-gnu" };
|
2013-08-28 11:07:57 +00:00
|
|
|
|
2013-11-19 09:12:59 +00:00
|
|
|
static const char *const ARMLibDirs[] = { "/lib" };
|