view mp3lib/mp3lib_objfix.sh @ 8672:9065fd98fad3

I've made some changes to the -identify handling. As previously the output for ID_VIDEO_FORMAT was only meaningful if it was a fourcc file, the output for mpeg1 and mpeg2 was jibberish. based on patch by Philip J¸«£genstedt <philipj@telia.com>
author arpi
date Tue, 31 Dec 2002 02:26:32 +0000
parents d3b889d54a7a
children
line wrap: on
line source

#!/bin/sh
# This script fixes up symbol mangling in GNU as code of mp3lib.
# (c)2001-2002 by Felix Buenemann <atmosfear at users.sourceforge.net>A
# This file is licensed under the GPL, more info at http://www.fsf.org/
for i in \
	"CpuDetect" \
	"ipentium" \
	"a3dnow" \
	"isse" \
	"dct36_3dnowex" \
	"dct36_3dnow" \
	"x_plus_minus_3dnow" \
	"tfcos36" \
	"COS9"
do
echo "fixing: $i=_$i"
objcopy --redefine-sym "$i=_$i" libMP3.a
done