summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-11-14 16:30:51 -0800
committerKhem Raj <raj.khem@gmail.com>2020-11-15 16:51:45 -0800
commit81128c31544863189d2fec11b74fa4589cd1651d (patch)
treeb82f668c21b717bf65476493cbab76a19bd59b77
parent86ab1ce8c667b54e3da1128bb9f05f51adbe9c0b (diff)
downloadmeta-clang-81128c31544863189d2fec11b74fa4589cd1651d.tar.gz
clang: Update to latest on release/11.x branch
The minor release is bumped to 11.0.1 Changes is this bump are * 0874e7ef66c Allow init_priority values <= 100 and > 65535 within system headers. * 02004c9e7c9 [ADT] Fix for ImmutableMapRef * 85ce339f1bd [cmake] Fix build of attribute plugin example on Windows * ef4ffcafbb2 [DAE] MarkLive in MarkValue(MaybeLive) if any use is live * 3c687677678 DeferredDiagnosticsEmitter crashes * 701addff1b7 [clang][Sema] Fix PR47676: Handle dependent AltiVec C-style cast * 5ad2592b5dc [X86] Fix cpu name typos * 8fc424f26bf Add release tarballs for libclc * 83716db47f9 [ELF] -r: don't crash when a non-SHF_LINK_ORDER orphan is added before a SHF_LINK_ORDER orphan * 1ff84a04aeb BPF: fix incorrect DAG2DAG load optimization * 38399ced95b [ConstantFold] Make areGlobalsPotentiallyEqual less aggressive. * b59b6b662bb Import github action definitions from release/10.x branch * 3039965645c Bump version to 11.0.1 Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--conf/layer.conf2
-rw-r--r--recipes-devtools/clang/clang.inc4
2 files changed, 3 insertions, 3 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index e20bfe2..4520626 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -29,7 +29,7 @@ INHERIT += "clang"
29# Do not include clang in SDK unless user wants to 29# Do not include clang in SDK unless user wants to
30CLANGSDK ??= "0" 30CLANGSDK ??= "0"
31 31
32LLVMVERSION = "11.0.0" 32LLVMVERSION = "11.0.1"
33 33
34require conf/nonclangable.conf 34require conf/nonclangable.conf
35require conf/nonscanable.conf 35require conf/nonscanable.conf
diff --git a/recipes-devtools/clang/clang.inc b/recipes-devtools/clang/clang.inc
index 32ac6b0..7078ae7 100644
--- a/recipes-devtools/clang/clang.inc
+++ b/recipes-devtools/clang/clang.inc
@@ -6,9 +6,9 @@ LLVM_GIT_PROTOCOL ?= "https"
6 6
7MAJOR_VER = "11" 7MAJOR_VER = "11"
8MINOR_VER = "0" 8MINOR_VER = "0"
9PATCH_VER = "0" 9PATCH_VER = "1"
10 10
11SRCREV ?= "176249bd6732a8044d457092ed932768724a6f06" 11SRCREV ?= "0874e7ef66cc82a795fb19e8662e09a10eabaa01"
12 12
13PV = "${MAJOR_VER}.${MINOR_VER}.${PATCH_VER}" 13PV = "${MAJOR_VER}.${MINOR_VER}.${PATCH_VER}"
14BRANCH = "release/${MAJOR_VER}.x" 14BRANCH = "release/${MAJOR_VER}.x"