diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-04-20 15:19:41 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2015-04-21 19:42:09 -0700 |
commit | f5365955c494e60ff91a58dfee3f9d510925437e (patch) | |
tree | 990b7a4b506aeb7289cd45d3d0e97265ed2c0fc1 | |
parent | 0d7c9a1847aaad4c3093e5be6009492194be7574 (diff) | |
download | meta-clang-f5365955c494e60ff91a58dfee3f9d510925437e.tar.gz |
clanf.conf: Remove musl and add compiler-rt
We cant compile libc yet since musl needs a dep
on libgcc and compiler-rt needs some work to reach to
that point
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | conf/clang.conf | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/conf/clang.conf b/conf/clang.conf index b4a616f..312f4cd 100644 --- a/conf/clang.conf +++ b/conf/clang.conf | |||
@@ -8,8 +8,12 @@ CCLD_toolchain-clang = "${TARGET_PREFIX}clang ${TOOLCHAIN_OPTIONS}" | |||
8 | TOOLCHAIN_pn-lzo = "clang" | 8 | TOOLCHAIN_pn-lzo = "clang" |
9 | DEPENDS_append_pn-lzo = " clang-cross-${TARGET_ARCH} " | 9 | DEPENDS_append_pn-lzo = " clang-cross-${TARGET_ARCH} " |
10 | 10 | ||
11 | TOOLCHAIN_pn-musl = "clang" | 11 | #TOOLCHAIN_pn-musl = "clang" |
12 | DEPENDS_append_pn-musl = " clang-cross-${TARGET_ARCH} " | 12 | #DEPENDS_append_pn-musl = " clang-cross-${TARGET_ARCH} " |
13 | 13 | ||
14 | TOOLCHAIN_pn-toybox = "clang" | 14 | TOOLCHAIN_pn-toybox = "clang" |
15 | DEPENDS_append_pn-toybox = " clang-cross-${TARGET_ARCH} " | 15 | DEPENDS_append_pn-toybox = " clang-cross-${TARGET_ARCH} " |
16 | |||
17 | TOOLCHAIN_pn-compiler-rt = "clang" | ||
18 | DEPENDS_append_pn-compiler-rt = " clang-cross-${TARGET_ARCH} " | ||
19 | |||