annotate mp3lib/mp3lib_objfix.sh @ 4425:6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
author |
arpi |
date |
Thu, 31 Jan 2002 00:37:27 +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
|