summaryrefslogtreecommitdiff
path: root/tools/ocaml-objcopy-macosx
blob: cb2f703b4d85620eb71730886a6894fef5db143b (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
52
53
54
#!/bin/bash

#########################################################################
#                                                                       #
#                            Objective Caml                             #
#                                                                       #
#           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.                #
#                                                                       #
#########################################################################

# $Id$


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"