annotate mp3lib/mp3lib_objfix.sh @ 10271:f0e14d641160
libmpeg2-altivec patch by Magnus Damm <damm@opensource.se>:
Updated to version 1.12 from sourceforge
The old version crashed my gcc-3.2.2 (after allocating 1 Gig memory)
because of unfriendly altivec code, the new file is better.
The new file ditches the old assembly version
and it must be built with correct altivec-flags
author |
arpi |
date |
Mon, 09 Jun 2003 12:12:04 +0000 |
parents |
d3b889d54a7a |
children |
|
rev |
line source |
4244
|
1 #!/bin/sh
|
|
2 # This script fixes up symbol mangling in GNU as code of mp3lib.
|
|
3 # (c)2001-2002 by Felix Buenemann <atmosfear at users.sourceforge.net>A
|
|
4 # This file is licensed under the GPL, more info at http://www.fsf.org/
|
|
5 for i in \
|
|
6 "CpuDetect" \
|
|
7 "ipentium" \
|
|
8 "a3dnow" \
|
5289
|
9 "isse" \
|
|
10 "dct36_3dnowex" \
|
|
11 "dct36_3dnow" \
|
|
12 "x_plus_minus_3dnow" \
|
|
13 "tfcos36" \
|
|
14 "COS9"
|
4244
|
15 do
|
|
16 echo "fixing: $i=_$i"
|
|
17 objcopy --redefine-sym "$i=_$i" libMP3.a
|
|
18 done
|
|
19
|