diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-09-08 22:05:20 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2015-09-08 22:11:32 +0000 |
commit | f9fd7040aab620774e0efa1d92cc6c4a29ecbe17 (patch) | |
tree | 4150eb0fec9e17ee0b4adc8296ea149813e5b4c2 | |
parent | fad93752e9d0eaf54cad1197d92186150ce56356 (diff) | |
download | meta-clang-f9fd7040aab620774e0efa1d92cc6c4a29ecbe17.tar.gz |
gdb-cross,gnu-efi,systemtap,tcp-wrappers: Use gcc only for now
gdb-cross is added since it looks for a gcc for clang frontend as a
result it finds gcc in /usr/lib/gcc .. and OE's configure QA check sees
this as if the build referenced into hosts /usr/lib and bails out.
systemtap uses a lot of nested inlines which is unsupported by clang,
time permitting this should be cleaned
gnu-efi says
error: the 'sse' unit is not supported with this instruction set
tcp-wrappers fails with
fix_options.c:66:2: error: non-void function 'fix_options' should return a value [-Wreturn-type]
return;
^
fix_options.c:109:3: error: non-void function 'fix_options' should return a value [-Wreturn-type]
return;
Signed-off-by: Khem Raj <raj.khem@gmail.com>
4 files changed, 7 insertions, 0 deletions
diff --git a/recipes-excluded/nonclangable/gdb-cross_%.bbappend b/recipes-excluded/nonclangable/gdb-cross_%.bbappend new file mode 100644 index 0000000..b0cab1b --- /dev/null +++ b/recipes-excluded/nonclangable/gdb-cross_%.bbappend | |||
@@ -0,0 +1,2 @@ | |||
1 | TOOLCHAIN = "gcc" | ||
2 | |||
diff --git a/recipes-excluded/nonclangable/gnu-efi_%.bbappend b/recipes-excluded/nonclangable/gnu-efi_%.bbappend new file mode 100644 index 0000000..eb4c75b --- /dev/null +++ b/recipes-excluded/nonclangable/gnu-efi_%.bbappend | |||
@@ -0,0 +1 @@ | |||
TOOLCHAIN = "gcc" | |||
diff --git a/recipes-excluded/nonclangable/systemtap_%.bbappend b/recipes-excluded/nonclangable/systemtap_%.bbappend new file mode 100644 index 0000000..b0cab1b --- /dev/null +++ b/recipes-excluded/nonclangable/systemtap_%.bbappend | |||
@@ -0,0 +1,2 @@ | |||
1 | TOOLCHAIN = "gcc" | ||
2 | |||
diff --git a/recipes-excluded/nonclangable/tcp-wrappers_%.bbappend b/recipes-excluded/nonclangable/tcp-wrappers_%.bbappend new file mode 100644 index 0000000..b0cab1b --- /dev/null +++ b/recipes-excluded/nonclangable/tcp-wrappers_%.bbappend | |||
@@ -0,0 +1,2 @@ | |||
1 | TOOLCHAIN = "gcc" | ||
2 | |||