comparison mp3lib/mp3lib_objfix.sh @ 4244:f1efe9e55647

rewrites symbols in d_cpu.s on cygwin
author atmos4
date Sat, 19 Jan 2002 04:42:09 +0000
parents
children d3b889d54a7a
comparison
equal deleted inserted replaced
4243:05ad38cc0338 4244:f1efe9e55647
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