blob: e3fb6cbc3632a43c895b29bc3753853547d5d598 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/bin/bash
#########################################################################
# #
# OCaml #
# #
# Damien Doligez, projet Cristal, INRIA Rocquencourt #
# #
# Copyright 2005 Institut National de Recherche en Informatique et #
# en Automatique. All rights reserved. This file is distributed #
# under the terms of the Q Public License version 1.0. #
# #
#########################################################################
TMP="${TMPDIR=/tmp}"
TEMP="${TMP}"/ocaml-objcopy-$$.o
UNDEF="${TMP}"/ocaml-objcopy-$$.sym
usage () {
echo "usage: objcopy {--redefine-sym <old>=<new>} file.o" >&2
exit 2
}
: > "$UNDEF"
while : ; do
case $# in
0) break;;
*) case $1 in
--redefine-sym)
case $2 in
*=*) ALIAS="$ALIAS -i${2#*=}:${2%%=*}"
echo ${2%%=*} >>"$UNDEF"
;;
*) usage;;
esac
shift 2
;;
-*) usage;;
*) case $FILE in
"") FILE=$1; shift;;
*) usage;;
esac;;
esac;;
esac
done
ld -o "$TEMP" -r $ALIAS "$FILE"
ld -o "$FILE" -r -unexported_symbols_list "$UNDEF" "$TEMP"
rm -f "$TEMP" "$UNDEF"
|