blob: c93d94182ab2e22a843d96941f3509deab6c325e [file] [log] [blame]
Anthony Greenc6dddbd2009-10-04 08:11:33 -04001dnl Process this with autoconf to create configure
2
Anthony Green115ab362009-12-24 00:22:00 -05003AC_PREREQ(2.63)
Anthony Greenc6dddbd2009-10-04 08:11:33 -04004
Anthony Green1fbf9dc2011-02-13 08:06:39 -05005AC_INIT([libffi], [3.0.10rc5], [http://sourceware.org/libffi.html])
Anthony Greenc6dddbd2009-10-04 08:11:33 -04006AC_CONFIG_HEADERS([fficonfig.h])
7
Anthony Greenc6dddbd2009-10-04 08:11:33 -04008AC_CANONICAL_SYSTEM
9target_alias=${target_alias-$host_alias}
10
11. ${srcdir}/configure.host
12
Anthony Green7c7c9f32011-02-12 09:29:29 -050013AX_ENABLE_BUILDDIR
14
Anthony Greenc6dddbd2009-10-04 08:11:33 -040015AM_INIT_AUTOMAKE
16
17# The same as in boehm-gc and libstdc++. Have to borrow it from there.
18# We must force CC to /not/ be precious variables; otherwise
19# the wrong, non-multilib-adjusted value will be used in multilibs.
20# As a side effect, we have to subst CFLAGS ourselves.
Anthony Green00d0b592010-08-05 14:56:53 -040021# Also save and restore CFLAGS, since AC_PROG_CC will come up with
22# defaults of its own if none are provided.
Anthony Greenc6dddbd2009-10-04 08:11:33 -040023
24m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS])
25m4_define([_AC_ARG_VAR_PRECIOUS],[])
Anthony Green00d0b592010-08-05 14:56:53 -040026save_CFLAGS=$CFLAGS
Anthony Greenc6dddbd2009-10-04 08:11:33 -040027AC_PROG_CC
Anthony Green00d0b592010-08-05 14:56:53 -040028CFLAGS=$save_CFLAGS
Anthony Greend22de052009-12-25 02:04:23 -050029m4_undefine([_AC_ARG_VAR_PRECIOUS])
Anthony Green5cbe2052009-10-04 23:53:11 -040030m4_rename([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
Anthony Greenc6dddbd2009-10-04 08:11:33 -040031
32AC_SUBST(CFLAGS)
33
34AM_PROG_AS
35AM_PROG_CC_C_O
36AC_PROG_LIBTOOL
Anthony Green115ab362009-12-24 00:22:00 -050037AC_CONFIG_MACRO_DIR([m4])
Anthony Greenc6dddbd2009-10-04 08:11:33 -040038
Anthony Green7c7c9f32011-02-12 09:29:29 -050039AX_CC_MAXOPT
Anthony Green24b72072011-02-14 15:30:57 -050040AX_CFLAGS_WARN_ALL
Anthony Green7c7c9f32011-02-12 09:29:29 -050041if test "x$GCC" = "xyes"; then
42 CFLAGS="$CFLAGS -fexceptions"
43fi
44
Anthony Greenc6dddbd2009-10-04 08:11:33 -040045AM_MAINTAINER_MODE
46
47AC_CHECK_HEADERS(sys/mman.h)
48AC_CHECK_FUNCS(mmap)
49AC_FUNC_MMAP_BLACKLIST
50
51dnl The -no-testsuite modules omit the test subdir.
52AM_CONDITIONAL(TESTSUBDIR, test -d $srcdir/testsuite)
53
54TARGETDIR="unknown"
55case "$host" in
56 alpha*-*-*)
57 TARGET=ALPHA; TARGETDIR=alpha;
Anthony Green63097412010-05-05 20:14:56 -040058 # Support 128-bit long double, changeable via command-line switch.
Anthony Greenc6dddbd2009-10-04 08:11:33 -040059 HAVE_LONG_DOUBLE='defined(__LONG_DOUBLE_128__)'
60 ;;
61
62 arm*-*-*)
63 TARGET=ARM; TARGETDIR=arm
64 ;;
65
Anthony Green01c78752009-12-26 10:05:18 -050066 amd64-*-freebsd* | amd64-*-openbsd*)
Anthony Greenc6dddbd2009-10-04 08:11:33 -040067 TARGET=X86_64; TARGETDIR=x86
Anthony Green5cbe2052009-10-04 23:53:11 -040068 ;;
69
Anthony Greenc3042af2010-01-01 08:08:02 -050070 amd64-*-freebsd*)
71 TARGET=X86_64; TARGETDIR=x86
72 ;;
73
Anthony Green115ab362009-12-24 00:22:00 -050074 avr32*-*-*)
75 TARGET=AVR32; TARGETDIR=avr32
76 ;;
77
Anthony Greenc6dddbd2009-10-04 08:11:33 -040078 cris-*-*)
79 TARGET=LIBFFI_CRIS; TARGETDIR=cris
80 ;;
81
82 frv-*-*)
83 TARGET=FRV; TARGETDIR=frv
84 ;;
85
86 hppa*-*-linux* | parisc*-*-linux*)
87 TARGET=PA_LINUX; TARGETDIR=pa
88 ;;
89 hppa*64-*-hpux*)
90 TARGET=PA64_HPUX; TARGETDIR=pa
91 ;;
92 hppa*-*-hpux*)
93 TARGET=PA_HPUX; TARGETDIR=pa
94 ;;
95
Anthony Green3425a762009-10-04 23:57:29 -040096 i?86-*-freebsd* | i?86-*-openbsd*)
Anthony Greenc6dddbd2009-10-04 08:11:33 -040097 TARGET=X86_FREEBSD; TARGETDIR=x86
98 ;;
Anthony Green747d6c32011-02-09 14:56:23 -050099 i?86-win32* | i?86-*-cygwin* | i?86-*-mingw* | i?86-*-os2* | i?86-*-interix*)
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400100 TARGET=X86_WIN32; TARGETDIR=x86
Anthony Green0e584392011-02-08 07:52:40 -0500101 # All mingw/cygwin/win32 builds require -no-undefined for sharedlib.
102 # We must also check with_cross_host to decide if this is a native
103 # or cross-build and select where to install dlls appropriately.
104 if test -n "$with_cross_host" &&
105 test x"$with_cross_host" != x"no"; then
106 AM_LTLDFLAGS='-no-undefined -bindir "$(toolexeclibdir)"';
107 else
108 AM_LTLDFLAGS='-no-undefined -bindir "$(bindir)"';
109 fi
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400110 ;;
111 i?86-*-darwin*)
112 TARGET=X86_DARWIN; TARGETDIR=x86
113 ;;
114 i?86-*-solaris2.1[[0-9]]*)
115 TARGET=X86_64; TARGETDIR=x86
116 ;;
117 i?86-*-*)
118 TARGET=X86; TARGETDIR=x86
119 ;;
120
121 ia64*-*-*)
122 TARGET=IA64; TARGETDIR=ia64
123 ;;
124
125 m32r*-*-*)
126 TARGET=M32R; TARGETDIR=m32r
127 ;;
128
129 m68k-*-*)
130 TARGET=M68K; TARGETDIR=m68k
131 ;;
132
Anthony Green3b836242011-02-08 14:28:59 -0500133 mips-sgi-irix5.* | mips-sgi-irix6.* | mips*-*-rtems*)
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400134 TARGET=MIPS; TARGETDIR=mips
135 ;;
136 mips*-*-linux*)
Anthony Green14e2e922009-12-27 21:03:33 -0500137 # Support 128-bit long double for NewABI.
138 HAVE_LONG_DOUBLE='defined(__mips64)'
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400139 TARGET=MIPS; TARGETDIR=mips
140 ;;
141
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400142 powerpc*-*-linux* | powerpc-*-sysv*)
143 TARGET=POWERPC; TARGETDIR=powerpc
144 ;;
145 powerpc-*-beos*)
146 TARGET=POWERPC; TARGETDIR=powerpc
147 ;;
Anthony Greena6e56b92011-02-09 15:00:42 -0500148 powerpc-*-darwin* | powerpc64-*-darwin*)
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400149 TARGET=POWERPC_DARWIN; TARGETDIR=powerpc
150 ;;
151 powerpc-*-aix* | rs6000-*-aix*)
152 TARGET=POWERPC_AIX; TARGETDIR=powerpc
153 ;;
154 powerpc-*-freebsd*)
155 TARGET=POWERPC_FREEBSD; TARGETDIR=powerpc
156 ;;
Anthony Greena6e56b92011-02-09 15:00:42 -0500157 powerpc64-*-freebsd*)
Anthony Green2db72612010-11-21 10:50:56 -0500158 TARGET=POWERPC; TARGETDIR=powerpc
159 ;;
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400160 powerpc*-*-rtems*)
161 TARGET=POWERPC; TARGETDIR=powerpc
162 ;;
163
164 s390-*-* | s390x-*-*)
165 TARGET=S390; TARGETDIR=s390
166 ;;
167
168 sh-*-* | sh[[34]]*-*-*)
169 TARGET=SH; TARGETDIR=sh
170 ;;
171 sh64-*-* | sh5*-*-*)
172 TARGET=SH64; TARGETDIR=sh64
173 ;;
174
175 sparc*-*-*)
176 TARGET=SPARC; TARGETDIR=sparc
177 ;;
178
179 x86_64-*-darwin*)
180 TARGET=X86_DARWIN; TARGETDIR=x86
181 ;;
182
183 x86_64-*-cygwin* | x86_64-*-mingw*)
184 TARGET=X86_WIN64; TARGETDIR=x86
185 ;;
186
187 x86_64-*-*)
188 TARGET=X86_64; TARGETDIR=x86
189 ;;
190esac
191
192AC_SUBST(AM_RUNTESTFLAGS)
Anthony Green1fe3dc72009-12-25 01:39:00 -0500193AC_SUBST(AM_LTLDFLAGS)
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400194
195if test $TARGETDIR = unknown; then
196 AC_MSG_ERROR(["libffi has not been ported to $host."])
197fi
198
199AM_CONDITIONAL(MIPS, test x$TARGET = xMIPS)
200AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
201AM_CONDITIONAL(X86, test x$TARGET = xX86)
202AM_CONDITIONAL(X86_FREEBSD, test x$TARGET = xX86_FREEBSD)
203AM_CONDITIONAL(X86_WIN32, test x$TARGET = xX86_WIN32)
204AM_CONDITIONAL(X86_WIN64, test x$TARGET = xX86_WIN64)
205AM_CONDITIONAL(X86_DARWIN, test x$TARGET = xX86_DARWIN)
206AM_CONDITIONAL(ALPHA, test x$TARGET = xALPHA)
207AM_CONDITIONAL(IA64, test x$TARGET = xIA64)
208AM_CONDITIONAL(M32R, test x$TARGET = xM32R)
209AM_CONDITIONAL(M68K, test x$TARGET = xM68K)
Anthony Green3f5b1372010-07-12 14:39:18 -0400210AM_CONDITIONAL(MOXIE, test x$TARGET = xMOXIE)
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400211AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
212AM_CONDITIONAL(POWERPC_AIX, test x$TARGET = xPOWERPC_AIX)
213AM_CONDITIONAL(POWERPC_DARWIN, test x$TARGET = xPOWERPC_DARWIN)
214AM_CONDITIONAL(POWERPC_FREEBSD, test x$TARGET = xPOWERPC_FREEBSD)
215AM_CONDITIONAL(ARM, test x$TARGET = xARM)
Anthony Green2340e7a2009-10-04 23:53:17 -0400216AM_CONDITIONAL(AVR32, test x$TARGET = xAVR32)
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400217AM_CONDITIONAL(LIBFFI_CRIS, test x$TARGET = xLIBFFI_CRIS)
218AM_CONDITIONAL(FRV, test x$TARGET = xFRV)
219AM_CONDITIONAL(S390, test x$TARGET = xS390)
220AM_CONDITIONAL(X86_64, test x$TARGET = xX86_64)
221AM_CONDITIONAL(SH, test x$TARGET = xSH)
222AM_CONDITIONAL(SH64, test x$TARGET = xSH64)
223AM_CONDITIONAL(PA_LINUX, test x$TARGET = xPA_LINUX)
224AM_CONDITIONAL(PA_HPUX, test x$TARGET = xPA_HPUX)
225AM_CONDITIONAL(PA64_HPUX, test x$TARGET = xPA64_HPUX)
226
227AC_HEADER_STDC
228AC_CHECK_FUNCS(memcpy)
229AC_FUNC_ALLOCA
230
231AC_CHECK_SIZEOF(double)
232AC_CHECK_SIZEOF(long double)
233
234# Also AC_SUBST this variable for ffi.h.
235if test -z "$HAVE_LONG_DOUBLE"; then
236 HAVE_LONG_DOUBLE=0
237 if test $ac_cv_sizeof_double != $ac_cv_sizeof_long_double; then
238 if test $ac_cv_sizeof_long_double != 0; then
239 HAVE_LONG_DOUBLE=1
240 AC_DEFINE(HAVE_LONG_DOUBLE, 1, [Define if you have the long double type and it is bigger than a double])
241 fi
242 fi
243fi
244AC_SUBST(HAVE_LONG_DOUBLE)
245
246AC_C_BIGENDIAN
247
248AC_CACHE_CHECK([assembler .cfi pseudo-op support],
249 libffi_cv_as_cfi_pseudo_op, [
250 libffi_cv_as_cfi_pseudo_op=unknown
251 AC_TRY_COMPILE([asm (".cfi_startproc\n\t.cfi_endproc");],,
252 [libffi_cv_as_cfi_pseudo_op=yes],
253 [libffi_cv_as_cfi_pseudo_op=no])
254])
255if test "x$libffi_cv_as_cfi_pseudo_op" = xyes; then
256 AC_DEFINE(HAVE_AS_CFI_PSEUDO_OP, 1,
257 [Define if your assembler supports .cfi_* directives.])
258fi
259
260if test x$TARGET = xSPARC; then
261 AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs],
262 libffi_cv_as_sparc_ua_pcrel, [
263 save_CFLAGS="$CFLAGS"
264 save_LDFLAGS="$LDFLAGS"
265 CFLAGS="$CFLAGS -fpic"
266 LDFLAGS="$LDFLAGS -shared"
267 AC_TRY_LINK([asm (".text; foo: nop; .data; .align 4; .byte 0; .uaword %r_disp32(foo); .text");],,
268 [libffi_cv_as_sparc_ua_pcrel=yes],
269 [libffi_cv_as_sparc_ua_pcrel=no])
270 CFLAGS="$save_CFLAGS"
271 LDFLAGS="$save_LDFLAGS"])
272 if test "x$libffi_cv_as_sparc_ua_pcrel" = xyes; then
273 AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
274 [Define if your assembler and linker support unaligned PC relative relocs.])
275 fi
276
277 AC_CACHE_CHECK([assembler .register pseudo-op support],
278 libffi_cv_as_register_pseudo_op, [
279 libffi_cv_as_register_pseudo_op=unknown
280 # Check if we have .register
281 AC_TRY_COMPILE([asm (".register %g2, #scratch");],,
282 [libffi_cv_as_register_pseudo_op=yes],
283 [libffi_cv_as_register_pseudo_op=no])
284 ])
285 if test "x$libffi_cv_as_register_pseudo_op" = xyes; then
286 AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1,
287 [Define if your assembler supports .register.])
288 fi
289fi
290
291if test x$TARGET = xX86 || test x$TARGET = xX86_WIN32 || test x$TARGET = xX86_64; then
292 AC_CACHE_CHECK([assembler supports pc related relocs],
293 libffi_cv_as_x86_pcrel, [
Anthony Greened2c5182011-02-08 10:10:07 -0500294 libffi_cv_as_x86_pcrel=no
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400295 echo '.text; foo: nop; .data; .long foo-.; .text' > conftest.s
Anthony Greened2c5182011-02-08 10:10:07 -0500296 if $CC $CFLAGS -c conftest.s > /dev/null; then
297 libffi_cv_as_x86_pcrel=yes
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400298 fi
299 ])
300 if test "x$libffi_cv_as_x86_pcrel" = xyes; then
301 AC_DEFINE(HAVE_AS_X86_PCREL, 1,
302 [Define if your assembler supports PC relative relocs.])
303 fi
Anthony Green3f5b1372010-07-12 14:39:18 -0400304
305 AC_CACHE_CHECK([assembler .ascii pseudo-op support],
306 libffi_cv_as_ascii_pseudo_op, [
307 libffi_cv_as_ascii_pseudo_op=unknown
308 # Check if we have .ascii
Anthony Green0e584392011-02-08 07:52:40 -0500309 AC_TRY_COMPILE([asm (".ascii \\"string\\"");],,
Anthony Green3f5b1372010-07-12 14:39:18 -0400310 [libffi_cv_as_ascii_pseudo_op=yes],
311 [libffi_cv_as_ascii_pseudo_op=no])
312 ])
313 if test "x$libffi_cv_as_ascii_pseudo_op" = xyes; then
314 AC_DEFINE(HAVE_AS_ASCII_PSEUDO_OP, 1,
315 [Define if your assembler supports .ascii.])
316 fi
317
318 AC_CACHE_CHECK([assembler .string pseudo-op support],
319 libffi_cv_as_string_pseudo_op, [
320 libffi_cv_as_string_pseudo_op=unknown
321 # Check if we have .string
Anthony Green0e584392011-02-08 07:52:40 -0500322 AC_TRY_COMPILE([asm (".string \\"string\\"");],,
Anthony Green3f5b1372010-07-12 14:39:18 -0400323 [libffi_cv_as_string_pseudo_op=yes],
324 [libffi_cv_as_string_pseudo_op=no])
325 ])
326 if test "x$libffi_cv_as_string_pseudo_op" = xyes; then
327 AC_DEFINE(HAVE_AS_STRING_PSEUDO_OP, 1,
328 [Define if your assembler supports .string.])
329 fi
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400330fi
331
Anthony Green5b9cd522010-11-22 15:19:57 -0500332if test x$TARGET = xX86_WIN64; then
333 LT_SYS_SYMBOL_USCORE
334 if test "x$sys_symbol_underscore" = xyes; then
335 AC_DEFINE(SYMBOL_UNDERSCORE, 1, [Define if symbols are underscored.])
336 fi
337fi
338
Anthony Green11062292011-02-08 19:20:09 -0500339
Landon Fuller19afda02010-09-19 14:20:52 -0700340FFI_EXEC_TRAMPOLINE_TABLE=0
Anthony Greene4a91de2009-10-05 00:16:17 -0400341case "$target" in
Landon Fuller1ac92cc2010-09-18 18:08:14 -0700342 *arm*-apple-darwin*)
Landon Fullerc71480e2010-09-19 09:02:05 -0700343 FFI_EXEC_TRAMPOLINE_TABLE=1
Landon Fuller1ac92cc2010-09-18 18:08:14 -0700344 AC_DEFINE(FFI_EXEC_TRAMPOLINE_TABLE, 1,
345 [Cannot use PROT_EXEC on this target, so, we revert to
346 alternative means])
347 ;;
Anthony Green0cfe60e2009-12-29 10:06:04 -0500348 *-apple-darwin10* | *-*-freebsd* | *-*-openbsd* | *-pc-solaris*)
349 AC_DEFINE(FFI_MMAP_EXEC_WRIT, 1,
350 [Cannot use malloc on this target, so, we revert to
351 alternative means])
352 ;;
353esac
Landon Fullerc71480e2010-09-19 09:02:05 -0700354AM_CONDITIONAL(FFI_EXEC_TRAMPOLINE_TABLE, test x$FFI_EXEC_TRAMPOLINE_TABLE = x1)
Landon Fuller19afda02010-09-19 14:20:52 -0700355AC_SUBST(FFI_EXEC_TRAMPOLINE_TABLE)
Anthony Greene4a91de2009-10-05 00:16:17 -0400356
Anthony Green3f5b1372010-07-12 14:39:18 -0400357if test x$TARGET = xX86_64; then
358 AC_CACHE_CHECK([assembler supports unwind section type],
359 libffi_cv_as_x86_64_unwind_section_type, [
360 libffi_cv_as_x86_64_unwind_section_type=yes
361 echo '.section .eh_frame,"a",@unwind' > conftest.s
362 if $CC $CFLAGS -c conftest.s 2>&1 | grep -i warning > /dev/null; then
363 libffi_cv_as_x86_64_unwind_section_type=no
364 fi
365 ])
366 if test "x$libffi_cv_as_x86_64_unwind_section_type" = xyes; then
367 AC_DEFINE(HAVE_AS_X86_64_UNWIND_SECTION_TYPE, 1,
368 [Define if your assembler supports unwind section type.])
369 fi
370fi
371
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400372AC_CACHE_CHECK([whether .eh_frame section should be read-only],
373 libffi_cv_ro_eh_frame, [
374 libffi_cv_ro_eh_frame=no
375 echo 'extern void foo (void); void bar (void) { foo (); foo (); }' > conftest.c
376 if $CC $CFLAGS -S -fpic -fexceptions -o conftest.s conftest.c > /dev/null 2>&1; then
377 if grep '.section.*eh_frame.*"a"' conftest.s > /dev/null; then
378 libffi_cv_ro_eh_frame=yes
379 elif grep '.section.*eh_frame.*#alloc' conftest.c \
380 | grep -v '#write' > /dev/null; then
381 libffi_cv_ro_eh_frame=yes
382 fi
383 fi
384 rm -f conftest.*
385 ])
386if test "x$libffi_cv_ro_eh_frame" = xyes; then
387 AC_DEFINE(HAVE_RO_EH_FRAME, 1,
388 [Define if .eh_frame sections should be read-only.])
389 AC_DEFINE(EH_FRAME_FLAGS, "a",
390 [Define to the flags needed for the .section .eh_frame directive.])
391else
392 AC_DEFINE(EH_FRAME_FLAGS, "aw",
393 [Define to the flags needed for the .section .eh_frame directive.])
394fi
395
396AC_CACHE_CHECK([for __attribute__((visibility("hidden")))],
397 libffi_cv_hidden_visibility_attribute, [
398 echo 'int __attribute__ ((visibility ("hidden"))) foo (void) { return 1; }' > conftest.c
399 libffi_cv_hidden_visibility_attribute=no
400 if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
401 if grep '\.hidden.*foo' conftest.s >/dev/null; then
402 libffi_cv_hidden_visibility_attribute=yes
403 fi
404 fi
405 rm -f conftest.*
406 ])
407if test $libffi_cv_hidden_visibility_attribute = yes; then
408 AC_DEFINE(HAVE_HIDDEN_VISIBILITY_ATTRIBUTE, 1,
409 [Define if __attribute__((visibility("hidden"))) is supported.])
410fi
411
412AH_BOTTOM([
413#ifdef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
414#ifdef LIBFFI_ASM
415#define FFI_HIDDEN(name) .hidden name
416#else
417#define FFI_HIDDEN __attribute__ ((visibility ("hidden")))
418#endif
419#else
420#ifdef LIBFFI_ASM
421#define FFI_HIDDEN(name)
422#else
423#define FFI_HIDDEN
424#endif
425#endif
426])
427
428AC_SUBST(TARGET)
429AC_SUBST(TARGETDIR)
430
431AC_SUBST(SHELL)
432
433AC_ARG_ENABLE(debug,
434[ --enable-debug debugging mode],
435 if test "$enable_debug" = "yes"; then
436 AC_DEFINE(FFI_DEBUG, 1, [Define this if you want extra debugging.])
437 fi)
Anthony Green00d0b592010-08-05 14:56:53 -0400438AM_CONDITIONAL(FFI_DEBUG, test "$enable_debug" = "yes")
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400439
440AC_ARG_ENABLE(structs,
441[ --disable-structs omit code for struct support],
442 if test "$enable_structs" = "no"; then
443 AC_DEFINE(FFI_NO_STRUCTS, 1, [Define this is you do not want support for aggregate types.])
444 fi)
445
446AC_ARG_ENABLE(raw-api,
447[ --disable-raw-api make the raw api unavailable],
448 if test "$enable_raw_api" = "no"; then
449 AC_DEFINE(FFI_NO_RAW_API, 1, [Define this is you do not want support for the raw API.])
450 fi)
451
452AC_ARG_ENABLE(purify-safety,
453[ --enable-purify-safety purify-safe mode],
454 if test "$enable_purify_safety" = "yes"; then
455 AC_DEFINE(USING_PURIFY, 1, [Define this if you are using Purify and want to suppress spurious messages.])
456 fi)
457
458if test -n "$with_cross_host" &&
459 test x"$with_cross_host" != x"no"; then
460 toolexecdir='$(exec_prefix)/$(target_alias)'
461 toolexeclibdir='$(toolexecdir)/lib'
462else
463 toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
464 toolexeclibdir='$(libdir)'
465fi
466multi_os_directory=`$CC -print-multi-os-directory`
467case $multi_os_directory in
468 .) ;; # Avoid trailing /.
469 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
470esac
471AC_SUBST(toolexecdir)
472AC_SUBST(toolexeclibdir)
473
474if test "${multilib}" = "yes"; then
475 multilib_arg="--enable-multilib"
476else
477 multilib_arg=
478fi
479
480AC_CONFIG_COMMANDS(include, [test -d include || mkdir include])
481AC_CONFIG_COMMANDS(src, [
482test -d src || mkdir src
483test -d src/$TARGETDIR || mkdir src/$TARGETDIR
484], [TARGETDIR="$TARGETDIR"])
485
486AC_CONFIG_LINKS(include/ffitarget.h:src/$TARGETDIR/ffitarget.h)
487
Anthony Green5cbe2052009-10-04 23:53:11 -0400488AC_CONFIG_FILES(include/Makefile include/ffi.h Makefile testsuite/Makefile man/Makefile libffi.pc)
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400489
490AC_OUTPUT