diff options
author | Dirk Neukirchen <dirkneukirchen@web.de> | 2015-05-08 10:04:50 +0200 |
---|---|---|
committer | Dirk Neukirchen <dirkneukirchen@web.de> | 2015-08-19 12:15:46 +0200 |
commit | f9c2f0821ea15a897832499f47cd649e818772ca (patch) | |
tree | 855f859747e57087bc5cf3476066baeb813ddc1a | |
parent | ad39db848e72054e1ecfae787ef5f24b8d25a12a (diff) |
shine: fix mips64 (octeon) build error
error reported by buildbot, replicated locally:
wave.c:(.text+0x8e4): undefined reference to `__builtin_bswap16'
It seems that gcc builtin function is not working for mips64
according to
https://gcc.gnu.org/ml/gcc-patches/2014-01/msg00551.html
bswap patterns only work in >4.8 so the compiler
check in wave.c seems inconsistent across different archs
as octeon has gcc 4.6
make it require gcc >=4.8
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
-rw-r--r-- | sound/shine/patches/001-fix_mips64_bswap.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sound/shine/patches/001-fix_mips64_bswap.patch b/sound/shine/patches/001-fix_mips64_bswap.patch new file mode 100644 index 000000000..8c42297c6 --- /dev/null +++ b/sound/shine/patches/001-fix_mips64_bswap.patch @@ -0,0 +1,11 @@ +--- a/src/bin/wave.c ++++ b/src/bin/wave.c +@@ -168,7 +168,7 @@ unsigned char wave_open(const char *fnam + } + + #ifdef SHINE_BIG_ENDIAN +-#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) ++#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)) + #define bswap_16(x) __builtin_bswap16(x) + #else + #define bswap_16(x) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8)) |