summaryrefslogtreecommitdiffstats
path: root/meta/packages/libmad/libmad/fix_for_mips_with_gcc-4.5.0.patch
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2010-07-29 15:39:32 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-31 00:02:24 +0100
commit24132e4cf15be86c432c2a470fcaa2d1337e600f (patch)
treeca2cc5fd75b893957d785f38cd18c1f3dfe7b60b /meta/packages/libmad/libmad/fix_for_mips_with_gcc-4.5.0.patch
parent4460087b838dd2e882e4b354049464394df04a7e (diff)
downloadpoky-24132e4cf15be86c432c2a470fcaa2d1337e600f.tar.gz
libmad: fix for building on mips with gcc-4.5.0
added a patch: fix_for_mips_with_gcc-4.5.0.patch Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/packages/libmad/libmad/fix_for_mips_with_gcc-4.5.0.patch')
-rw-r--r--meta/packages/libmad/libmad/fix_for_mips_with_gcc-4.5.0.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/packages/libmad/libmad/fix_for_mips_with_gcc-4.5.0.patch b/meta/packages/libmad/libmad/fix_for_mips_with_gcc-4.5.0.patch
new file mode 100644
index 0000000000..785a8a22db
--- /dev/null
+++ b/meta/packages/libmad/libmad/fix_for_mips_with_gcc-4.5.0.patch
@@ -0,0 +1,31 @@
1gcc 4.4 did this: The MIPS port no longer recognizes the h asm constraint. It was necessary to remove this constraint in order to avoid generating unpredictable code sequences.
2
3so the libmad build with gcc-4.5.0 was failing.
4
5Found a solution here:
6
7http://us.generation-nt.com/answer/bug-568418-libmad0-dev-mpg321-compilation-errors-mips-mipsel-architectures-help-169033451.html
8
92010/07/29
10Nitin A Kamble <nitin.a.kamble@intel.com>
11
12Index: libmad-0.15.1b/fixed.h
13===================================================================
14--- libmad-0.15.1b.orig/fixed.h
15+++ libmad-0.15.1b/fixed.h
16@@ -297,6 +297,15 @@ mad_fixed_t mad_f_mul_inline(mad_fixed_t
17
18 /* --- MIPS ---------------------------------------------------------------- */
19
20+# elif defined(FPM_MIPS) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
21+ typedef unsigned int u64_di_t __attribute__ ((mode (DI)));
22+# define MAD_F_MLX(hi, lo, x, y) \
23+ do { \
24+ u64_di_t __ll = (u64_di_t) (x) * (y); \
25+ hi = __ll >> 32; \
26+ lo = __ll; \
27+ } while (0)
28+
29 # elif defined(FPM_MIPS)
30
31 /*