]> git.ipfire.org Git - thirdparty/gcc.git/blame - libffi/configure.in
Makefile.am: Add SHmedia support.
[thirdparty/gcc.git] / libffi / configure.in
CommitLineData
63e5e3e0
AG
1dnl Process this with autoconf to create configure
2AC_INIT(fficonfig.h.in)
3AM_CONFIG_HEADER(fficonfig.h)
4
6706f116
AO
5# This works around the fact that libtool configuration may change LD
6# for this particular configuration, but some shells, instead of
7# keeping the changes in LD private, export them just because LD is
8# exported.
9ORIGINAL_LD_FOR_MULTILIBS=$LD
10
3c18f2d1
TT
11dnl Default to --enable-multilib
12AC_ARG_ENABLE(multilib,
13[ --enable-multilib build many library versions (default)],
14[case "${enableval}" in
15 yes) multilib=yes ;;
16 no) multilib=no ;;
17 *) AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
18 esac], [multilib=yes])dnl
19
20dnl We may get other options which we don't document:
21dnl --with-target-subdir, --with-multisrctop, --with-multisubdir
22
23if test "${srcdir}" = "."; then
24 if test "${with_target_subdir}" != "."; then
3123c967 25 libffi_basedir="${with_multisrctop}../"
3c18f2d1 26 else
63b87c2e 27 libffi_basedir="${with_multisrctop}"
3c18f2d1
TT
28 fi
29else
63b87c2e 30 libffi_basedir=
3c18f2d1
TT
31fi
32AC_SUBST(libffi_basedir)
63b87c2e 33AC_CONFIG_AUX_DIR(${libffi_basedir}..)
3c18f2d1 34
63e5e3e0
AG
35AC_CANONICAL_HOST
36
675cdab3
BM
37AM_PROG_LIBTOOL
38
6ba9e3b0 39AM_INIT_AUTOMAKE(libffi,2.00-beta,no-define)
63e5e3e0
AG
40
41AC_EXEEXT
42AM_MAINTAINER_MODE
43
44AC_PROG_CC
45AC_PROG_LIBTOOL
46
47TARGETDIR="unknown"
48case "$host" in
49mips-sgi-irix5.* | mips-sgi-irix6.*) TARGET=MIPS; TARGETDIR=mips;;
bd66587e 50i*86-*-linux*) TARGET=X86; TARGETDIR=x86;;
db459595 51i*86-*-solaris*) TARGET=X86; TARGETDIR=x86;;
63e5e3e0 52i*86-*-beos*) TARGET=X86; TARGETDIR=x86;;
e15a68e7 53i*86-*-freebsd*) TARGET=X86; TARGETDIR=x86;;
320d7e7a 54i*86-*-netbsdelf*) TARGET=X86; TARGETDIR=x86;;
d6c4152a
JB
55i*86-*-win32*) TARGET=X86_WIN32; TARGETDIR=x86;;
56i*86-*-cygwin*) TARGET=X86_WIN32; TARGETDIR=x86;;
57i*86-*-mingw*) TARGET=X86_WIN32; TARGETDIR=x86;;
63e5e3e0 58sparc-sun-4*) TARGET=SPARC; TARGETDIR=sparc;;
d7e2dd2f 59sparc*-sun-*) TARGET=SPARC; TARGETDIR=sparc;;
fad655c8
JT
60sparc-*-linux* | sparc-*-netbsdelf*) TARGET=SPARC; TARGETDIR=sparc;;
61sparc64-*-linux* | sparc64-*-netbsd*) TARGET=SPARC; TARGETDIR=sparc;;
da00eaab 62alpha*-*-linux* | alpha*-*-osf* | alpha*-*-freebsd* | alpha*-*-netbsd*) TARGET=ALPHA; TARGETDIR=alpha;;
dc5de370 63ia64*-*-*) TARGET=IA64; TARGETDIR=ia64;;
63e5e3e0 64m68k-*-linux*) TARGET=M68K; TARGETDIR=m68k;;
5be36a8f
L
65mips64*-*);;
66mips*-*-linux*) TARGET=MIPS_LINUX; TARGETDIR=mips;;
e9b84181 67powerpc*-*-linux* | powerpc-*-sysv*) TARGET=POWERPC; TARGETDIR=powerpc;;
63e5e3e0 68powerpc-*-beos*) TARGET=POWERPC; TARGETDIR=powerpc;;
3c017635 69powerpc-*-darwin*) TARGET=POWERPC_DARWIN; TARGETDIR=powerpc;;
2f4006f8
DE
70powerpc-*-aix*) TARGET=POWERPC_AIX; TARGETDIR=powerpc;;
71rs6000-*-aix*) TARGET=POWERPC_AIX; TARGETDIR=powerpc;;
c5acf51f 72arm*-*-linux-*) TARGET=ARM; TARGETDIR=arm;;
908a31e1 73arm*-*-netbsdelf*) TARGET=ARM; TARGETDIR=arm;;
22bcf65c 74s390-*-linux-*) TARGET=S390; TARGETDIR=s390;;
c4f17c6f 75s390x-*-linux-*) TARGET=S390; TARGETDIR=s390;;
c94974ca 76x86_64-*-linux*) TARGET=X86_64; TARGETDIR=x86;;
f4b2b0d6 77sh-*-linux* | sh[[34]]*-*-linux*) TARGET=SH; TARGETDIR=sh;;
e860ed6d 78sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;;
63e5e3e0
AG
79esac
80
81if test $TARGETDIR = unknown; then
82 AC_ERROR("libffi has not been ported to $host.")
83fi
84
85AM_CONDITIONAL(MIPS_GCC, test ${TARGET}${ac_cv_prog_gcc} = MIPSyes)
86AM_CONDITIONAL(MIPS_SGI, test ${TARGET}${ac_cv_prog_gcc} = MIPSno)
5be36a8f 87AM_CONDITIONAL(MIPS_LINUX, test x$TARGET = xMIPS_LINUX)
63e5e3e0
AG
88AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
89AM_CONDITIONAL(X86, test x$TARGET = xX86)
d6c4152a 90AM_CONDITIONAL(X86_WIN32, test x$TARGET = xX86_WIN32)
63e5e3e0 91AM_CONDITIONAL(ALPHA, test x$TARGET = xALPHA)
dc5de370 92AM_CONDITIONAL(IA64, test x$TARGET = xIA64)
63e5e3e0
AG
93AM_CONDITIONAL(M68K, test x$TARGET = xM68K)
94AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
2f4006f8 95AM_CONDITIONAL(POWERPC_AIX, test x$TARGET = xPOWERPC_AIX)
3c017635 96AM_CONDITIONAL(POWERPC_DARWIN, test x$TARGET = xPOWERPC_DARWIN)
63e5e3e0 97AM_CONDITIONAL(ARM, test x$TARGET = xARM)
22bcf65c 98AM_CONDITIONAL(S390, test x$TARGET = xS390)
c94974ca 99AM_CONDITIONAL(X86_64, test x$TARGET = xX86_64)
ddebdfeb 100AM_CONDITIONAL(SH, test x$TARGET = xSH)
e860ed6d 101AM_CONDITIONAL(SH64, test x$TARGET = xSH64)
63e5e3e0 102
5be36a8f
L
103if test x$TARGET = xMIPS_LINUX; then
104 TARGET=MIPS
105fi
106
63e5e3e0
AG
107AC_HEADER_STDC
108AC_CHECK_FUNCS(memcpy)
109AC_FUNC_ALLOCA
110
111dnl AC_CHECK_SIZEOF(char)
e2f2e70a
AG
112AC_COMPILE_CHECK_SIZEOF(short)
113AC_COMPILE_CHECK_SIZEOF(int)
114AC_COMPILE_CHECK_SIZEOF(long)
115AC_COMPILE_CHECK_SIZEOF(long long)
116AC_COMPILE_CHECK_SIZEOF(float)
117AC_COMPILE_CHECK_SIZEOF(double)
118AC_COMPILE_CHECK_SIZEOF(long double)
119
120AC_COMPILE_CHECK_SIZEOF(void *)
121AC_C_BIGENDIAN_CROSS
63e5e3e0 122
189ab118 123if test x$TARGET = xSPARC; then
5d84cf0b
JJ
124 AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs],
125 libffi_cv_as_sparc_ua_pcrel, [
126 save_CFLAGS="$CFLAGS"
127 save_LDFLAGS="$LDFLAGS"
128 CFLAGS="$CFLAGS -fpic"
129 LDFLAGS="$LDFLAGS -shared"
130 AC_TRY_LINK([asm (".text; foo: nop; .data; .align 4; .byte 0; .uaword %r_disp32(foo); .text");],,
131 [libffi_cv_as_sparc_ua_pcrel=yes],
132 [libffi_cv_as_sparc_ua_pcrel=no])
133 CFLAGS="$save_CFLAGS"
134 LDFLAGS="$save_LDFLAGS"])
135 if test "x$libffi_cv_as_sparc_ua_pcrel" = xyes; then
136 AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
137 [Define if your assembler and linker support unaligned PC relative relocs.])
138 fi
bd19c9f4
JS
139
140 AC_CACHE_CHECK([assembler .register pseudo-op support],
141 libffi_cv_as_register_pseudo_op, [
142 libffi_cv_as_register_pseudo_op=unknown
143 # Check if we have .register
144 AC_TRY_COMPILE([asm (".register %g2, #scratch");],,
145 [libffi_cv_as_register_pseudo_op=yes],
146 [libffi_cv_as_register_pseudo_op=no])
147 ])
148 if test "x$libffi_cv_as_register_pseudo_op" = xyes; then
149 AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1,
150 [Define if your assembler supports .register.])
151 fi
5d84cf0b
JJ
152fi
153
a733b15e
JJ
154AC_CACHE_CHECK([whether .eh_frame section should be read-only],
155 libffi_cv_ro_eh_frame, [
156 libffi_cv_ro_eh_frame=no
157 echo 'extern void foo (void); void bar (void) { foo (); foo (); }' > conftest.c
158 if $CC $CFLAGS -S -fpic -fexceptions -o conftest.s conftest.c > /dev/null 2>&1; then
159 if grep '.section.*eh_frame.*"a"' conftest.s > /dev/null; then
160 libffi_cv_ro_eh_frame=yes
161 elif grep '.section.*eh_frame.*#alloc' conftest.c \
162 | grep -v '#write' > /dev/null; then
163 libffi_cv_ro_eh_frame=yes
164 fi
165 fi
166 rm -f conftest.*
167 ])
168if test "x$libffi_cv_ro_eh_frame" = xyes; then
169 AC_DEFINE(HAVE_RO_EH_FRAME, 1,
170 [Define if .eh_frame sections should be read-only.])
171fi
172
63e5e3e0
AG
173AC_SUBST(TARGET)
174AC_SUBST(TARGETDIR)
175
176AC_SUBST(SHELL)
177
7d45b968
JS
178AC_ARG_ENABLE(debug,
179[ --enable-debug debugging mode],
180 if test "$enable_debug" = "yes"; then
181 AC_DEFINE(FFI_DEBUG)
182 fi)
183
184AC_ARG_ENABLE(structs,
185[ --disable-structs omit code for struct support],
186 if test "$enable_structs" = "no"; then
187 AC_DEFINE(FFI_NO_STRUCTS)
188 fi)
189
190AC_ARG_ENABLE(raw-api,
191[ --disable-raw-api make the raw api unavailable],
192 if test "$enable_raw_api" = "no"; then
193 AC_DEFINE(FFI_NO_RAW_API)
194 fi)
63e5e3e0
AG
195
196AC_ARG_ENABLE(purify-safety,
7d45b968
JS
197[ --enable-purify-safety purify-safe mode],
198 if test "$enable_purify_safety" = "yes"; then
199 AC_DEFINE(USING_PURIFY)
200 fi)
0721f64e 201
0e292c01
AO
202if test -n "$with_cross_host" &&
203 test x"$with_cross_host" != x"no"; then
204 toolexecdir='$(exec_prefix)/$(target_alias)'
205 toolexeclibdir='$(toolexecdir)/lib'
206else
207 toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
208 toolexeclibdir='$(libdir)'
209fi
ff8b9ca8
AS
210multi_os_directory=`$CC -print-multi-os-directory`
211case $multi_os_directory in
212 .) ;; # Avoid trailing /.
213 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
214esac
0e292c01
AO
215AC_SUBST(toolexecdir)
216AC_SUBST(toolexeclibdir)
63e5e3e0 217
3c18f2d1
TT
218if test "${multilib}" = "yes"; then
219 multilib_arg="--enable-multilib"
220else
221 multilib_arg=
222fi
223
224AC_OUTPUT(include/Makefile include/ffi.h Makefile,
225[
226if test -n "$CONFIG_FILES"; then
6706f116 227 LD="${ORIGINAL_LD_FOR_MULTILIBS}"
3123c967 228 ac_file=Makefile . ${srcdir}/${libffi_basedir}../config-ml.in
3c18f2d1
TT
229fi
230],
231srcdir=${srcdir}
232host=${host}
233target=${target}
234with_multisubdir=${with_multisubdir}
235ac_configure_args="${multilib_arg} ${ac_configure_args}"
236CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
237libffi_basedir=${libffi_basedir}
238CC="${CC}"
239DEFS="$DEFS"
3343fdd2 240ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}"
63e5e3e0
AG
241test ! -d include && mkdir include
242test ! -f include/fficonfig.h && cp fficonfig.h include/fficonfig.h
243if cmp -s fficonfig.h include/fficonfig.h 2>/dev/null; then
244 echo fficonfig.h unchanged
245else
246 echo Moving fficonfig.h to include/fficonfig.h
247 cp fficonfig.h include/fficonfig.h
248fi
249)
675cdab3
BM
250
251# Make target subdirectories if required.
3b905056
BM
252test -d src || mkdir src
253test -d src/${TARGETDIR} || mkdir src/${TARGETDIR}