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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
#! /bin/sh
# set -x
#
# %CopyrightBegin%
#
# Copyright Ericsson AB 2006-2009. All Rights Reserved.
#
# The contents of this file are subject to the Erlang Public License,
# Version 1.1, (the "License"); you may not use this file except in
# compliance with the License. You should have received a copy of the
# Erlang Public License along with this software. If not, it can be
# retrieved online at http://www.erlang.org/.
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License.
#
# %CopyrightEnd%
#
# Save the command line for debug outputs
SAVE="$@"
kernel_libs="-lkernel32 -ladvapi32"
gdi_libs="-lgdi32 -luser32 -lcomctl32 -lcomdlg32 -lshell32"
DEFAULT_LIBRARIES="$kernel_libs $gdi_libs"
CMD=""
STDLIB=-lmsvcrt
DEBUG_BUILD=false
STDLIB_FORCED=false
BUILD_DLL=false
OUTPUT_FILENAME=""
if [ -z "$MINGW_EXE_PATH" ]; then
echo "You have to set MINGW_EXE_PATH to run cc.sh" >&2
exit 1
fi
while test -n "$1" ; do
x="$1"
case "$x" in
-dll| -DLL | -shared)
BUILD_DLL=true;;
-L/*|-L.*)
y=`echo $x | sed 's,^-L\(.*\),\1,g'`;
MPATH=`cygpath -m $y`;
CMD="$CMD -L \"$MPATH\"";;
-lMSVCRT|-lmsvcrt)
STDLIB_FORCED=true;
STDLIB=-lmsvcrt;;
-lMSVCRTD|-lmsvcrtd)
STDLIB_FORCED=true;
STDLIB=-lmsvcrtd;;
-lLIBCMT|-llibcmt)
STDLIB_FORCED=true;
STDLIB=-llibcmt;;
-lLIBCMTD|-llibcmtd)
STDLIB_FORCED=true;
STDLIB=-llibcmtd;;
-lsocket)
DEFAULT_LIBRARIES="$DEFAULT_LIBRARIES -lws2_32";;
-l*)
y=`echo $x | sed 's,^-l\(.*\),\1,g'`;
MPATH=`cygpath -m $y`;
CMD="$CMD -l\"${MPATH}\"";;
-g)
DEBUG_BUILD=true;;
-pdb:none|-incremental:no)
;;
-implib:*)
y=`echo $x | sed 's,^-implib:\(.*\),\1,g'`;
MPATH=`cygpath -m $y`;
CMD="$CMD -Xlinker --out-implib -Xlinker \"${MPATH}\"";;
-entry:*)
y=`echo $x | sed 's,^-entry:\(.*\),\1,g'`;
CMD="$CMD -Xlinker --entry -Xlinker _$y";;
-def:*)
;;
## Ignore -def: for now as ld.sh core dumps...
# y=`echo $x | sed 's,^-def:\(.*\),\1,g'`;
# MPATH=`cygpath -m $y`;
# CMD="$CMD -Xlinker --output-def -Xlinker \"${MPATH}\"";;
-o)
shift
MPATH=`cygpath -m $1`;
OUTPUT_FILENAME="$MPATH";;
-o/*)
y=`echo $x | sed 's,^-[Io]\(/.*\),\1,g'`;
MPATH=`cygpath -m $y`;
OUTPUT_FILENAME="$MPATH";;
/*)
MPATH=`cygpath -m $x`;
CMD="$CMD \"$MPATH\"";;
*)
y=`echo $x | sed 's,",\\\",g'`;
CMD="$CMD \"$y\"";;
esac
shift
done
if [ $DEBUG_BUILD = true ]; then
linktype="-g"
if [ $STDLIB_FORCED = false ]; then
STDLIB=-lmsvcrt #d?
fi
else
linktype=
fi
if [ $BUILD_DLL = true ];then
case "$OUTPUT_FILENAME" in
*.exe|*.EXE)
echo "Warning, output set to .exe when building DLL" >&2
CMD="-shared -o \"$OUTPUT_FILENAME\" $CMD";;
*.dll|*.DLL)
CMD="-shared -o \"$OUTPUT_FILENAME\" $CMD";;
"")
CMD="-shared -o \"a.dll\" $CMD";;
*)
CMD="-shared -o \"${OUTPUT_FILENAME}.dll\" $CMD";;
esac
else
case "$OUTPUT_FILENAME" in
*.exe|*.EXE)
CMD="-o \"$OUTPUT_FILENAME\" $CMD";;
*.dll|*.DLL)
echo "Warning, output set to .dll when building EXE" >&2
CMD="-o \"$OUTPUT_FILENAME\" $CMD";;
"")
CMD="-o \"a.exe\" $CMD";;
*)
CMD="-o \"${OUTPUT_FILENAME}.exe\" $CMD";;
esac
fi
p=$$
CMD="$linktype $CMD $STDLIB $DEFAULT_LIBRARIES"
if [ "X$LD_SH_DEBUG_LOG" != "X" ]; then
echo ld.sh "$SAVE" >>$LD_SH_DEBUG_LOG
echo $MINGW_EXE_PATH/gcc.exe $CMD >>$LD_SH_DEBUG_LOG
fi
eval $MINGW_EXE_PATH/gcc "$CMD" >/tmp/link.exe.${p}.1 2>/tmp/link.exe.${p}.2
RES=$?
#tail +2 /tmp/link.exe.${p}.2 >&2
cat /tmp/link.exe.${p}.2 >&2
cat /tmp/link.exe.${p}.1
rm -f /tmp/link.exe.${p}.2 /tmp/link.exe.${p}.1
exit $RES
|