2 # Copyright (C) 2003, 2004, 2007, 2010 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)
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 # Check multilib support.
18 # Based on a test case from Ralf Corsepius.
20 required
='gcc GNUmake'
25 cat >configure.
in <<'END'
26 AC_INIT([multlib], [1.0])
27 AC_CONFIG_SRCDIR(libfoo/foo.c)
30 AC_CONFIG_FILES([Makefile])
31 AC_CONFIG_SUBDIRS(libfoo)
32 AC_CONFIG_SUBDIRS(libbar)
48 PATH
=`pwd`$PATH_SEPARATOR$PATH
50 cat >Makefile.am
<<'EOF'
52 EXTRA_DIST = config-ml.in symlink-tree
55 # libfoo tests multilib supports when there are no subdirectories
56 # libbar tests multilib supports when there are subdirectories
60 cat >libfoo
/configure.
in <<'END'
62 AC_INIT(libfoo, 0.1, nobody@localhost)
63 AC_CONFIG_SRCDIR(foo.c)
64 # Apparently it doesn't work to have auxdir=.. when
65 # multilib uses symlinked trees.
71 AM_ENABLE_MULTILIB(Makefile,[..])
72 AC_CONFIG_FILES([Makefile])
76 cat >libfoo
/Makefile.am
<<'END'
77 noinst_LIBRARIES = libfoo.a
78 libfoo_a_SOURCES = foo.c
85 cat >libbar
/configure.
in <<'END'
87 AC_INIT(libbar, 0.1, nobody@localhost)
88 # Apparently it doesn't work to have auxdir=.. when
89 # multilib uses symlinked trees.
95 AM_ENABLE_MULTILIB(Makefile,[..])
96 AC_CONFIG_FILES([Makefile sub/Makefile])
100 cat >libbar
/Makefile.am
<<'END'
102 noinst_LIBRARIES = libbar.a
103 libbar_a_SOURCES = bar.c
108 : >libbar
/sub
/Makefile.am
112 cp "$testsrcdir/../lib/config-ml.in" .
113 cp "$testsrcdir/../lib/symlink-tree" .
117 $AUTOMAKE --add-missing
121 $AUTOMAKE --add-missing
125 $AUTOMAKE --add-missing
132 ..
/configure
--enable-multilib CC
=mycc
137 # Check standard builds.
139 # Why to I have to specify --with-target-subdir?
140 .
/configure
--enable-multilib --with-target-subdir=. CC
=mycc