summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Davis <michael.davis@essvote.com>2019-12-04 11:44:24 -0600
committerKhem Raj <raj.khem@gmail.com>2019-12-05 06:52:57 -0800
commit1295489fa33d80b8fd4a89abb3cce42bc180e883 (patch)
treefbd29c8a397cc10500b5928c1a022771fc24ebc5
parentfabbdc8b851009163d33c8b64d0251a8cc88e71e (diff)
downloadmeta-clang-1295489fa33d80b8fd4a89abb3cce42bc180e883.tar.gz
clang: Fix multilib clang compile failing if lib is in the toolchain path
Signed-off-by: Michael Davis <michael.davis@essvote.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--recipes-devtools/clang/clang/0025-llvm-Let-llvm-ar-name-contain-lib.patch44
-rw-r--r--recipes-devtools/clang/common.inc1
2 files changed, 45 insertions, 0 deletions
diff --git a/recipes-devtools/clang/clang/0025-llvm-Let-llvm-ar-name-contain-lib.patch b/recipes-devtools/clang/clang/0025-llvm-Let-llvm-ar-name-contain-lib.patch
new file mode 100644
index 0000000..5edf8ad
--- /dev/null
+++ b/recipes-devtools/clang/clang/0025-llvm-Let-llvm-ar-name-contain-lib.patch
@@ -0,0 +1,44 @@
1From fa44b5037ceac5d201b5ab0395ec9c5b928f79bf Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 4 Dec 2019 11:50:09 -0800
4Subject: [PATCH] llvm: Let llvm-ar name contain 'lib'
5
6In cross-compile cases canonical names are created using symlinks but
7they fail to execute because the name confuses 'lib' instead of toolname
8
9In multilib(lib32) case, the arm-pokymllib32-linux-gnueabi-llvm-ar (${TARGET_PREFIX}llvm-ar) gives:
10qc: no such file or directory
11
12Which is because when the llvm-ar symbol link's name contains "lib", it would be considered as llvm-lib:
13
14Signed-off-by: Michael Davis <michael.davis@essvote.com>
15Signed-off-by: Khem Raj <raj.khem@gmail.com>
16---
17 llvm/tools/llvm-ar/llvm-ar.cpp | 8 ++++----
18 1 file changed, 4 insertions(+), 4 deletions(-)
19
20diff --git a/llvm/tools/llvm-ar/llvm-ar.cpp b/llvm/tools/llvm-ar/llvm-ar.cpp
21index 91746d0fab3..daef39ede79 100644
22--- a/llvm/tools/llvm-ar/llvm-ar.cpp
23+++ b/llvm/tools/llvm-ar/llvm-ar.cpp
24@@ -1125,16 +1125,16 @@ int main(int argc, char **argv) {
25 llvm::InitializeAllAsmParsers();
26
27 Stem = sys::path::stem(ToolName);
28- if (Stem.contains_lower("dlltool"))
29+ if (Stem.endswith("dlltool") || Stem.contains("dlltool-"))
30 return dlltoolDriverMain(makeArrayRef(argv, argc));
31
32- if (Stem.contains_lower("ranlib"))
33+ if (Stem.endswith("ranlib") || Stem.contains("ranlib-"))
34 return ranlib_main(argc, argv);
35
36- if (Stem.contains_lower("lib"))
37+ if (Stem.endswith("lib") || Stem.contains("lib-"))
38 return libDriverMain(makeArrayRef(argv, argc));
39
40- if (Stem.contains_lower("ar"))
41+ if (Stem.endswith("ar") || Stem.contains("ar-"))
42 return ar_main(argc, argv);
43 fail("Not ranlib, ar, lib or dlltool!");
44 }
diff --git a/recipes-devtools/clang/common.inc b/recipes-devtools/clang/common.inc
index 3f50fd0..c5e8d48 100644
--- a/recipes-devtools/clang/common.inc
+++ b/recipes-devtools/clang/common.inc
@@ -32,6 +32,7 @@ SRC_URI = "\
32 file://0022-Pass-PYTHON_EXECUTABLE-when-cross-compiling-for-nati.patch \ 32 file://0022-Pass-PYTHON_EXECUTABLE-when-cross-compiling-for-nati.patch \
33 file://0023-openmp-Recognise-ARMv7ve-machine-arch.patch \ 33 file://0023-openmp-Recognise-ARMv7ve-machine-arch.patch \
34 file://0024-Check-for-atomic-double-intrinsics.patch \ 34 file://0024-Check-for-atomic-double-intrinsics.patch \
35 file://0025-llvm-Let-llvm-ar-name-contain-lib.patch \
35" 36"
36 37
37# Fallback to no-PIE if not set 38# Fallback to no-PIE if not set