mirror of https://github.com/mpv-player/mpv
14 lines
351 B
Bash
Executable File
14 lines
351 B
Bash
Executable File
#!/bin/sh
|
|
# This script fixes up symbol mangling in GNU as code of stubs.s.
|
|
# This file is licensed under the GPL, more info at http://www.fsf.org/
|
|
if ! [ 'file stubs.o | grep ELF ' ] ; then
|
|
for i in "export_names" \
|
|
"printf" \
|
|
"exp_EH_prolog" \
|
|
"unk_exp1"
|
|
do
|
|
echo "fixing: $i=_$i"
|
|
objcopy --redefine-sym "$i=_$i" stubs.o
|
|
done
|
|
fi
|