Merge branch 'yacc-quote-fix'
[automake.git] / tests / compile6.test
blob536e34b2613da840d5b3cff5aa0af858157f1ad6
1 #! /bin/sh
2 # Copyright (C) 2010-2012 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Make sure `compile' searches libraries correctly
19 am_create_testdir=empty
20 required=xsi-lib-shell
21 . ./defs || Exit 1
23 get_shell_script compile
25 # Use a dummy cl, since cl isn't readily available on all systems
26 cat >cl <<'END'
27 #! /bin/sh
28 echo "$@"
29 END
31 chmod +x ./cl
33 mkdir syslib
34 :> syslib/foo.lib
36 syslib=`pwd`/syslib
37 LIB=$syslib
38 export LIB
40 mkdir lib
41 :> lib/bar.lib
42 :> lib/bar.dll.lib
44 # Check if compile library search correctly
45 opts=`./compile ./cl foo.c -o foo -Llib -lbar -lfoo`
46 test x"$opts" = x"foo.c -Fefoo lib/bar.dll.lib $syslib/foo.lib -link -LIBPATH:lib"
48 # Check if -static makes compile avoid bar.dll.lib
49 opts=`./compile ./cl foo.c -o foo -Llib -static -lbar -lfoo`
50 test x"$opts" = x"foo.c -Fefoo lib/bar.lib $syslib/foo.lib -link -LIBPATH:lib"
52 :> syslib/bar.lib
53 :> syslib/bar.dll.lib
55 # Check if compile finds bar.dll.lib in syslib
56 opts=`./compile ./cl foo.c -o foo -lbar -lfoo`
57 test x"$opts" = x"foo.c -Fefoo $syslib/bar.dll.lib $syslib/foo.lib"
59 # Check if compile prefers -L over $LIB
60 opts=`./compile ./cl foo.c -o foo -Llib -lbar -lfoo`
61 test x"$opts" = x"foo.c -Fefoo lib/bar.dll.lib $syslib/foo.lib -link -LIBPATH:lib"
63 mkdir lib2
64 :> lib2/bar.dll.lib
66 # Check if compile avoids bar.dll.lib in lib2 when -static
67 opts=`./compile ./cl foo.c -o foo -Llib2 -static -lbar -lfoo`
68 test x"$opts" = x"foo.c -Fefoo $syslib/bar.lib $syslib/foo.lib -link -LIBPATH:lib2"
70 # Check if compile gets two different bar libraries when -static
71 # is added in the middle
72 opts=`./compile ./cl foo.c -o foo -Llib2 -Llib -lbar -static -lbar`
73 test x"$opts" = x"foo.c -Fefoo lib2/bar.dll.lib lib/bar.lib -link -LIBPATH:lib2 -LIBPATH:lib"
75 # Check if compile gets the correct bar.dll.lib
76 opts=`./compile ./cl foo.c -o foo -Llib -Llib2 -lbar -lfoo`
77 test x"$opts" = x"foo.c -Fefoo lib/bar.dll.lib $syslib/foo.lib -link -LIBPATH:lib -LIBPATH:lib2"
79 # Check if compile gets the correct bar.dll.lib
80 opts=`./compile ./cl foo.c -o foo -Llib2 -Llib -lbar -lfoo`
81 test x"$opts" = x"foo.c -Fefoo lib2/bar.dll.lib $syslib/foo.lib -link -LIBPATH:lib2 -LIBPATH:lib"
83 mkdir "sys lib2"
84 :> "sys lib2/foo.dll.lib"
86 syslib2="`pwd`/sys lib2"
87 LIB="$syslib2;$LIB"
89 # Check if compile handles spaces in $LIB and that it prefers the order
90 # in a multi-component $LIB.
91 opts=`./compile ./cl foo.c -o foo -lfoo`
92 test x"$opts" = x"foo.c -Fefoo $syslib2/foo.dll.lib"
94 # Check if compile handles the 2nd directory in a multi-component $LIB.
95 opts=`./compile ./cl foo.c -o foo -static -lfoo`
96 test x"$opts" = x"foo.c -Fefoo $syslib/foo.lib"