summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libunwind/libunwind-1.1/musl-header-conflict.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libunwind/libunwind-1.1/musl-header-conflict.patch')
-rw-r--r--meta/recipes-support/libunwind/libunwind-1.1/musl-header-conflict.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-support/libunwind/libunwind-1.1/musl-header-conflict.patch b/meta/recipes-support/libunwind/libunwind-1.1/musl-header-conflict.patch
new file mode 100644
index 0000000000..79f63fd84e
--- /dev/null
+++ b/meta/recipes-support/libunwind/libunwind-1.1/musl-header-conflict.patch
@@ -0,0 +1,37 @@
1If you:
2
3TCLIBC=musl bitbake unwind
4TCLIBC=musl bitbake gcc-runtime -c cleansstate
5TCLIBC=musl bitbake gcc-runtime
6
7you will see libstdc++ fail to build due to finding libunwind's header file.
8
9Khem: "When we build any of gcc components they expect to use internal version
10and that works with glibc based gcc since the search headers first look into gcc
11headers, however with musl the gcc headers are searched after the standard
12headers ( which is by design the right thing )."
13
14This patch hacks around the issue by looking for a define used during gcc-runtime's
15build and skipping to the internal header in that case.
16
17[YOCTO #10129]
18
19RP 2016/8/18
20
21Upstream-Status: Inappropriate [really need to fix gcc]
22
23Index: git/include/unwind.h
24===================================================================
25--- git.orig/include/unwind.h
26+++ git/include/unwind.h
27@@ -23,6 +23,10 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER L
28 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
30
31+#ifdef _GLIBCXX_SHARED
32+#include_next <unwind.h>
33+#endif
34+
35 #ifndef _UNWIND_H
36 #define _UNWIND_H
37