1 # Copyright
(C
) 2002-2017 Free Software Foundation
, Inc.
3 # This
program is free software
; you can redistribute it and
/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation
; either version
3 of the License
, or
6 #
(at your option
) any later version.
8 # This
program is distributed in the hope that it will be useful
,
9 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License
for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this
program; if not
, write to the Free Software
15 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
, MA
02110-1301, USA.
17 if {![istarget
"i*86-*-*"]
18 && ![istarget
"x86_64-*-mingw*"]
19 && ![istarget
"arm-*-pe*"]} {
23 if {![istarget
"i*86-*-*pe*"] \
24 && ![istarget
"i*86-*-cygwin*"] \
25 && ![istarget
"i*86-*-mingw32*"] \
26 && ![istarget
"arm-*-pe*"] \
27 && ![istarget
"x86_64-*-mingw*"] } {
28 set target_xfail
"yes"
33 # PR
19459: The ARM does not support inserting a leading underscore.
34 if { [istarget
"arm-*-pe*"] } {
35 set target_no_leading_underscore
"yes"
37 set target_no_leading_underscore
"no"
40 if {![info exists DLLTOOL
]} then {
44 if {[which $DLLTOOL
] == 0} then {
48 verbose
"$DLLTOOL --leading-underscore -d $srcdir/$subdir/fastcall.def" 1
49 catch
"exec $DLLTOOL --leading-underscore -d $srcdir/$subdir/fastcall.def" err
51 if ![string match
"" $err] then {
54 fail
"dlltool (fastcall export)"
56 pass
"dlltool (fastcall export)"
59 if { "$target_xfail" == "yes" } {
63 verbose
"$DLLTOOL -l libversion.a --def $srcdir/$subdir/version.def $dlltool_gas_flag" 1
64 catch
"exec $DLLTOOL -l libersion.a --def $srcdir/$subdir/version.def $dlltool_gas_flag" err
66 if ![string match
"" $err] then {
69 fail
"dlltool (version.dll)"
71 pass
"dlltool (version.dll)"
74 if { "$target_xfail" == "yes" } {
78 verbose
"$DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" 1
79 catch
"exec $DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" err
81 if ![string match
"" $err] then {
84 fail
"dlltool -p (execution)"
88 pass
"dlltool -p (execution)"
90 set got
[binutils_run $NM
"tmpdir/libalias.a"]
91 if { "$target_no_leading_underscore" == "yes" } {
92 set want
"00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
94 set want
"00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
97 if [regexp $want $got
] then {
98 pass
"dlltool -p (symbol names)"
100 fail
"dlltool -p (symbol names)"
103 set got
[binutils_run $OBJDUMP
"-s -j .idata\$6 tmpdir/libalias.a"]
104 set want
"(Contents of section .idata\\\$6:.*\\.\\.symbol\\.\\..*){2,2}"
106 if [regexp $want $got
] then {
107 pass
"dlltool -p (import name)"
109 fail
"dlltool -p (import name)"
112 verbose
"$DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" 1
113 catch
"exec $DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" err
115 if ![string match
"" $err] then {
118 fail
"dlltool -p (execution) alias-2.def"
122 pass
"dlltool -p (execution) alias-2.def"
124 set got
[binutils_run $NM
"tmpdir/libalias2.a"]
125 if { "$target_no_leading_underscore" == "yes" } {
126 set want
"00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
128 set want
"00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
131 if [regexp $want $got
] then {
132 pass
"dlltool -p (symbol names) alias-2.def"
134 fail
"dlltool -p (symbol names) alias-2.def"
137 set got
[binutils_run $OBJDUMP
"-s -j .idata\$6 tmpdir/libalias2.a"]
138 set want
"(Contents of section .idata\\\$6:.*\\.\\.something\\..*){2,2}"
140 if [regexp $want $got
] then {
141 pass
"dlltool -p (import name) alias-2.def"
143 fail
"dlltool -p (import name) alias-2.def"
146 # Here we test explicit without leading underscore
148 verbose
"$DLLTOOL --no-leading-underscore -d $srcdir/$subdir/fastcall.def" 1
149 catch
"exec $DLLTOOL --no-leading-underscore -d $srcdir/$subdir/fastcall.def" err
151 if ![string match
"" $err] then {
154 fail
"dlltool (fastcall export no leading underscore)"
156 pass
"dlltool (fastcall export no leading underscore)"
159 verbose
"$DLLTOOL --no-leading-underscore -p prefix -l tmpdir/libalias_nu.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" 1
160 catch
"exec $DLLTOOL --no-leading-underscore -p prefix -l tmpdir/libalias_nu.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" err
162 if ![string match
"" $err] then {
165 fail
"dlltool -p (execution no leading underscore)"
169 pass
"dlltool -p (execution no leading underscore)"
171 set got
[binutils_run $NM
"tmpdir/libalias_nu.a"]
172 set want
"00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
174 if [regexp $want $got
] then {
175 pass
"dlltool -p (symbol names no leading underscore)"
177 fail
"dlltool -p (symbol names no leading underscore)"
180 set got
[binutils_run $OBJDUMP
"-s -j .idata\$6 tmpdir/libalias_nu.a"]
181 set want
"(Contents of section .idata\\\$6:.*\\.\\.symbol\\.\\..*){2,2}"
183 if [regexp $want $got
] then {
184 pass
"dlltool -p (import name no leading underscore)"
186 fail
"dlltool -p (import name no leading underscore)"
189 verbose
"$DLLTOOL --no-leading-underscore -p prefix -l tmpdir/libalias_nu2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" 1
190 catch
"exec $DLLTOOL --no-leading-underscore -p prefix -l tmpdir/libalias_nu2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" err
192 if ![string match
"" $err] then {
195 fail
"dlltool -p (execution no leading underscore) alias-2.def"
199 pass
"dlltool -p (execution no leading underscore) alias-2.def"
201 set got
[binutils_run $NM
"tmpdir/libalias_nu2.a"]
202 set want
"00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
204 if [regexp $want $got
] then {
205 pass
"dlltool -p (symbol names no leading underscore) alias-2.def"
207 fail
"dlltool -p (symbol names no leading underscore) alias-2.def"
210 set got
[binutils_run $OBJDUMP
"-s -j .idata\$6 tmpdir/libalias_nu2.a"]
211 set want
"(Contents of section .idata\\\$6:.*\\.\\.something\\..*){2,2}"
213 if [regexp $want $got
] then {
214 pass
"dlltool -p (import name no leading underscore) alias-2.def"
216 fail
"dlltool -p (import name no leading underscore) alias-2.def"
219 # Now we test with leading underscore
220 verbose
"$DLLTOOL --leading-underscore -d $srcdir/$subdir/fastcall.def" 1
221 catch
"exec $DLLTOOL --leading-underscore -d $srcdir/$subdir/fastcall.def" err
223 if ![string match
"" $err] then {
226 fail
"dlltool (fastcall export leading underscore)"
228 pass
"dlltool (fastcall export leading underscore)"
231 verbose
"$DLLTOOL --leading-underscore -p prefix -l tmpdir/libalias_u.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" 1
232 catch
"exec $DLLTOOL --leading-underscore -p prefix -l tmpdir/libalias_u.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" err
234 if ![string match
"" $err] then {
237 fail
"dlltool -p (execution leading underscore)"
241 pass
"dlltool -p (execution leading-underscore)"
243 set got
[binutils_run $NM
"tmpdir/libalias_u.a"]
244 if { "$target_no_leading_underscore" == "yes" } {
245 set want
"00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
247 set want
"00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
250 if { "$target_xfail" == "yes" } {
254 if [regexp $want $got
] then {
255 pass
"dlltool -p (symbol names leading underscore)"
257 fail
"dlltool -p (symbol names leading underscore)"
260 set got
[binutils_run $OBJDUMP
"-s -j .idata\$6 tmpdir/libalias_u.a"]
261 set want
"(Contents of section .idata\\\$6:.*\\.\\.symbol\\..*){2,2}"
263 if [regexp $want $got
] then {
264 pass
"dlltool -p (import name leading underscore)"
266 fail
"dlltool -p (import name leading underscore)"
269 verbose
"$DLLTOOL --leading-underscore -p prefix -l tmpdir/libalias_u2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" 1
270 catch
"exec $DLLTOOL --leading-underscore -p prefix -l tmpdir/libalias_u2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" err
272 if ![string match
"" $err] then {
275 fail
"dlltool -p (execution) alias-2.def"
279 pass
"dlltool -p (execution leading underscore) alias-2.def"
281 set got
[binutils_run $NM
"tmpdir/libalias_u2.a"]
282 if { "$target_no_leading_underscore" == "yes" } {
283 set want
"00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
285 set want
"00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
288 if [regexp $want $got
] then {
289 pass
"dlltool -p (symbol names leading underscore) alias-2.def"
291 fail
"dlltool -p (symbol names leading underscore) alias-2.def"
294 set got
[binutils_run $OBJDUMP
"-s -j .idata\$6 tmpdir/libalias_u2.a"]
295 set want
"(Contents of section .idata\\\$6:.*\\.\\.something\\..*){2,2}"
297 if [regexp $want $got
] then {
298 pass
"dlltool -p (import name leading underscore) alias-2.def"
300 fail
"dlltool -p (import name leading underscore) alias-2.def"