annotate mp3lib/mp3lib_objfix.sh @ 5109:0ac187a189a8
volume normalizer plugin added
author |
gabucino |
date |
Fri, 15 Mar 2002 22:14:26 +0000 |
parents |
f1efe9e55647 |
children |
d3b889d54a7a |
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" \
|
|
9 "isse"
|
|
10 do
|
|
11 echo "fixing: $i=_$i"
|
|
12 objcopy --redefine-sym "$i=_$i" libMP3.a
|
|
13 done
|
|
14
|