aboutsummaryrefslogtreecommitdiff
path: root/msvc-common/msvc-link-common
blob: 45e542c8610b45740d4b5ed295262e41c27e6643 (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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#! /usr/bin/env bash

# file      : msvc-common/msvc-link-common
# license   : MIT; see accompanying LICENSE file

# Note: shouldn't be executed directly, src_exe and src_dir must be set.

# Common link.exe driver that expects the VCBIN, SDKBIN, and LIB variables to
# be set for the specific MSVC version/configuration.

source "$src_dir/msvc-common/msvc-common"

# Translate absolute paths from POSIX to Windows. Use bash array to store
# arguments in case they contain spaces.
#
# This needs to be done for both certain option values and arguments.
# Arguments are tricky in that unless we recognize every option, and option
# may look a lot like an absolute POSIX path (e.g., /nologo). The heuristics
# that we are going to use here is that if the argument starts with / and
# contains at least one more /, then we consider it an argument. Otherwise --
# an options. We will also explicitly recognize certain options which may
# not fit this scheme well.
#
# Note that link.exe /? is missing some options that are documented in MSDN.
#
args=()

while [ $# -gt 0 ]; do
  case ${1^^} in # Uppercase for case-insensitive comparison.

    # @@ TODO: handle the rest/obscure options.
    #
    #  @file
    #  /ASSEMBLYLINKRESOURCE:filename
    #  /ASSEMBLYMODULE:filename
    #  /ASSEMBLYRESOURCE:filename[,[name][,PRIVATE]]
    #  /BASE:{address[,size]|@filename,key}
    #+ /DEF:filename
    #+ /DEFAULTLIB:library
    #+ /DELAYLOAD:dll
    #  /FASTGENPROFILE:PGD=filename|...
    #  /GENPROFILE:PGD=filename|...
    #+ /IDLOUT:filename
    #+ /IMPLIB:filename
    #+ /KEYFILE:filename
    #+ /LIBPATH:dir
    #+ /MANIFESTFILE:filename
    #+ /MANIFESTINPUT:filename
    #+ /MAP:filename
    #+ /MIDL:@commandfile
    #+ /NODEFAULTLIB:library
    #+ /ORDER:@filename
    #+ /OUT:filename
    #+ /PDB:filename
    #+ /PDBALTPATH:filename
    #+ /PDBSTRIPPED:filename
    #+ /PGD:filename
    #+ /STUB:filename
    #+ /TLBOUT:filename
    #  /USEPROFILE:PGD=filename
    #+ /WHOLEARCHIVE:library
    #+ /WINMDFILE:filename
    #  /WINMDKEYCONTAINER:name
    #+ /WINMDKEYFILE:filename

    [/-]DEF:* | \
    [/-]MAP:* | \
    [/-]OUT:* | \
    [/-]PDB:* | \
    [/-]PGD:*)
      args=("${args[@]}" "$(split_translate 5 $1)")
      shift
      ;;

    [/-]STUB:*)
      args=("${args[@]}" "$(split_translate 6 $1)")
      shift
      ;;

    [/-]MIDL:@*)
      args=("${args[@]}" "$(split_translate 7 $1)")
      shift
      ;;

    [/-]IMPLIB:* | \
    [/-]IDLOUT:* | \
    [/-]TLBOUT:* | \
    [/-]ORDER:@*)
      args=("${args[@]}" "$(split_translate 8 $1)")
      shift
      ;;

    [/-]KEYFILE:* | \
    [/-]LIBPATH:*)
      args=("${args[@]}" "$(split_translate 9 $1)")
      shift
      ;;

    [/-]DELAYLOAD:* | \
    [/-]WINMDFILE:*)
      args=("${args[@]}" "$(split_translate 11 $1)")
      shift
      ;;

    [/-]DEFAULTLIB:* | \
    [/-]PDBALTPATH:* | \
    [/-]SOURCELINK:*)
      args=("${args[@]}" "$(split_translate 12 $1)")
      shift
      ;;

    [/-]PDBSTRIPPED:*)
      args=("${args[@]}" "$(split_translate 13 $1)")
      shift
      ;;

    [/-]NODEFAULTLIB:* | \
    [/-]MANIFESTFILE:* | \
    [/-]WHOLEARCHIVE:* | \
    [/-]WINMDKEYFILE:*)
      args=("${args[@]}" "$(split_translate 14 $1)")
      shift
      ;;

    [/-]MANIFESTINPUT:*)
      args=("${args[@]}" "$(split_translate 15 $1)")
      shift
      ;;

    # Handle other options with separate values. This makes sure we don't try
    # to path-translate them.
    #

    # Aren't any.

    # Handle other options with combined values that could possibly be
    # interpreted as paths.
    #
    # /ENTRY:symbol
    # /EXPORT:symbol
    # /INCLUDE:symbol
    # /KEYCONTAINER:name
    # /MANIFESTDEPENDENCY:manifest dependency
    # /MANIFESTUAC[:{NO|UAC fragment}]
    # /MAPINFO:{EXPORTS}
    # /MERGE:from=to
    # /SECTION:name,[[!]{DEKPRSW}][,ALIGN=#]
    #
    [/-]ENTRY:*              | \
    [/-]EXPORT:*             | \
    [/-]INCLUDE:*            | \
    [/-]KEYCONTAINER:*       | \
    [/-]MANIFESTDEPENDENCY:* | \
    [/-]MANIFESTUAC:*        | \
    [/-]MAPINFO:*            | \
    [/-]MERGE:*              | \
    [/-]SECTION:*            | \
    [/-]REMOVE:*)
      args=("${args[@]}" "$1")
      shift
      ;;

    # Option or argument.
    #
    *)
      # If contains at least two slashes, treat it as a path.
      #
      if [[ "$1" == /*/* ]]; then
        args=("${args[@]}" "$(translate $1)")
      else
        args=("${args[@]}" "$1")
      fi
      shift
      ;;
  esac
done

export LIB

# link.exe may need to run mt.exe which is in the SDK.
#
export WINEPATH="$VCBIN;$VCDLL;$SDKBIN;$WINEPATH"

# link.exe always sends diagnostics to stdout.
#
msvc_exec 1 "$VCBIN\\link.exe" "${args[@]}"