Skip to content

Commit

Permalink
deadbeef: add patch to work around endian issues on ppc64le-musl
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
q66 authored and Hoshpak committed Dec 3, 2019
1 parent 338f0ee commit c61a9b9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions srcpkgs/deadbeef/patches/ppc-musl.patch
@@ -0,0 +1,17 @@
This removes an invalid assumption that results in both BLARGG_LITTLE_ENDIAN
and BLARGG_BIG_ENDIAN being defined on little endian musl, as we're already
covered by __LITTLE_ENDIAN__/__BIG_ENDIAN__ (which is specified as a part
of the ELFv2 ABI itself to be always present). Glibc was not broken because
it has its own check before that.

--- plugins/gme/game-music-emu-0.6pre/gme/blargg_endian.h
+++ plugins/gme/game-music-emu-0.6pre/gme/blargg_endian.h
@@ -36,7 +36,7 @@
#endif

#if defined (MSB_FIRST) || defined (__BIG_ENDIAN__) || defined (WORDS_BIGENDIAN) || \
- defined (__sparc__) || BLARGG_CPU_POWERPC || \
+ defined (__sparc__) || \
(defined (BIG_ENDIAN) && BIG_ENDIAN+0 != 4321)
#define BLARGG_BIG_ENDIAN 1
#elif !defined (__mips__)

0 comments on commit c61a9b9

Please sign in to comment.