From 811de1a68863f7903341288a113b8c0ac7aa9c0e Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 4 Jan 2017 18:12:14 +0000 Subject: Fix MicroBlaze bits/setjmp.h for C++. For MicroBlaze, setjmp/check-installed-headers-cxx fails with: ../setjmp/setjmp.h:34:8: error: '__jmp_buf_tag' has a field '__jmp_buf_tag::__jmpbuf' whose type depends on the type '' which has no linkage [-Werror=subobject-linkage] This patch fixes this in the same way as for some other architectures: the struct used for the internal __jmp_buf type is given the tag __jmp_buf_internal_tag. Tested (compilation tests) with build-many-glibcs.py. * sysdeps/microblaze/bits/setjmp.h (__jmp_buf): Give struct tag __jmp_buf_internal_tag. --- sysdeps/microblaze/bits/setjmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/microblaze') diff --git a/sysdeps/microblaze/bits/setjmp.h b/sysdeps/microblaze/bits/setjmp.h index d54db9c12c..fd175dac2b 100644 --- a/sysdeps/microblaze/bits/setjmp.h +++ b/sysdeps/microblaze/bits/setjmp.h @@ -25,7 +25,7 @@ # error "Never include directly; use instead." #endif -typedef struct +typedef struct __jmp_buf_internal_tag { /* There are 21 4-byte registers that should be saved: r1, r2, r13-r31. Actually, there seems no need to save -- cgit 1.4.1