Signed-off-by: Yuan Zhao <[email protected]> --- ...ueMap.h-unique_ptr-conversion-to-bool-ope.patch | 29 ---------------------- .../recipes-core/llvm/ti-llvm3.6_3.6.bb | 9 +++---- 2 files changed, 4 insertions(+), 34 deletions(-) delete mode 100644 meta-arago-extras/recipes-core/llvm/ti-llvm3.6/0001-llvm-IR-ValueMap.h-unique_ptr-conversion-to-bool-ope.patch
diff --git a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6/0001-llvm-IR-ValueMap.h-unique_ptr-conversion-to-bool-ope.patch b/meta-arago-extras/recipes-core/llvm/ti-llvm3.6/0001-llvm-IR-ValueMap.h-unique_ptr-conversion-to-bool-ope.patch deleted file mode 100644 index b5d3d468..00000000 --- a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6/0001-llvm-IR-ValueMap.h-unique_ptr-conversion-to-bool-ope.patch +++ /dev/null @@ -1,29 +0,0 @@ -From b5e503109f95f25828d0398be66474502239489d Mon Sep 17 00:00:00 2001 -From: Denys Dmytriyenko <[email protected]> -Date: Tue, 16 Oct 2018 16:13:52 -0400 -Subject: [PATCH] llvm/IR/ValueMap.h: unique_ptr conversion to bool operator is - declared explicit - -Fixes build with gcc8. - -Signed-off-by: Denys Dmytriyenko <[email protected]> ---- - include/llvm/IR/ValueMap.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/include/llvm/IR/ValueMap.h b/include/llvm/IR/ValueMap.h -index f2ea405..f9a1a62 100644 ---- a/include/llvm/IR/ValueMap.h -+++ b/include/llvm/IR/ValueMap.h -@@ -101,7 +101,7 @@ public: - - ~ValueMap() {} - -- bool hasMD() const { return MDMap; } -+ bool hasMD() const { return static_cast<bool>(MDMap); } - MDMapT &MD() { - if (!MDMap) - MDMap.reset(new MDMapT); --- -2.7.4 - diff --git a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb b/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb index 7d1e3175..16a3269b 100644 --- a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb +++ b/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb @@ -1,7 +1,7 @@ DESCRIPTION = "LLVM 3.6 with support for TI C66x intrinsics" -HOMEPAGE = "https://gitorious.design.ti.com/ocl/llvm33-src" +HOMEPAGE = "https://git.ti.com/opencl/llvm" -PR = "r6" +PR = "r7" do_configure_prepend_class-native() { # Fix paths in llvm-config @@ -27,20 +27,19 @@ LLVM_GIT_URI = "git://git.ti.com/opencl/llvm.git" LLVM_GIT_PROTOCOL = "git" LLVM_GIT_BRANCH = "release_36_ti" LLVM_GIT_DESTSUFFIX = "git" -LLVM_GIT_SRCREV = "8ff2a35c586a3d3f624712e0943777613a017bc5" +LLVM_GIT_SRCREV = "09780c6750b30da81e4a0a805aedf1699fbc37c7" CLANG_GIT_NAME = "clang" CLANG_GIT_URI = "git://git.ti.com/opencl/clang.git" CLANG_GIT_PROTOCOL = "git" CLANG_GIT_BRANCH = "release_36_ti" CLANG_GIT_DESTSUFFIX = "${LLVM_GIT_DESTSUFFIX}/tools/clang" -CLANG_GIT_SRCREV = "1bffed84d31aa9271ef4c91301f833d103e94010" +CLANG_GIT_SRCREV = "5b006f07bdc22b5ae6917eecdfe243908dd7b029" SRC_URI = " \ ${LLVM_GIT_URI};protocol=${LLVM_GIT_PROTOCOL};branch=${LLVM_GIT_BRANCH};destsuffix=${LLVM_GIT_DESTSUFFIX};name=${LLVM_GIT_NAME} \ ${CLANG_GIT_URI};protocol=${CLANG_GIT_PROTOCOL};branch=${CLANG_GIT_BRANCH};destsuffix=${CLANG_GIT_DESTSUFFIX};name=${CLANG_GIT_NAME} \ file://0001-configure-Do-not-check-build-executable-extension.patch \ - file://0001-llvm-IR-ValueMap.h-unique_ptr-conversion-to-bool-ope.patch \ " SRCREV_${LLVM_GIT_NAME} = "${LLVM_GIT_SRCREV}" -- 2.14.1 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
