void-packages/srcpkgs/musl/patches/powerpc-wchar-t.patch
q66 0da9cc40f8 musl: properly deal with wchar_t definition on 32-bit powerpc
Clang defines it to be int, gcc defines it to be long. The old
code results in conflicts when building things with clang. This
same change is already incorporated for i386 in musl upstream,
so apply it to powerpc as well.
2019-05-23 14:37:14 +02:00

19 lines
514 B
Diff

Clang defines wchar_t as int, gcc as long on the target. They have the same
size, but are different types. i386 already has this same change, do it for
powerpc as well.
--- arch/powerpc/bits/alltypes.h.in
+++ arch/powerpc/bits/alltypes.h.in
@@ -6,8 +6,12 @@ TYPEDEF __builtin_va_list va_list;
TYPEDEF __builtin_va_list __isoc_va_list;
#ifndef __cplusplus
+#ifdef __WCHAR_TYPE__
+TYPEDEF __WCHAR_TYPE__ wchar_t;
+#else
TYPEDEF long wchar_t;
#endif
+#endif
TYPEDEF float float_t;
TYPEDEF double double_t;