summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-07-23 22:57:31 -0700
committerKhem Raj <raj.khem@gmail.com>2015-07-23 22:57:31 -0700
commit3468eae4fc7d899c9d7265d4f843940b63503cf9 (patch)
tree625060573674c6a67d1f9dc58747e9791eba97aa
parent2a912ed99d2a7f850af217fd722199d4fd181277 (diff)
downloadmeta-clang-3468eae4fc7d899c9d7265d4f843940b63503cf9.tar.gz
clang: Upgrade to tip of 3.7 release branch
Dont stage cmake helper files for nativesdk build they are also poked at by clang-crosssdk and wrong values are inferred since the values are meant for SDKMACHINE and not for native build host so all paths come out incorrect and builds fails for nativesdk packages Therefore we do not stage llvm cmake files Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--recipes-devtools/clang/clang_git.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes-devtools/clang/clang_git.bb b/recipes-devtools/clang/clang_git.bb
index d5616a8..0dd268e 100644
--- a/recipes-devtools/clang/clang_git.bb
+++ b/recipes-devtools/clang/clang_git.bb
@@ -18,8 +18,8 @@ SRC_URI = "git://github.com/llvm-mirror/llvm.git;branch=${BRANCH};name=llvm \
18 file://0001-Choose-right-dynamic-linker-when-hard-float-ABI-is-e.patch \ 18 file://0001-Choose-right-dynamic-linker-when-hard-float-ABI-is-e.patch \
19 " 19 "
20 20
21SRCREV_llvm = "abdaa238fdfb7d0353994f5cb57e6fdb1afa7443" 21SRCREV_llvm = "9dd0401722fd60349c00d0714666f0db3f7a4067"
22SRCREV_clang = "85f2a0f98015dd1e05b162651f1d9877340125a1" 22SRCREV_clang = "219ecbfdcb845d9657e202500bb75beae99a7688"
23 23
24SRCREV_FORMAT = "llvm_clang" 24SRCREV_FORMAT = "llvm_clang"
25 25
@@ -108,6 +108,7 @@ do_install_append_class-nativesdk () {
108 for f in `find ${D}${bindir} -executable -type f -not -type l`; do 108 for f in `find ${D}${bindir} -executable -type f -not -type l`; do
109 test -n "`file $f|grep -i ELF`" && ${STRIP} $f 109 test -n "`file $f|grep -i ELF`" && ${STRIP} $f
110 done 110 done
111 rm -rf ${D}${datadir}/llvm/cmake
111} 112}
112PACKAGE_DEBUG_SPLIT_STYLE_class-nativesdk = "debug-without-src" 113PACKAGE_DEBUG_SPLIT_STYLE_class-nativesdk = "debug-without-src"
113 114