mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 05:38:14 +00:00
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@1 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
11 lines
305 B
Bash
Executable file
11 lines
305 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/
|
|
for i in "export_names" \
|
|
"printf" \
|
|
"exp_EH_prolog" \
|
|
"unk_exp1"
|
|
do
|
|
echo "fixing: $i=_$i"
|
|
objcopy --redefine-sym "$i=_$i" stubs.o
|
|
done
|