diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-10-15 19:49:43 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2016-10-15 19:49:43 -0700 |
commit | dd04c7f561c66e6edd9363e5da266fffa3bca26e (patch) | |
tree | d1aca2643c90a20b5a9cd56f40504680b53c84f1 /recipes-devtools/clang/compiler-rt/0003-Disable-tsan-on-OE-glibc.patch | |
parent | afcd6a10cf70ffc92f6be8a13e57647635555192 (diff) | |
download | meta-clang-dd04c7f561c66e6edd9363e5da266fffa3bca26e.tar.gz |
clang/llvm: Switch to 4.0.0 development version
3.9 is now branched for morty
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes-devtools/clang/compiler-rt/0003-Disable-tsan-on-OE-glibc.patch')
-rw-r--r-- | recipes-devtools/clang/compiler-rt/0003-Disable-tsan-on-OE-glibc.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-devtools/clang/compiler-rt/0003-Disable-tsan-on-OE-glibc.patch b/recipes-devtools/clang/compiler-rt/0003-Disable-tsan-on-OE-glibc.patch new file mode 100644 index 0000000..67e660d --- /dev/null +++ b/recipes-devtools/clang/compiler-rt/0003-Disable-tsan-on-OE-glibc.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | From 622ef6bbd65f71ebbaf3525d50fb357e62631a08 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Mon, 18 Jul 2016 08:05:02 +0000 | ||
4 | Subject: [PATCH 3/3] Disable tsan on OE/glibc | ||
5 | |||
6 | It does not build see | ||
7 | http://lists.llvm.org/pipermail/llvm-dev/2016-July/102235.html | ||
8 | |||
9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
10 | --- | ||
11 | cmake/config-ix.cmake | 2 +- | ||
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
13 | |||
14 | diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake | ||
15 | index cb9f74b..d7e0fba 100644 | ||
16 | --- a/cmake/config-ix.cmake | ||
17 | +++ b/cmake/config-ix.cmake | ||
18 | @@ -472,7 +472,7 @@ else() | ||
19 | endif() | ||
20 | |||
21 | if (COMPILER_RT_HAS_SANITIZER_COMMON AND TSAN_SUPPORTED_ARCH AND | ||
22 | - OS_NAME MATCHES "Darwin|Linux|FreeBSD") | ||
23 | + OS_NAME MATCHES "Darwin|FreeBSD") | ||
24 | set(COMPILER_RT_HAS_TSAN TRUE) | ||
25 | else() | ||
26 | set(COMPILER_RT_HAS_TSAN FALSE) | ||
27 | -- | ||
28 | 2.10.0 | ||
29 | |||