dladdr shim for gmodule; try to enable crash reporter on AIX (#15808)
[mono-project.git] / configure.ac
blobd47bc18d90f3ec7ea91e65c388677315c5eda2ba
1 # Process this file with autoconf to produce a configure script.
2 #AC_PREREQ([2.62])
4 # This line is parsed by tools besides autoconf, such as msvc/mono.winconfig.targets.
5 # It should remain in the format they expect.
7 AC_INIT(mono, [6.9.0],
8         [https://github.com/mono/mono/issues/new])
10 AC_CONFIG_SRCDIR([README.md])
11 AC_CONFIG_MACRO_DIR([m4])
13 AC_CANONICAL_SYSTEM
14 AC_CANONICAL_HOST
16 # Gross hack to enable 'make dist' on automake 1.9+tar 1.14.
17 # The extra brackets are to foil regex-based scans.
18 m4_ifdef([_A][M_PROG_TAR],[_A][M_SET_OPTION([tar-ustar])])
20 AM_INIT_AUTOMAKE([1.9 dist-xz tar-ustar no-dist-gzip foreign]
21                  m4_esyscmd([case `automake --version | head -n 1` in    # parallel-tests is default in automake 1.13+, we need to explicitly enable it
22                              *1.11*|*1.12*) echo parallel-tests;;        # for 1.11 and 1.12 but not below as those versions don't recognize the flag
23                              esac]))                                     # TODO: remove this hack once we require automake 1.11+
25 AC_CONFIG_HEADERS([config.h])
26 AM_MAINTAINER_MODE
27 m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS], AM_EXTRA_RECURSIVE_TARGETS([test]))
28 m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS], AM_EXTRA_RECURSIVE_TARGETS([test-bundle]))
30 API_VER=2.0
31 AC_SUBST(API_VER)
33 AC_PROG_LN_S
35 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
37 MONO_VERSION_MAJOR=`echo $VERSION | cut -d . -f 1`
38 MONO_VERSION_MINOR=`echo $VERSION | cut -d . -f 2`
39 MONO_VERSION_BUILD=`echo $VERSION | cut -d . -f 3`
42 # This is the version of the corlib-runtime interface. When
43 # making changes to this interface (by changing the layout
44 # of classes the runtime knows about, changing icall signature or
45 # semantics etc), change this variable.
47 # This must be unique relative to corlib interface and semantics.
49 # If you change corlib such that a runtime change is required, or
50 # vice versa, change this string. Examples include removing icalls,
51 # adding icalls, changing icall signatures, and changing type layouts
52 # that both sides know.
54 # It is an arbitrary string and should be parsed as such.
55 # A guid works and is encouraged.
57 # Generate it with uuidgen. For example:
58 # perl -pi.bak -e "s/^MONO_CORLIB_VERSION=\S+/MONO_CORLIB_VERSION=`uuidgen`/" configure.ac
60 # There is no ordering of corlib versions, no old or new,
61 # an exact match is required between corlib and runtime.
63 # This line is parsed by tools besides autoconf, such as msvc/mono.winconfig.targets.
64 # It should remain in the format they expect.
66 MONO_CORLIB_VERSION=7b616e7f-0b14-48da-9d67-9446aad4fc5e
69 # Put a quoted #define in config.h.
70 # Substitute @MONO_CORLIB_VERSION@ unquoted.
72 AC_DEFINE_UNQUOTED(MONO_CORLIB_VERSION,"$MONO_CORLIB_VERSION",[Version of the corlib-runtime interface])
73 AC_SUBST(MONO_CORLIB_VERSION)
75 case $host_os in
76 *cygwin* )
77                  echo "Run configure using ./configure --host=i686-w64-mingw32 or --host=x86_64-w64-mingw32"
78                  exit 1
79 esac
81 # In case of cygwin, override LN_S, irrespective of what it determines.
82 # The build uses cygwin, but the actual runtime doesn't.
83 case $host_os in
84 *cygwin* ) LN_S='cp -p';;
85 esac
88 # libgc defaults
90 libgc_configure_args=
92 # These variables are the CPPFLAGS/CFLAGS passed to libgc's configure
93 # libgc should inherit the original CFLAGS/CPPFLAGS passed to configure, i.e. -O0
94 CPPFLAGS_FOR_LIBGC=$CPPFLAGS
95 CFLAGS_FOR_LIBGC=$CFLAGS
96 CPPFLAGS_FOR_BTLS=$CPPFLAGS
97 CFLAGS_FOR_BTLS=$CFLAGS
99 # libgc uses some deprecated APIs
100 CFLAGS_FOR_LIBGC="$CFLAGS -Wno-deprecated-declarations"
103 # These are the flags that need to be stored in the mono.pc file for 
104 # compiling code that will embed Mono
106 libmono_cflags=""
107 libmono_ldflags=""
108 AC_SUBST(libmono_cflags)
109 AC_SUBST(libmono_ldflags)
111 # Variable to have relocatable .pc files (lib, or lib64)
112 # realpath isn't always available, and requires that all but the tip of the provided
113 # path exists. Fall back to the old behaviour, but realpath allows depth >1
114 # e.g. Debian puts Mono in /usr/bin and libs in /usr/lib/x86_64-linux-gnu/ which is
115 # too deep for the old method to work
116 reloc_libdir=`realpath --relative-to=${prefix} ${libdir} 2> /dev/null || basename ${libdir}`
117 AC_SUBST(reloc_libdir)
119 # Set to yes if Unix sockets cannot be created in an anonymous namespace
120 need_link_unlink=no
122 #Set to extra linker flags to be passed to the runtime binaries (mono /mono-sgen)
123 extra_runtime_ldflags=""
125 # Thread configuration inspired by sleepycat's db
126 AC_MSG_CHECKING([host platform characteristics])
128 libgc_threads=no
129 has_dtrace=no
130 parallel_mark=yes
131 ikvm_native=yes
133 host_win32=no
134 target_win32=no
135 target_wasm=no
136 platform_android=no
137 platform_tizen=no
138 platform_ios=no
139 host_darwin=no
140 host_linux=no
141 build_darwin=no
143 case "$host" in
144         wasm32*)
145                 CFLAGS="$CFLAGS -D_REENTRANT -D_GNU_SOURCE -s WASM=1"
146                 CPPFLAGS="$CPPFLAGS -D_REENTRANT -DUSE_MMAP -s WASM=1"
147                 libgc_threads=pthreads
148                 platform_wasm=yes
149                 # FIXME:
150                 RID="osx-x64"
151                 COREARCH="x64"
152                 CORETARGETS="-p:TargetsUnix=true -p:TargetsOSX=true"
153                 build_darwin=yes
154                 ;;
155         *-mingw*|*-*-cygwin*)
156                 AC_DEFINE(DISABLE_PORTABILITY,1,[Disable the io-portability layer])
157                 AC_DEFINE(HOST_NO_SYMLINKS,1,[This platform does not support symlinks])
158                 host_win32=yes
159                 mono_cv_clang=no
160                 if test "x$cross_compiling" = "xno"; then
161                         if test "x$host" = "x$build" -a "x$host" = "x$target"; then
162                                 target_win32=yes
163                         fi
164                 else
165                         if test "x$host" = "x$target"; then
166                                 target_win32=yes
167                         fi
168                 fi
169                 HOST_CC="gcc"
170                 RID="win-x86"
171                 CORETARGETS="-p:TargetsWindows=true"
172                 COREARCH="x86"
173                 # Boehm not supported on 64-bit Windows.
174                 case "$host" in
175                 x86_64-*-* | amd64-*-*)
176                         support_boehm=no
177                         with_gc=sgen
178                         RID="win-x64"
179                         COREARCH="x64"
180                         ;;
181                 esac
183                 # Windows 7 or later is required
184                 WIN32_CPPFLAGS="-DWINVER=0x0601 -D_WIN32_WINNT=0x0601 -D_WIN32_IE=0x0501 -D_UNICODE -DUNICODE -DWIN32_THREADS -DFD_SETSIZE=1024"
185                 CPPFLAGS="$CPPFLAGS $WIN32_CPPFLAGS"
186                 WIN32_LDFLAGS="-lbcrypt -lmswsock -lws2_32 -lole32 -loleaut32 -lpsapi -lversion -ladvapi32 -lwinmm -lkernel32 -liphlpapi -static-libgcc"
187                 LDFLAGS="$LDFLAGS $WIN32_LDFLAGS"
188                 libmono_cflags="-mms-bitfields -mwindows"
189                 libmono_ldflags="-mms-bitfields -mwindows"
190                 libgc_threads=win32
191                 with_sigaltstack=no
192                 with_tls=pthread
193                 with_sgen_default_concurrent=yes
194                 LN_S=cp
196                 # This forces libgc to use the DllMain based thread registration code on win32
197                 libgc_configure_args="$libgc_configure_args --enable-win32-dllmain=yes"
198                 ;;
199         *-*-*netbsd*)
200                 CPPFLAGS="$CPPFLAGS -D_REENTRANT -DGC_NETBSD_THREADS -D_GNU_SOURCE"
201                 libmono_cflags="-D_REENTRANT"
202                 LDFLAGS="$LDFLAGS -pthread"
203                 CPPFLAGS="$CPPFLAGS -DHOST_BSD"
204                 libmono_ldflags="-pthread"
205                 need_link_unlink=yes
206                 libgc_threads=pthreads
207                 with_sigaltstack=no
208                 use_sigposix=yes
209                 with_sgen_default_concurrent=yes
210                 ;;
211         *-*-kfreebsd*-gnu)
212                 CPPFLAGS="$CPPFLAGS -DGC_FREEBSD_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP -DUSE_MUNMAP -DTHREAD_LOCAL_ALLOC -pthread"
213                 libmono_cflags="-D_REENTRANT -DTHREAD_LOCAL_ALLOC -pthread"
214                 libmono_ldflags="-lpthread -pthread"
215                 libgc_threads=pthreads
216                 need_link_unlink=yes
217                 with_sigaltstack=no
218                 use_sigposix=yes
219                 with_sgen_default_concurrent=yes
220                 ;;
221         *-*-*freebsd*)
222                 dnl For close_my_fds
223                 LDFLAGS="$LDFLAGS -lutil"
224                 if test "x$PTHREAD_CFLAGS" = "x"; then
225                         CPPFLAGS="$CPPFLAGS -DGC_FREEBSD_THREADS"
226                         libmono_cflags=
227                 else
228                         CPPFLAGS="$CPPFLAGS $PTHREAD_CFLAGS -DGC_FREEBSD_THREADS"
229                         libmono_cflags="$PTHREAD_CFLAGS"
230                 fi
231                 if test "x$PTHREAD_LIBS" = "x"; then
232                         LDFLAGS="$LDFLAGS -pthread -L/usr/local/lib"
233                         libmono_ldflags="-pthread"
234                 else
235                         LDFLAGS="$LDFLAGS $PTHREAD_LIBS -L/usr/local/lib"
236                         libmono_ldflags="$PTHREAD_LIBS"
237                 fi
238                 CPPFLAGS="$CPPFLAGS -DHOST_BSD -D_WITH_GETLINE"
239                 need_link_unlink=yes
240                 AC_DEFINE(PTHREAD_POINTER_ID, 1, [pthread is a pointer])
241                 libgc_threads=pthreads
242                 use_sigposix=yes
243                 has_dtrace=yes
244                 case "$host" in
245                 aarch64-*)
246                         support_boehm=no
247                         with_gc=sgen
248                         ;;
249                 riscv*)
250                         support_boehm=no
251                         with_gc=sgen
252                         ;;
253                 esac
254                 with_sgen_default_concurrent=yes
255                 ;;
256         *-*-*openbsd*)
257                 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_OPENBSD_THREADS -DHOST_BSD -D_REENTRANT -DUSE_MMAP"
258                 LDFLAGS="${LDFLAGS} -Wl,-zwxneeded"
259                 if test "x$disable_munmap" != "xyes"; then
260                 CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
261                 fi
262                 libmono_cflags="-D_THREAD_SAFE -D_REENTRANT"
263                 LDFLAGS="$LDFLAGS -pthread"
264                 need_link_unlink=yes
265                 AC_DEFINE(PTHREAD_POINTER_ID)
266                 libgc_threads=pthreads
267                 with_tls=pthread
268                 with_sigaltstack=no
269                 use_sigposix=yes
270                 with_sgen_default_concurrent=yes
271                 ;;
272         *-*-linux-android*)
273                 platform_android=yes
274                 AC_DEFINE(HOST_ANDROID,1,[Targeting the Android platform])
275                 AC_DEFINE(TARGET_ANDROID,1,[Targeting the Android platform])
277                 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP"
278                 if test "x$disable_munmap" != "xyes"; then
279                         CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
280                 fi
281                 libmono_cflags="-D_REENTRANT"
282                 libgc_threads=pthreads
283                 use_sigposix=yes
285                 with_tls=pthread
286                 with_sigaltstack=no
287                 with_static_mono=no
289                 # Android doesn't support boehm, as it's missing <link.h>
290                 support_boehm=no
291                 with_gc=sgen
293                 # isinf(3) requires -lm
294                 LDFLAGS="$LDFLAGS -lm"
296                 # Bionic's <pthread.h> sets PTHREAD_STACK_MIN=2*PAGE_SIZE; doesn't define
297                 # PAGE_SIZE; breaks mono/io-layer/collection.c
298                 # Bionic doesn't provide S_IWRITE; breaks io-layer/io.c
299                 CFLAGS="$CFLAGS -DPAGE_SIZE=4096 -DS_IWRITE=S_IWUSR"
300                 CXXFLAGS="$CXXFLAGS -DPAGE_SIZE=4096 -DS_IWRITE=S_IWUSR"
302                 # FIXME? Only if __ANDROID_API__ < 24?
303                 # FILE32API means "long", which is stuck at 32bits for 32bit ABI (64bits for 64bit ABI).
304                 # ABI 24 introduces the "o" for "file offset" variations, which can be widened to 64bits for 32bit ABI (and still 64bits for 64bit).
305                 # Android itself uses FILE32API, and mono should use system zlib on Android anyway.
306                 ZLIB_CFLAGS="$ZLIB_CFLAGS -DUSE_FILE32API"
308                 # to bypass the underscore linker check, can't work when cross-compiling
309                 mono_cv_uscore=yes
310                 mono_cv_clang=no
311                 ;;
312         *-*-linux*)
313                 host_linux=yes
314                 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP"
315                 if test "x$disable_munmap" != "xyes"; then
316                         CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
317                 fi
318                 libmono_cflags="-D_REENTRANT"
319                 libgc_threads=pthreads
320                 CORETARGETS="-p:TargetsUnix=true"
321                 use_sigposix=yes
322                 if test "x$cross_compiling" != "xno"; then
323                         # to bypass the underscore linker check, not
324                         # available during cross-compilation
325                         mono_cv_uscore=no
326                 fi
327                 case "$host" in
328                 *-tizen-linux-*)
329                         platform_tizen=yes
330                         ;;
331                 esac
332                 case "$host" in
333                 ppc64-*)
334                         RID="linux-ppc64"
335                         ;;
336                 ppc64le-*)
337                         RID="linux-ppc64el"
338                         ;;
339                 mipsel-*)
340                         RID="linux-mipsel"
341                         ;;
342                 x86-*)
343                         RID="linux-x86"
344                         COREARCH="x86"
345                         ;;
346                 x86_64-*)
347                         RID="linux-x64"
348                         COREARCH="x64"
349                         ;;
350                 arm-*)
351                         # deal with this in the FPU detection section, since
352                         # we cannot determine FPU from triplet and don't want
353                         # to duplicate the logic
354                         ;;
355                 aarch64-*)
356                         support_boehm=no
357                         with_gc=sgen
358                         RID="linux-arm64"
359                         COREARCH="arm64"
360                         ;;
361                 powerpc*-*-linux*)
362                         # https://bugzilla.novell.com/show_bug.cgi?id=504411
363                         disable_munmap=yes
364                         ;;
365                 riscv*)
366                         support_boehm=no
367                         with_gc=sgen
368                         ;;
369                 esac
370                 with_sgen_default_concurrent=yes
371                 ;;
372         *-*-nacl*)
373                 echo "nacl no longer supported."
374                 exit 1
375                 ;;
376         *-*-hpux*)
377                 CPPFLAGS="$CPPFLAGS -DGC_HPUX_THREADS -D_HPUX_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_REENTRANT"
378                 # +ESdbgasm only valid on bundled cc on RISC
379                 # silently ignored for ia64
380                 if test $GCC != "yes"; then
381                         CFLAGS="$CFLAGS +ESdbgasm"
382                         # Arrange for run-time dereferencing of null
383                         # pointers to produce a SIGSEGV signal.
384                         LDFLAGS="$LDFLAGS -z"
385                 fi
386                 CFLAGS="$CFLAGS +ESdbgasm"
387                 LDFLAGS="$LDFLAGS -z"
388                 libmono_cflags="-D_REENTRANT"
389                 libmono_ldflags="-lpthread"
390                 libgc_threads=pthreads
391                 need_link_unlink=yes
392                 use_sigposix=yes
393                 ;;
394         *-*-solaris*)
395                 CPPFLAGS="$CPPFLAGS -DGC_SOLARIS_THREADS -DGC_SOLARIS_PTHREADS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -DUSE_MMAP -DUSE_MUNMAP -DHOST_SOLARIS"
396                 need_link_unlink=yes
397                 libmono_cflags="-D_REENTRANT"
398                 libgc_threads=pthreads
399                 has_dtrace=yes
400                 use_sigposix=yes
401                 enable_solaris_tar_check=yes
402                 ;;
403         *-*-darwin*)
404                 parallel_mark="Disabled_Currently_Hangs_On_MacOSX"
405                 host_darwin=yes
406                 target_mach=yes
407                 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_MACOSX_THREADS -DUSE_MMAP -DUSE_MUNMAP"
408                 libmono_cflags="-D_THREAD_SAFE"
409                 need_link_unlink=yes
410                 AC_DEFINE(PTHREAD_POINTER_ID)
411                 AC_DEFINE(USE_MACH_SEMA, 1, [...])
412                 CORETARGETS="-p:TargetsUnix=true -p:TargetsOSX=true"
413                 libgc_threads=pthreads
414                 has_dtrace=yes
415                 if test "x$cross_compiling" = "xyes"; then
416                         has_broken_apple_cpp=yes
417                 fi
418                 dnl Snow Leopard is horribly broken -- it reports itself as i386-apple-darwin*, but
419                 dnl its gcc defaults to 64-bit mode.  They have also deprecated the usage of ucontext
420                 dnl we need to set some flags to build our 32-bit binaries on 10.6 properly
421                 case "$host" in
422                         dnl Snow Leopard and newer config.guess reports as this
423                         i*86-*-darwin*)
424                                 BROKEN_DARWIN_FLAGS="-arch i386"
425                                 BROKEN_DARWIN_CPPFLAGS=""
426                                 CPPFLAGS="$CPPFLAGS $BROKEN_DARWIN_CPPFLAGS"
427                                 CFLAGS="$CFLAGS $BROKEN_DARWIN_FLAGS"
428                                 CXXFLAGS="$CXXFLAGS $BROKEN_DARWIN_FLAGS"
429                                 CCASFLAGS="$CCASFLAGS $BROKEN_DARWIN_FLAGS"
430                                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC $BROKEN_DARWIN_CPPFLAGS"
431                                 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC $BROKEN_DARWIN_FLAGS"
432                                 with_sgen_default_concurrent=yes
433                                 RID="osx-x86"
434                                 COREARCH="x86"
435                                 ;;
436                         x*64-*-darwin*)
437                                 with_sgen_default_concurrent=yes
438                                 RID="osx-x64"
439                                 COREARCH="x64"
440                                 ;;
441                         arm*-darwin*)
442                                 platform_ios=yes
443                                 has_dtrace=no
444                                 ;;
445                         aarch64*-darwin*)
446                                 platform_ios=yes
447                                 ;;
448                 esac
449                 ;;
450         *-*-haiku*)
451                 dnl BSD_SOURCE is for getifaddrs
452                 CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE -D_REENTRANT -D_THREAD_SAFE"
453                 libmono_cflags="-D_REENTRANT -D_THREAD_SAFE"
454                 LIBS="$LIBS -lnetwork -ltextencoding"
455                 need_link_unlink=yes
456                 AC_DEFINE(PTHREAD_POINTER_ID)
457                 dnl Haiku does not support static TLS with __thread
458                 with_tls=pthread
459                 libgc_threads=pthreads
460                 use_sigposix=yes
461                 with_sigaltstack=no
462                 ;;
463         *-*-fuchsia*)
464                 AC_DEFINE(DISABLE_PORTABILITY,1,[Disable the io-portability layer])
465                 AC_DEFINE(HOST_FUCHSIA,1,[Targeting the Fuchsia platform])
466                 fuchsia=true
467                 with_tls=pthread
468                 with_sigaltstack=yes
469                 with_static_mono=no
470                 support_boehm=no
471                 with_gc=sgen
472                 mono_cv_uscore=yes
473                 mono_cv_clang=no
474                 ;;
475         *-*-aix*|*-*-os400*)
476                 dnl IMPORTANT: For svr4 sonames on AIX, you should set
477                 dnl `OBJECT_MODE=64` when configuring.
478                 dnl libtool cannot generate functioning svr4 sonames on
479                 dnl 64-bit without it.
480                 dnl Unfortunately, everything is complicated by the fact that
481                 dnl gcc doesn't respect this variable. (otherwise we could set
482                 dnl it for build time for configure and make)
483                 dnl On IBM i PASE using IBM's packages, GCC *does* respect this
484                 dnl variable, and builds are 64-bit by default. svr4 sonames
485                 dnl must still be specified when configuring on i, however.
486                 dnl As such, because Mono doesn't support 32-bit AIX or PASE,
487                 dnl set up a 64-bit build (assming GCC; XLC not supported)
488                 dnl regardless of what variable is used.
489                 case $host_os in
490                         aix*)
491                         if test "x$OBJECT_MODE" = "x64" && test "x$CC" = "x" && test "x$CXX" = "x"; then
492                                 dnl HACK: Set -maix64 at the GCC invocation
493                                 dnl level explicitly to work around the fact
494                                 dnl GCC in default maix32 mode explodes when
495                                 dnl binutils respects OBJECT_MODE.
496                                 dnl When that check occurs, flags are not
497                                 dnl passed to to the compiler, so GCC has no
498                                 dnl chance to change its mode.
499                                 dnl Otherwise, it may enter a state where it
500                                 dnl runs, but uses the libtool "compile"
501                                 dnl wrapper, which subtly breaks other things.
502                                 dnl This should propagate to all uses of CC.
503                                 dnl This is only set if not manually set.
504                                 CC="gcc -maix64"
505                                 CXX="g++ -maix64"
506                                 echo
507                         fi
508                         ;;
509                         dnl Not needed on i because it defaults to 64-bit and
510                         dnl has a GCC smart enough to respect OBJECT_MODE.
511                 esac
512                 dnl We still set this for *FLAGS, however, because we may not
513                 dnl be setting OBJECT_MODE.
514                 LDFLAGS="$LDFLAGS -maix64"
515                 CPPFLAGS="$CPPFLAGS -maix64 -DGC_AIX_THREADS -D_ALL_SOURCE -D_THREAD_SAFE -D_LARGE_FILES -D_REENTRANT"
516                 libmono_cflags="-D_THREAD_SAFE -D_REENTRANT"
517                 dnl Would you believe GNU nm doesn't know how to process AIX libraries?
518                 dnl Hardcode IBM binutils in case GNU ones end up on our path. Also
519                 dnl specifiy 64-bit mode for tools. (OBJECT_MODE is finicky with cmake.)
520                 dnl XXX: We should stop the hardcoding madness
521                 AR="/usr/bin/ar -X64"
522                 NM="/usr/bin/nm -X64"
523                 STRIP="/usr/bin/strip -X64"
524                 RANLIB="/usr/bin/ranlib -X64"
525                 dnl SGen is the future (changes to Boehm support code would be
526                 dnl required if you wish to re-enable Boehm)
527                 support_boehm=no
528                 with_gc=sgen
529                 need_link_unlink=yes
530                 use_sigposix=yes
531                 dnl Similar limitation to macOS about the first thread and the
532                 dnl guard page, except sometimes the runtime hangs. Disable for
533                 dnl now until cause can be determined or it seems OK enough.
534                 with_sigaltstack=no
535                 dnl use pthread TLS, __thread has issues with the compiler flags we use
536                 with_tls=pthread
537                 dnl ppc Linux is the same? test further
538                 disable_munmap=yes
539                 RID="aix-ppc64"
540                 CORETARGETS="-p:TargetsUnix=true"
541                 ;;
542         *)
543                 AC_MSG_WARN([*** Please add $host to configure.ac checks!])
544                 ;;
545 esac
547 AC_MSG_RESULT(ok)
549 if test x$need_link_unlink = xyes; then
550    AC_DEFINE(NEED_LINK_UNLINK, 1, [Define if Unix sockets cannot be created in an anonymous namespace])
553 if test x$host_win32 = xyes; then
554    AC_DEFINE(HOST_WIN32, 1, [Host Platform is Win32])
557 if test x$target_win32 = xyes; then
558    AC_DEFINE(TARGET_WIN32, 1, [Target Platform is Win32])
561 if test x$host_darwin = xyes; then
562    AC_DEFINE(HOST_DARWIN, 1, [Host Platform is Darwin])
565 # Defined for all targets/platforms using classic Windows API support.
566 AC_DEFINE(HAVE_CLASSIC_WINAPI_SUPPORT, 1, [Use classic Windows API support])
567 AC_DEFINE(HAVE_UWP_WINAPI_SUPPORT, 0, [Don't use UWP Windows API support])
569 AC_SUBST(extra_runtime_ldflags)
570 AM_CONDITIONAL(HOST_WIN32, test x$host_win32 = xyes)
571 AM_CONDITIONAL(TARGET_WIN32, test x$target_win32 = xyes)
572 AM_CONDITIONAL(HOST_LINUX, echo x$target_os | grep -q linux)
573 AM_CONDITIONAL(HOST_DARWIN, test x$host_darwin = xyes)
574 AM_CONDITIONAL(HOST_SIGPOSIX, test x$use_sigposix = xyes)
575 AM_CONDITIONAL(HOST_ANDROID, test x$platform_android = xyes)
576 AM_CONDITIONAL(HOST_TIZEN, test x$platform_tizen = xyes)
577 AM_CONDITIONAL(HOST_IOS, test x$platform_ios = xyes)
578 AM_CONDITIONAL(HOST_WASM, test x$platform_wasm = xyes)
580 if test -z "$HOST_DARWIN_TRUE"; then :
581 PLATFORM_AOT_SUFFIX=.dylib
582 PLATFORM_AOT_PREFIX=lib
585 if test -z "$HOST_LINUX_TRUE"; then :
586 PLATFORM_AOT_SUFFIX=.so
587 PLATFORM_AOT_PREFIX=lib
590 if test -z "$HOST_WIN32_TRUE"; then :
591 PLATFORM_AOT_SUFFIX=.dll
592 PLATFORM_AOT_PREFIX=
595 AC_SUBST(PLATFORM_AOT_SUFFIX)
596 AC_SUBST(PLATFORM_AOT_PREFIX)
598 if test -z "$HOST_WASM_TRUE"; then :
599 AC_DEFINE(HAVE_UTIME)
600 AC_DEFINE(HAVE_UTIMES)
603 ## PLATFORM_AOT_SUFFIX not so simple for windows :-)
605 AC_CHECK_TOOL(CC, gcc, gcc)
606 AC_PROG_CC
607 AC_CHECK_TOOL(CXX, g++, g++)
608 AC_PROG_CXX
609 AM_PROG_AS
610 AC_PROG_INSTALL
611 AC_PROG_AWK
612 AM_PROG_CC_C_O
613 dnl We should use AM_PROG_AS, but it's not available on automake/aclocal 1.4
614 : ${CCAS='$(CC)'}
615 # Set ASFLAGS if not already set.
616 : ${CCASFLAGS='$(CFLAGS)'}
617 AC_SUBST(CCAS)
618 AC_SUBST(CCASFLAGS)
620 if test "x$CXX" = "xno"; then
621         AC_MSG_ERROR([No c++ compiler found. You need to install a c++ compiler])
624 # AC_PROG_CXX helpfully sets CXX to g++ even if no c++ compiler is found so check
625 # GXX instead. See http://lists.gnu.org/archive/html/bug-autoconf/2002-04/msg00056.html
626 if test "x$CXX" = "xg++"; then
627         if test "x$GXX" != "xyes"; then
628                 # automake/libtool is so broken, it requires g++ even if the c++ sources
629                 # are inside automake conditionals
630                 AC_MSG_ERROR([You need to install g++])
631         fi
634 dnl may require a specific autoconf version
635 dnl AC_PROG_CC_FOR_BUILD
636 dnl CC_FOR_BUILD not automatically detected
637 CC_FOR_BUILD=$CC
638 CFLAGS_FOR_BUILD=$CFLAGS
639 BUILD_EXEEXT=
640 if test "x$cross_compiling" = "xyes"; then
641         CC_FOR_BUILD=cc
642         CFLAGS_FOR_BUILD=
643         BUILD_EXEEXT=""
645 AC_SUBST(CC_FOR_BUILD)
646 AC_SUBST(CFLAGS_FOR_BUILD)
647 AC_SUBST(HOST_CC)
648 AC_SUBST(BUILD_EXEEXT)
650 AM_CONDITIONAL(CROSS_COMPILING, [test x$cross_compiling = xyes])
651 AM_CONDITIONAL(USE_BATCH_FILES, [test x$host_win32 = xyes -a x$cross_compiling = xyes])
653 # Set STDC_HEADERS
654 AC_HEADER_STDC
655 AC_LIBTOOL_WIN32_DLL
656 # This causes monodis to not link correctly
657 #AC_DISABLE_FAST_INSTALL
659 #lookup makedev() header
660 AC_HEADER_MAJOR
662 AM_PROG_LIBTOOL
663 # Use dolt (http://dolt.freedesktop.org/) instead of libtool for building.
664 DOLT
666 export_ldflags=`(./libtool --config; echo eval echo \\$export_dynamic_flag_spec) | sh`
667 AC_SUBST(export_ldflags)
669 # Test whenever ld supports -version-script
670 AC_PROG_LD
671 AC_PROG_LD_GNU
673 AC_CHECK_HEADERS(sys/filio.h sys/sockio.h netdb.h utime.h sys/utime.h semaphore.h sys/un.h linux/rtc.h sys/syscall.h sys/mkdev.h sys/uio.h sys/param.h sys/sysctl.h libproc.h sys/prctl.h copyfile.h)
674 AC_CHECK_HEADERS(sys/param.h sys/socket.h sys/ipc.h sys/utsname.h alloca.h ucontext.h pwd.h sys/select.h netinet/tcp.h netinet/in.h unistd.h sys/types.h link.h asm/sigcontext.h sys/inotify.h arpa/inet.h complex.h unwind.h)
676 # zlib/configure checks for unistd.h existance and defines HAVE_UNISTD_H on the compiler
677 # command line (not config.h) if it is present.
678 AC_CHECK_HEADER(unistd.h,
679     [HAVE_UNISTD_H=1
680      ZLIB_CFLAGS="$ZLIB_CFLAGS -DHAVE_UNISTD_H"],
681     [HAVE_UNISTD_H=0])
683 AC_SUBST(HAVE_UNISTD_H)
685 AC_CHECK_HEADERS([linux/netlink.h linux/rtnetlink.h],
686                   [], [], [#include <stddef.h>
687                   #include <sys/socket.h>
688                   #include <linux/socket.h>])
690 AC_CHECK_HEADERS(sys/user.h, [], [],
692 #ifdef HAVE_SYS_PARAM_H
693 # include <sys/param.h>
694 #endif
697 AC_CHECK_HEADERS(linux/serial.h)
699 case "$host" in
700         # Use bundled zlib on Windows to be sure it is static.
701         *-mingw*|*-cygwin*)
702                 have_sys_zlib=no
703                 zlib_msg="bundled zlib"
704                 ;;
705         *)
706                 AC_CHECK_HEADER(zlib.h, [have_sys_zlib=yes], [have_sys_zlib=no])
707                 if test x$have_sys_zlib = xyes; then
708                         AC_TRY_COMPILE([#include <zlib.h>], [
709                                 #if defined(ZLIB_VERNUM) && (ZLIB_VERNUM >= 0x1230)
710                                 #else
711                                 #error No good zlib found
712                                 #endif
713                         ],[
714                                 AC_MSG_RESULT(Using system zlib)
715                                 zlib_msg="system zlib"
716                                 have_sys_zlib=yes
717                         ],[
718                                 AC_MSG_RESULT(zlib too old, using embedded zlib)
719                                 have_sys_zlib=no
720                                 zlib_msg="bundled zlib"
721                         ])
722                 else
723                         AC_MSG_RESULT(zlib not found, using embedded zlib)
724                         have_sys_zlib=no
725                         zlib_msg="bundled zlib"
726                 fi
727                 ;;
728 esac
730 AC_ARG_WITH(static-zlib, [  --with-static-zlib=PATH    use the specified static zlib instead of -lz],[STATIC_ZLIB_PATH=$with_static_zlib],[STATIC_ZLIB_PATH=])
731 if test "x$STATIC_ZLIB_PATH" != "x"; then
732         have_static_zlib=yes
733         have_sys_zlib=no
734         zlib_msg="static zlib from $STATIC_ZLIB_PATH"
735         AC_SUBST(STATIC_ZLIB_PATH)
738 AM_CONDITIONAL(HAVE_STATIC_ZLIB, test x$have_static_zlib = xyes)
739 AM_CONDITIONAL(HAVE_SYS_ZLIB, test x$have_sys_zlib = xyes)
740 if test x$have_static_zlib = xyes; then
741         AC_DEFINE(HAVE_STATIC_ZLIB, 1, [Use static zlib])
743 if test x$have_sys_zlib = xyes; then
744         AC_DEFINE(HAVE_SYS_ZLIB, 1, [Use OS-provided zlib])
746 # for mono/metadata/debug-symfile.c
747 AC_CHECK_HEADERS(elf.h)
749 # for support
750 AC_CHECK_HEADERS(poll.h)
751 AC_CHECK_HEADERS(sys/poll.h)
752 AC_CHECK_HEADERS(sys/wait.h)
753 AC_CHECK_HEADERS(grp.h)
754 AC_CHECK_HEADERS(syslog.h)
755 AC_CHECK_FUNCS(vsyslog)
757 # for mono/dis
758 AC_CHECK_HEADERS(wchar.h)
760 # for Linux statfs support
761 AC_CHECK_HEADERS(linux/magic.h)
763 # For Android NDK unified headers
764 if test x$platform_android = xyes; then
765         AC_CHECK_HEADERS(machine/endian.h sys/endian.h)
766         AC_CHECK_HEADERS(android/legacy_signal_inlines.h, [have_android_signal_inlines=yes], [have_android_signal_inlines=no])
767         AC_CHECK_HEADERS(android/ndk-version.h)
769         # Make sure SIGRT{MIN,MAX} work - they will fail to work with unified headers if building for
770         # API level < 21 *and* android/legacy_signal_inlines.h doesn't declare (and define) the required
771         # libc APIs to obtain values for SIGRT{MIN,MAX}. We perform the check only if android/legacy_signal_inlines.h
772         # is found because in other cases the macros will either work (for NDK < 14) or fail if the legacy header
773         # doesn't contain the required definitions (NDK 14)
774         if test x$have_android_signal_inlines = xyes; then
775                 AC_MSG_CHECKING([Whether Android SIGRTMIN/SGRTMAX macros are valid])
776                 AC_COMPILE_IFELSE([
777                         AC_LANG_PROGRAM([#include <signal.h>
778                                 #include <android/legacy_signal_inlines.h>],[
779                                 int i;
780                                 for (i = SIGRTMIN + 1; i < SIGRTMAX; ++i) {
781                                 }
782                         ])],[
783                                 AC_MSG_RESULT(yes)
784                                 android_sigrtminmax_work=yes
785                         ],[
786                                 AC_MSG_RESULT(no)
787                                 android_sigrtminmax_work=no
788                         ]
789                 )
791                 if test x$android_sigrtminmax_work = xno; then
792                         AC_MSG_ERROR([Android SIGRTMIN/SIGRTMAX macros don't work in this NDK])
793                 fi
794         fi
796         # Attempt to detect whether we're using Android NDK unified headers
797         AC_CHECK_HEADERS(android/api-level.h, [have_android_api_level=yes], [have_android_api_level=no])
798         AC_CHECK_HEADERS(android/versioning.h, [have_android_versioning=yes], [have_android_versioning=no])
800         android_unified_headers=no
801         if test x$have_android_api_level = xyes; then
802                 if test x$have_android_versioning = xyes; then
803                         AC_MSG_CHECKING([whether using Android NDK unified headers])
805                         # Both macros are defined only in the NDK unified headers
806                         AC_COMPILE_IFELSE([
807                                 AC_LANG_PROGRAM([
808                                         #include <android/api-level.h>
809                                         #include <android/versioning.h>
810                                 ],[
811                                         #if __ANDROID_API_O__ == 26 && defined(__INTRODUCED_IN)
812                                         #else
813                                                 #error __ANDROID_API_O__ != 26 or the __INTRODUCED_IN macro not defined
814                                         #endif
815                                 ])],[
816                                         AC_MSG_RESULT(yes)
817                                         android_unified_headers=yes
818                                 ],[
819                                         AC_MSG_RESULT(no)
820                                         android_unified_headers=no
821                                 ]
822                         )
823                 fi
824         fi
826         if test x$android_unified_headers = xyes; then
827                 AC_DEFINE(ANDROID_UNIFIED_HEADERS, 1, [Whether Android NDK unified headers are used])
828         fi
829 fi # Android
831 # not 64 bit clean in cross-compile
832 AC_CHECK_SIZEOF(void *)
833 AC_CHECK_SIZEOF(long)
835 AC_CHECK_SIZEOF(int)
836 AC_CHECK_SIZEOF(long long)
838 AC_CACHE_CHECK([for clang],
839         mono_cv_clang,[
840         AC_TRY_COMPILE([], [
841                 #ifdef __clang__
842                 #else
843                 #error "FAILED"
844                 #endif
845         ],
846         [mono_cv_clang=yes],
847         [mono_cv_clang=no],
848         [])
851 AC_ARG_ENABLE(visibility-hidden,
852 [  --disable-visibility-hidden    disable usage of -fvisiblity=hidden],
853    disable_visibility_hidden=yes, disable_visibility_hidden=no)
855 WARN=''
856 if test x"$GCC" = xyes; then
857                 WARN='-Wall -Wunused -Wmissing-declarations -Wpointer-arith -Wno-cast-qual -Wwrite-strings -Wno-switch -Wno-switch-enum -Wno-unused-value -Wno-attributes'
858                 CFLAGS="$CFLAGS -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs -Wno-format-zero-length"
860                 # We require C99 with some GNU extensions, e.g. `linux` macro
861                 CFLAGS="$CFLAGS -std=gnu99"
863                 # The runtime code does not respect ANSI C strict aliasing rules
864                 CFLAGS="$CFLAGS -fno-strict-aliasing"
866                 # We rely on signed overflow to behave
867                 CFLAGS="$CFLAGS -fwrapv"
869                 CFLAGS="$CFLAGS -DMONO_DLL_EXPORT"
870                 if test x"$disable_visibility_hidden" = xno; then
871                    # Don't export any symbols by default
872                    SHARED_CFLAGS="-fvisibility=hidden"
873                    CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
874                 fi
876                 ORIG_CFLAGS=$CFLAGS
877                 # Check for the normal version, since gcc ignores unknown -Wno options
878                 CFLAGS="$CFLAGS -Wunused-but-set-variable -Werror"
879                 AC_MSG_CHECKING(for -Wno-unused-but-set-variable option to gcc)
880                 AC_TRY_COMPILE([],[
881                 ], [
882                    AC_MSG_RESULT(yes)
883                    CFLAGS="$ORIG_CFLAGS -Wno-unused-but-set-variable"
884                 ], [
885                    AC_MSG_RESULT(no)
886                    CFLAGS=$ORIG_CFLAGS
887                 ])
889                 if test "x$mono_cv_clang" = "xyes"; then
890                    # https://bugzilla.samba.org/show_bug.cgi?id=8118
891                    WARN="$WARN -Qunused-arguments"
892                    WARN="$WARN -Wno-unused-function -Wno-tautological-compare -Wno-parentheses-equality -Wno-self-assign -Wno-return-stack-address -Wno-constant-logical-operand"
893                    # We rely on zero length arrays in structs
894                    WARN="$WARN -Wno-zero-length-array"
895                 fi
896 else
897         # The Sun Forte compiler complains about inline functions that access static variables
898         # so disable all inlining.
899         case "$host" in
900         *-*-solaris*)
901                 CFLAGS="$CFLAGS -Dinline="
902                 ;;
903         esac
905 CFLAGS="$WARN $CFLAGS -g"
906 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -g"
907 CPPFLAGS="$WARN $CPPFLAGS -g"
909 # Where's the 'mcs' source tree?
910 if test -d $srcdir/mcs; then
911   mcsdir=mcs
912 else
913   mcsdir=../mcs
916 AC_ARG_WITH(mcs-path, [  --with-mcs-path=/path/to/mcs      Specify an alternate mcs source tree],
917         if test x$with_mcs_path != "x" -a -d $with_mcs_path ; then
918                 mcsdir=$with_mcs_path
919         fi
922 AC_ARG_WITH(jumptables, [  --with-jumptables=yes,no      enable/disable support for jumptables (ARM-only for now) (defaults to no)],[],[with_jumptables=no])
924 AC_ARG_WITH(core,       [  --with-core=only       controls whether to build Mono as a .NET Core runtime (defaults to no)],[],[with_core=no])
925 if test x$with_core = xonly; then
926     AC_DEFINE(ENABLE_NETCORE,1,[Enables the support for .NET Core Features in the MonoVM])
927     with_runtime_preset=netcore
929 AM_CONDITIONAL(ENABLE_NETCORE, test x$with_core = xonly)
932 # A sanity check to catch cases where the package was unpacked
933 # with an ancient tar program (Solaris)
935 AC_ARG_ENABLE(solaris-tar-check,
936 [  --disable-solaris-tar-check    disable solaris tar check],
937    do_solaris_tar_check=no, do_solaris_tar_check=yes)
939 if test x"$do_solaris_tar_check" = xyes -a x"$enable_solaris_tar_check" = xyes; then
940         AC_MSG_CHECKING(integrity of package)
941         if test -f $mcsdir/class/System.Runtime.Serialization.Formatters.Soap/System.Runtime.Serialization.Formatters.Soap/SoapTypeMapper.cs
942         then
943                 AC_MSG_RESULT(ok)
944         else
945                 errorm="Your mono distribution is incomplete;  if unpacking from a tar file, make sure you use GNU tar;  see http://www.mono-project.com/IncompletePackage for more details"
946                 AC_MSG_ERROR([$errorm])
947         fi
950 if test "x$with_mcs_path" != "x"; then
951 mcs_topdir=$(cd "$mcsdir" && pwd)
952 mcs_topdir_from_srcdir=$mcs_topdir
953 else
954 mcs_topdir=$(cd "$srcdir/$mcsdir" && pwd)
955 mcs_topdir_from_srcdir='$(top_builddir)'/$mcsdir
958 # Convert mcs_topdir* paths to Windows syntax.
959 if test x$cross_compiling$host_win32 = xnoyes; then
960   mcs_topdir=$(cygpath -m $mcs_topdir)
961   case $mcs_topdir_from_srcdir in
962     /cygdrive/*)
963         mcs_topdir_from_srcdir=$(cygpath -m $mcs_topdir_from_srcdir)
964         ;;
965   esac
968 AC_SUBST([mcs_topdir])
969 AC_SUBST([mcs_topdir_from_srcdir])
971 # gettext: prepare the translation directories. 
972 # we do not configure the full gettext, as we consume it dynamically from C#
973 AM_PO_SUBDIRS
975 if test "x$USE_NLS" = "xyes"; then
976    AC_CHECK_PROG(HAVE_MSGFMT, msgfmt,yes,no)
978    if test "x$HAVE_MSGFMT" = "xno"; then
979           AC_MSG_ERROR([msgfmt not found. You need to install the 'gettext' package, or pass --enable-nls=no to configure.])
980    fi
983 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
985 pkg_config_path=
986 AC_ARG_WITH(crosspkgdir, [  --with-crosspkgdir=/path/to/pkg-config/dir      Change pkg-config dir to custom dir],
987         if test x$with_crosspkgdir = "x"; then
988                 if test -s $PKG_CONFIG_PATH; then
989                         pkg_config_path=$PKG_CONFIG_PATH
990                 fi
991         else
992                 pkg_config_path=$with_crosspkgdir
993                 PKG_CONFIG_PATH=$pkg_config_path
994                 export PKG_CONFIG_PATH
995         fi
998 AC_ARG_ENABLE(ninja,[  --enable-ninja    Enable using ninja where available], enable_ninja=$enableval)
999 AC_CHECK_PROG(HAVE_NINJA, ninja, yes, no)
1000 AM_CONDITIONAL(NINJA, test x$enable_ninja = xyes -a x$HAVE_NINJA != xno)
1002 AC_ARG_ENABLE(werror, [  --enable-werror Pass -Werror to the C compiler], werror_flag=$enableval, werror_flag=no)
1003 if test x$werror_flag = xyes; then
1004         WERROR_CFLAGS="-Werror"
1006 AC_SUBST([WERROR_CFLAGS])
1007 AC_SUBST([SHARED_CFLAGS])
1009 GLIB_CFLAGS='-I$(top_srcdir)/mono/eglib -I$(top_builddir)/mono/eglib'
1010   
1011 AC_SUBST(GLIB_CFLAGS)
1013 # Enable support for fast thread-local storage
1014 # Some systems have broken support, so we allow to disable it.
1015 AC_ARG_WITH(tls, [  --with-tls=__thread,pthread    select Thread Local Storage implementation (defaults to __thread)],[],[with_tls=__thread])
1017 # Enable support for using sigaltstack for SIGSEGV and stack overflow handling
1018 # This does not work on some platforms (bug #55253)
1019 AC_ARG_WITH(sigaltstack, [  --with-sigaltstack=yes,no      enable/disable support for sigaltstack (defaults to yes)],[],[with_sigaltstack=yes])
1021 AC_ARG_WITH(static_mono, [  --with-static_mono=yes,no      link mono statically to libmono (faster) (defaults to yes)],[],[with_static_mono=yes])
1022 AC_ARG_WITH(shared_mono, [  --with-shared_mono=yes,no      build a shared libmono library (defaults to yes)],[],[with_shared_mono=yes])
1023 # Same as --with-shared_mono=no
1024 AC_ARG_ENABLE(libraries, [  --disable-libraries disable the build of libmono], enable_libraries=$enableval, enable_libraries=yes)
1026 if test "x$enable_static" = "xno"; then
1027    with_static_mono=no
1030 if test "x$enable_shared" = "xno"; then
1031    with_shared_mono=no
1034 if test "x$enable_libraries" = "xno"; then
1035    with_shared_mono=no
1038 AM_CONDITIONAL(DISABLE_LIBRARIES, test x$enable_libraries = xno)
1040 if test "x$host_win32" = "xyes"; then
1041    # Boehm GC requires the runtime to be in its own dll
1042    with_static_mono=no
1045 AM_CONDITIONAL(STATIC_MONO, test x$with_static_mono != xno)
1046 AM_CONDITIONAL(SHARED_MONO, test x$with_shared_mono != xno)
1047 AC_ARG_ENABLE(mcs-build, [  --disable-mcs-build disable the build of the mcs directory], try_mcs_build=$enableval, enable_mcs_build=yes)
1048 AC_ARG_ENABLE(support-build, [  --disable-support-build disable the build of the support directory], try_support_build=$enableval, enable_support_build=yes)
1050 AC_ARG_WITH(xen_opt,   [  --with-xen_opt=yes,no          Enable Xen-specific behaviour (defaults to yes)],[],[with_xen_opt=yes])
1051 if test "x$with_xen_opt" = "xyes" -a "x$mono_cv_clang" = "xno"; then
1052         AC_DEFINE(MONO_XEN_OPT, 1, [Xen-specific behaviour])
1053         ORIG_CFLAGS=$CFLAGS
1054         CFLAGS="$CFLAGS -mno-tls-direct-seg-refs"
1055         AC_MSG_CHECKING(for -mno-tls-direct-seg-refs option to gcc)
1056         AC_TRY_COMPILE([], [
1057         ], [
1058            AC_MSG_RESULT(yes)
1059            # Pass it to libgc as well
1060            CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -mno-tls-direct-seg-refs"
1061         ], [
1062            AC_MSG_RESULT(no)
1063            CFLAGS=$ORIG_CFLAGS
1064         ])
1067 AC_ARG_ENABLE(small-config, [  --enable-small-config Enable tweaks to reduce requirements (and capabilities)], enable_small_config=$enableval, enable_small_config=no)
1069 if test x$enable_small_config = xyes; then
1070         AC_DEFINE(MONO_SMALL_CONFIG,1,[Reduce runtime requirements (and capabilities)])
1071         CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DSMALL_CONFIG"
1074 AC_ARG_ENABLE(system-aot, [  --enable-system-aot  Enable the Ahead-Of-Time compilation of system assemblies during the build (on by default on some platforms)], enable_system_aot=$enableval, enable_system_aot=default)
1076 DISABLED_FEATURES=none
1077 csc_compiler=default
1078 endian=unknown
1079 AC_C_BIGENDIAN([endian=big],[endian=little],[endian=unknown])
1080 AC_MSG_CHECKING([CSharp compiler to use])
1081 AC_ARG_WITH(csc, [  --with-csc=mcs,roslyn,default      Configures the CSharp compiler to use],[
1082    if test x$withval = xmcs; then
1083        csc_compiler=mcs
1084    elif test x$withval = xroslyn; then
1085        csc_compiler=roslyn
1086    elif test x$withval = xdefault; then
1087        :
1088    else
1089        AC_MSG_ERROR([You must supply one of "mcs", "roslyn" or "default" to the --with-csc option])
1090    fi
1091 ],[csc_compiler=default])
1093 if test $csc_compiler = default; then
1094    if test $endian = big; then
1095       csc_compiler=mcs
1096    elif test $endian = little; then
1097       case "$host" in
1098         powerpc*) csc_compiler=mcs ;;
1099         *) csc_compiler=roslyn ;;
1100       esac
1101    else
1102       csc_compiler=mcs
1103    fi
1105 AC_MSG_RESULT($csc_compiler)
1107 AC_ARG_WITH(jemalloc,             [  --with-jemalloc=yes,no               If jemalloc is enabled (defaults to no)],                                     [], [with_jemalloc=no])
1108 AC_ARG_WITH(jemalloc-always,      [  --with-jemalloc_always=yes,no        If jemalloc is enabled and always used (defaults to yes)],                    [], [with_jemalloc_always=no])
1109 AC_ARG_WITH(jemalloc-assert,      [  --with-jemalloc_assert=yes,no        If jemalloc performs runtime checks for memory correctness (defaults to no)], [], [with_jemalloc_assert=no])
1112 if test x$target_win32 = xyes; then
1113 with_jemalloc=no
1114 with_jemalloc_assert=no
1115 with_jemalloc_always=no
1118 AM_CONDITIONAL(MONO_JEMALLOC_ASSERT, [test "x$with_jemalloc_assert" = "xyes"])
1119 if test "x$with_jemalloc_assert" = "xyes"; then
1120 JEMALLOC_CFLAGS+=" -DMONO_JEMALLOC_ASSERT"
1121 AC_DEFINE(MONO_JEMALLOC_ASSERT, 1, [Make jemalloc assert for mono])
1122 AC_SUBST(MONO_JEMALLOC_ASSERT, 1)
1125 AM_CONDITIONAL(MONO_JEMALLOC_DEFAULT, [test "x$with_jemalloc_always" = "xyes"])
1126 if test "x$with_jemalloc_always" = "xyes"; then
1127 with_jemalloc=yes
1128 JEMALLOC_CFLAGS+=" -DMONO_JEMALLOC_DEFAULT"
1129 AC_DEFINE(MONO_JEMALLOC_DEFAULT, 1, [Make jemalloc default for mono])
1130 AC_SUBST(MONO_JEMALLOC_DEFAULT, 1)
1133 AM_CONDITIONAL(MONO_JEMALLOC_ENABLED, [test "x$with_jemalloc" = "xyes"])
1134 if test "x$with_jemalloc" = "xyes"; then
1135 JEMALLOC_LDFLAGS="-L`pwd`/mono/utils/jemalloc/jemalloc/lib -ljemalloc_pic"
1136 JEMALLOC_CFLAGS+=" -DMONO_JEMALLOC_ENABLED -I `pwd`/mono/utils/jemalloc/jemalloc/include"
1137 JEMALLOC_AUTOCONF_FLAGS=" --build=$target --host=$host"
1139 if test "x$target_mach" = "xyes"; then
1140         JEMALLOC_CPPFLAGS=" -stdlib=libc++ "
1143 AC_DEFINE(MONO_JEMALLOC_ENABLED, 1, [Enable jemalloc usage for mono])
1144 AC_SUBST(MONO_JEMALLOC_ENABLED, 1)
1146 AC_SUBST(JEMALLOC_CFLAGS)
1147 AC_SUBST(JEMALLOC_CPPFLAGS)
1148 AC_SUBST(JEMALLOC_LDFLAGS)
1149 AC_SUBST(JEMALLOC_AUTOCONF_FLAGS)
1152 # Terminology:
1153 # Crash privacy - Attempts to not send identifying information in the crash dump / to protect the obscurity of the program control flow
1154 # MERP - The MS telemetry profile. Not for general use.
1155 # Structured crashes - crashes at runtime that trigger a stack walk by mono that happens cooperatively
1157 # Structured crashes are not merp crashes. Structured crashes are json dumps made by mono during crashes. Merp upload is going to use the dumping code is a very specific way, and is enabled at runtime with an icall.
1159 #--with-crash_privacy=yes --with-structured_crashes=no means we don't wanna dump in non-merp-enabled builds, and we want to not send symbol strings. This is going to be the default pair of settings for VS4Mac.
1160 #--with-crash_privacy=yes --with-structured_crashes=yes means you want to see crashes on your console, and you want to not see unmanaged symbol names. This is an option for proprietary apps that have manual bugs filed.
1161 #--with-crash_privacy=no --with-structured_crashes=no means you want to see no crash dumps on failure and you don't care about privacy. This is how you'd set a "don't want it, don't care" configuration.
1162 #--with-crash_privacy=no --with-structured_crashes=yes means you want full crashes and you want to see them in the terminal, not on telemetry. This is going to be how we build for CI.
1164 AC_ARG_WITH(crash-privacy,       [  --with-crash_privacy=yes,no         If you want your crashes to not include names of symbols present in the binary. ], [], [with_crash_privacy=yes])
1165 AC_ARG_WITH(structured-crashes,  [  --with-structured_crashes=yes,no    If you want your unmanaged crashes to result in a small crash dump file. ],        [], [with_structured_crashes=yes])
1166 AC_ARG_ENABLE(crash-reporting,  [  --disable-crash-reporting            Enable or Disable crash reporting subsystem],        [crash_reporting=$enableval], [crash_reporting=yes])
1168 if test "x$with_crash_privacy" = "xyes"; then
1169 AC_DEFINE(MONO_PRIVATE_CRASHES,1,[Do not include names of unmanaged functions in the crash dump])
1172 if test "x$with_structured_crashes" = "xno"; then
1173 AC_DEFINE(DISABLE_STRUCTURED_CRASH,1,[Do not create structured crash files during unmanaged crashes])
1176 case "$host" in
1177         *-mingw*|*-*-cygwin*)
1178                 crash_reporting=no
1179                 ;;
1180 esac
1182 if test "x$crash_reporting" != "xyes"; then
1183 CFLAGS="$CFLAGS -DDISABLE_CRASH_REPORTING=1"
1184 CXXFLAGS="$CXXFLAGS -DDISABLE_CRASH_REPORTING=1"
1187 AC_ARG_ENABLE(monodroid, [ --enable-monodroid Enable runtime support for Monodroid (Xamarin.Android)], enable_monodroid=$enableval, enable_monodroid=no)
1188 AM_CONDITIONAL(ENABLE_MONODROID, test x$enable_monodroid = xyes)
1190 AC_ARG_ENABLE(monotouch, [ --enable-monotouch Enable runtime support for Monotouch (Xamarin.iOS and Xamarin.Mac)], enable_monotouch=$enableval, enable_monotouch=no)
1191 AM_CONDITIONAL(ENABLE_MONOTOUCH, test x$enable_monotouch = xyes)
1193 if test x$enable_monodroid = xyes; then
1194         AC_DEFINE(ENABLE_MONODROID, 1, [Enable runtime support for Monodroid (Xamarin.Android)])
1197 if test x$enable_monotouch = xyes; then
1198         AC_DEFINE(ENABLE_MONOTOUCH, 1, [Enable runtime support for Monotouch (Xamarin.iOS and Xamarin.Mac)])
1201 AC_ARG_ENABLE(cxx, [  --enable-cxx   compile some code as C++])
1203 # mono/corefx/native has a lot of invalid C++98 in its headers
1204 # dotnet/corefx/native looks a lot better, i.e. 44e5bdafb8d989a220c9cf1b94f31a64a6e4f052
1205 #CXXFLAGS_COMMON=' -std=gnu++98 -fno-exceptions -fno-rtti '
1206 CXXFLAGS_COMMON=' -std=gnu++0x -fno-exceptions -fno-rtti '
1207 # "c++0x" instead of C++11, for compat with Centos6/gcc4.4
1209 # -stdlib=libc++ is needed by clang for iOS 6.0 (-miphoneos-version-min=6.0)
1210 # to support C++11 headers but it does not seem to harm elsewhere, so over-approximate
1211 # and add it whenever we're running clang on Darwin.
1212 if test "x$mono_cv_clang" = xyes -a x$host_darwin = xyes; then
1213         CXXFLAGS_COMMON="$CXXFLAGS_COMMON -stdlib=libc++"
1216 AC_SUBST(CXXFLAGS_COMMON)
1218 if test "x$enable_cxx" = "xyes"; then
1220         CXX_ADD_CFLAGS=" -xc++ $CXXFLAGS_COMMON "
1222         # -std=gnu99 -xc++ is not allowed and errors.
1223         CXX_REMOVE_CFLAGS=-std=gnu99
1224         # These give warnings and should be removed. They are C-only.
1225         # i.e. C++ never allows these, they are always errors and their warningness is not controllable.
1226         CXX_REMOVE_CFLAGS="$CXX_REMOVE_CFLAGS -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs"
1227         # Likewise with CentOS 6 gcc 4.4.
1228         CXX_REMOVE_CFLAGS="$CXX_REMOVE_CFLAGS -Werror-implicit-function-declaration"
1230         # The C-only-ness of -Wno-format-zero-length varies with gcc version.
1231         # It is C-only prior to 4.7. Using it with C++ prior to 4.7
1232         # generates a warning every time we run gcc which is very unsightly.
1233         # The warning is for e.g. sprintf(foo, "") which can just be
1234         # foo[0] = 0 but Mono's use is more elaborate, not as easy to "fix",
1235         # and completely legal and valid.
1236         # We have to switch to C++ and not just use -xc++ because of -std=gnu99 (error when combined with -xc++).
1237         # Alternatively, just run $CXX -xc++ -c /dev/null.
1238         AC_LANG_PUSH(C++)
1239         ORIG_CXXFLAGS=$CXXFLAGS
1240         CXXFLAGS="$CXXFLAGS -Werror -Wno-format-zero-length -xc++ "
1241         AC_MSG_CHECKING(or C-only-ness of -Wno-format-zero-length)
1242         AC_TRY_COMPILE([ ], [ ], [ AC_MSG_RESULT(yes) ],
1243                                  [ AC_MSG_RESULT(no)
1244                                    CXX_REMOVE_CFLAGS="$CXX_REMOVE_CFLAGS -Wno-format-zero-length" ])
1245         CXXFLAGS=$ORIG_CXXFLAGS
1246         AC_LANG_POP(C++)
1248 AC_SUBST(CXX_ADD_CFLAGS)
1249 AC_SUBST(CXX_REMOVE_CFLAGS)
1252 # Set the build profiles and options before things which use them
1255 AC_ARG_WITH(profile4_x,          [  --with-profile4_x=yes,no            If you want to install the 4.x FX (defaults to yes)],                       [], [with_profile4_x=default])
1256 AC_ARG_WITH(monodroid,           [  --with-monodroid=yes,no             If you want to build the MonoDroid assemblies (defaults to no)],            [], [with_monodroid=default])
1257 AC_ARG_WITH(monotouch,           [  --with-monotouch=yes,no             If you want to build the Xamarin.iOS assemblies (defaults to no)],          [], [with_monotouch=default])
1258 AC_ARG_WITH(monotouch_watch,     [  --with-monotouch_watch=yes,no       If you want to build the Xamarin.WatchOS assemblies (defaults to no)],      [], [with_monotouch_watch=default])
1259 AC_ARG_WITH(monotouch_tv,        [  --with-monotouch_tv=yes,no          If you want to build the Xamarin.TVOS assemblies (defaults to no)],         [], [with_monotouch_tv=default])
1260 AC_ARG_WITH(bitcode,             [  --with-bitcode=yes,no               If bitcode is enabled (defaults to no)],                                    [], [with_bitcode=default])
1261 AC_ARG_WITH(xammac,              [  --with-xammac=yes,no                If you want to build the Xamarin.Mac assemblies (defaults to no)],          [], [with_xammac=default])
1262 AC_ARG_WITH(testing_aot_full_interp,  [  --with-testing_aot_full_interp=yes,no    If you want to build the testing_aot_full_interp assemblies (defaults to no)],   [], [with_testing_aot_full_interp=default])
1263 AC_ARG_WITH(testing_aot_hybrid,  [  --with-testing_aot_hybrid=yes,no    If you want to build the testing_aot_hybrid assemblies (defaults to no)],   [], [with_testing_aot_hybrid=default])
1264 AC_ARG_WITH(testing_aot_full,    [  --with-testing_aot_full=yes,no      If you want to build the testing_aot_full assemblies (defaults to no)],     [], [with_testing_aot_full=default])
1265 AC_ARG_WITH(winaot,              [  --with-winaot=yes,no                If you want to build the Windows friendly AOT assemblies (defaults to no)], [], [with_winaot=default])
1266 AC_ARG_WITH(testing_winaot_interp,    [  --with-testing_winaot_interp=yes,no      If you want to build the Windows friendly AOT + Interpreter testing assemblies (defaults to no)], [], [with_testing_winaot_interp=default])
1267 AC_ARG_WITH(orbis,               [  --with-orbis=yes,no                 If you want to build the Orbis assemblies (defaults to no)], [], [with_orbis=default])
1268 AC_ARG_WITH(unreal,              [  --with-unreal=yes,no                If you want to build the Unreal assemblies (defaults to no)], [], [with_unreal=default])
1269 AC_ARG_WITH(wasm,                [  --with-wasm=yes,no                  If you want to build the WebAssembly (defaults to no)], [], [with_wasm=default])
1272 AC_ARG_WITH(runtime-preset, [  --with-runtime-preset=net_4_x,all,aot,aot_llvm,hybridaot,hybridaot_llvm,fullaot,fullaot_llvm,winaot,winaotinterp,winaot_llvm,winaotinterp_llvm,bitcode,bitcodeinterp,unreal,fullaotinterp,fullaotinterp_llvm  Which default profile to build (defaults to net_4_x)],  [], [with_runtime_preset=net_4_x])
1273 AC_ARG_WITH(spectre-mitigation,             [  --with-spectre-mitigation=yes,no   If you want to build the runtime with compiler flags that enable Spectre mitigation (defaults to no)], [], [with_spectre_mitigation=default])
1274 AC_ARG_WITH(spectre-indirect-branch-choice,   [  --with-spectre-indirect-branch-choice=keep,thunk,inline,extern   Convert indirect branches to the specified kind of thunk (defaults to inline)], [], [with_spectre_indirect_branch_choice=inline])
1275 AC_ARG_WITH(spectre-function-return-choice, [  --with-spectre-function-return-choice=keep,thunk,inline,extern   Convert function return instructions to the specified kind of thunk (defaults to inline)], [], [with_spectre_function_return_choice=inline])
1278 dnl Spectre compiler mitigation flag checks
1280 if test "x$with_spectre_mitigation" = "xyes"; then
1281    AC_MSG_NOTICE([Compiler Spectre mitigation support checks])
1282    SPECTRE_CFLAGS=
1283    SPECTRE_INDIRECT_BRANCH_KIND=
1284    case "x$with_spectre_indirect_branch_choice" in
1285        xkeep) SPECTRE_INDIRECT_BRANCH_KIND=keep ;;
1286        xthunk) SPECTRE_INDIRECT_BRANCH_KIND=thunk ;;
1287        xinline) SPECTRE_INDIRECT_BRANCH_KIND=thunk-inline ;;
1288        xextern) SPECTRE_INDIRECT_BRANCH_KIND=thunk-extern ;;
1289        *) AC_MSG_ERROR([Invalid indirect jump thunk kind ($with_spectre_indirect_branch_choice)]) ;;
1290    esac
1292    SPECTRE_FUNCTION_RETURN_KIND=""
1293    case "x$with_spectre_function_return_choice" in
1294        xkeep) SPECTRE_FUNCTION_RETURN_KIND=keep ;;
1295        xthunk) SPECTRE_FUNCTION_RETURN_KIND=thunk ;;
1296        xinline) SPECTRE_FUNCTION_RETURN_KIND=thunk-inline ;;
1297        xextern) SPECTRE_FUNCTION_RETURN_KIND=thunk-extern ;;
1298        *) AC_MSG_ERROR([Invalid function return thunk kind ($with_spectre_function_return_choice)]) ;;
1299    esac
1301    AX_CHECK_COMPILE_FLAG(
1302         [ -mindirect-branch=$SPECTRE_INDIRECT_BRANCH_KIND ],
1303         [ SPECTRE_CFLAGS="$SPECTRE_CFLAGS -mindirect-branch=$SPECTRE_INDIRECT_BRANCH_KIND" ]
1304    )
1306    AX_CHECK_COMPILE_FLAG(
1307         [ -mfunction-return=$SPECTRE_FUNCTION_RETURN_KIND ],
1308         [ SPECTRE_CFLAGS="$SPECTRE_CFLAGS -mfunction-return=$SPECTRE_FUNCTION_RETURN_KIND" ]
1309    )
1311    if test "x$SPECTRE_CFLAGS" != "x" ; then
1312         CFLAGS="$CFLAGS $SPECTRE_CFLAGS"
1313         CXXFLAGS="$CXXFLAGS $SPECTRE_CFLAGS"
1314         spectre_mitigation_status="mitigation enabled"
1315    fi
1316 else
1317         spectre_mitigation_status="no mitigation"
1321 dnl Profile defaults
1323 TEST_PROFILE=default
1324 enable_llvm_default=no
1326 with_profile4_x_default=no
1327 with_monodroid_default=no
1328 with_monotouch_default=no
1329 with_monotouch_watch_default=no
1330 with_monotouch_tv_default=no
1331 with_xammac_default=no
1332 with_testing_aot_full_interp_default=no
1333 with_testing_aot_hybrid_default=no
1334 with_testing_aot_full_default=no
1335 with_winaot_default=no
1336 with_testing_winaot_interp_default=no
1337 with_orbis_default=no
1338 with_unreal_default=no
1339 with_wasm_default=no
1341 with_bitcode_default=no
1342 enable_cooperative_suspend_default=no
1343 enable_hybrid_suspend_default=no
1345 # For the sake of clearer error messages, these numbers should all be different from each other.
1346 INVARIANT_AOT_OPTIONS=nimt-trampolines=2000,ntrampolines=10000,nrgctx-fetch-trampolines=256,ngsharedvt-trampolines=4400,nftnptr-arg-trampolines=4000
1348 AOT_BUILD_ATTRS=$INVARIANT_AOT_OPTIONS
1350 MONO_LLVM_PATH_OPTION=llvm-path="`pwd`/llvm/usr/bin"
1352 if test x$cross_compiling = xyes -o x$enable_mcs_build = xno; then
1353    DISABLE_MCS_DOCS_default=yes
1354 elif test x$with_runtime_preset = xnetcore; then
1355    DISABLE_MCS_DOCS_default=yes
1356    BTLS_SUPPORTED=no
1357    enable_mcs_build=no
1358    enable_support_build=no
1360    mono_feature_disable_remoting='yes'
1361    mono_feature_disable_reflection_emit_save='yes'
1362    mono_feature_disable_appdomains='yes'
1363    mono_feature_disable_cleanup='yes'
1364    mono_feature_disable_assembly_remapping='yes'
1365    mono_feature_disable_security='yes'
1366    mono_feature_disable_mdb='yes'
1367    mono_feature_disable_com='yes'
1368    mono_feature_disable_gac='yes'
1369    mono_feature_disable_perfcounters='yes'
1370    mono_feature_disable_attach='yes'
1371    disable_mono_native=yes
1372    support_boehm=no
1373 elif test x$with_runtime_preset = xnet_4_x; then
1374    with_profile4_x_default=yes
1375    TEST_PROFILE=net_4_x
1376 elif test x$with_runtime_preset = xall; then
1377    with_profile4_x_default=yes
1378    with_monodroid_default=yes
1379    with_monotouch_default=yes
1380    with_monotouch_watch_default=yes
1381    with_monotouch_tv_default=yes
1382    with_xammac_default=yes
1383    with_winaot_default=yes
1384    with_testing_winaot_interp_default=yes
1385    with_orbis_default=yes
1386    with_unreal_default=yes
1387    with_wasm_default=yes
1388    with_testing_aot_full_interp_default=yes
1389    with_testing_aot_hybrid_default=yes
1390    with_testing_aot_full_default=yes
1391    TEST_PROFILE=net_4_x
1392 elif test x$with_runtime_preset = xbitcode; then
1393    DISABLE_MCS_DOCS_default=yes
1394    with_testing_aot_full_default=yes
1395    with_bitcode_default=yes
1396    enable_cooperative_suspend_default=yes
1397    # FIXME: use TEST_PROFILE=testing_aot_full
1398    TEST_PROFILE=testing_aot_bitcode
1399    PLATFORM_TEST_HARNESS_EXCLUDES=BitcodeNotSupported
1400    enable_llvm_default=yes
1402    mono_feature_disable_com='yes'
1403    mono_feature_disable_remoting='yes'
1404    mono_feature_disable_reflection_emit_save='yes'
1405    mono_feature_disable_reflection_emit='yes'
1406    mono_feature_disable_appdomains='yes'
1408    # We need at least clang++-6.0 to read the LLVM IR produced by the runtime
1409    AOT_BUILD_FLAGS="--runtime=mobile --aot=llvmonly,clangxx=clang++-6.0,$INVARIANT_AOT_OPTIONS"
1410    AOT_RUN_FLAGS="--runtime=mobile --llvmonly"
1411    AOT_MODE="llvmonly"
1412 elif test x$with_runtime_preset = xbitcodeinterp; then
1413    with_testing_aot_full_interp_default=yes
1414    with_bitcode_default=yes
1415    enable_cooperative_suspend_default=yes
1416    # FIXME: use TEST_PROFILE=testing_aot_full_interp
1417    TEST_PROFILE=testing_aot_bitcode_interp
1418    PLATFORM_TEST_HARNESS_EXCLUDES=BitcodeNotSupported
1419    enable_llvm_default=yes
1421    # mscorlib.dll aot compilation crashes
1422    mono_feature_disable_com='yes'
1424    # We need at least clang++-6.0 to read the LLVM IR produced by the runtime
1425    AOT_BUILD_FLAGS="--aot=llvmonly,interp,clangxx=clang++-6.0,$INVARIANT_AOT_OPTIONS"
1426    AOT_RUN_FLAGS="--llvmonly-interp"
1427 elif test x$with_runtime_preset = xfullaot; then
1428    DISABLE_MCS_DOCS_default=yes
1429    with_testing_aot_full_default=yes
1430    TEST_PROFILE=testing_aot_full
1432    mono_feature_disable_com='yes'
1433    mono_feature_disable_remoting='yes'
1434    mono_feature_disable_reflection_emit_save='yes'
1435    mono_feature_disable_reflection_emit='yes'
1436    mono_feature_disable_appdomains='yes'
1438    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --aot=full,$INVARIANT_AOT_OPTIONS"
1439    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1440    AOT_MODE="full"
1441 elif test x$with_runtime_preset = xfullaot_llvm; then
1442    DISABLE_MCS_DOCS_default=yes
1443    with_testing_aot_full_default=yes
1444    TEST_PROFILE=testing_aot_full
1446    mono_feature_disable_com='yes'
1447    mono_feature_disable_remoting='yes'
1448    mono_feature_disable_reflection_emit_save='yes'
1449    mono_feature_disable_reflection_emit='yes'
1450    mono_feature_disable_appdomains='yes'
1452    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --llvm --aot=full,$INVARIANT_AOT_OPTIONS"
1453    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1454    AOT_MODE="full"
1455 elif test x$with_runtime_preset = xhybridaot; then
1456    DISABLE_MCS_DOCS_default=yes
1457    with_testing_aot_hybrid_default=yes
1458    TEST_PROFILE=testing_aot_hybrid 
1460    AOT_BUILD_FLAGS="--runtime=mobile --aot=hybrid,$INVARIANT_AOT_OPTIONS"
1461    AOT_RUN_FLAGS="--runtime=mobile --hybrid-aot"
1462 elif test x$with_runtime_preset = xhybridaot_llvm; then
1463    DISABLE_MCS_DOCS_default=yes
1464    with_testing_aot_hybrid_default=yes
1465    TEST_PROFILE=testing_aot_hybrid
1467    AOT_BUILD_FLAGS="--runtime=mobile --llvm --aot=hybrid,$INVARIANT_AOT_OPTIONS"
1468    AOT_RUN_FLAGS="--runtime=mobile --hybrid-aot"
1469 elif test x$with_runtime_preset = xfullaotinterp; then
1470    with_testing_aot_full_interp_default=yes
1471    TEST_PROFILE=testing_aot_full_interp
1473    # mscorlib.dll aot compilation crashes
1474    mono_feature_disable_com='yes'
1476    AOT_BUILD_FLAGS="--aot=full,interp,$INVARIANT_AOT_OPTIONS"
1477    AOT_RUN_FLAGS="--full-aot-interp"
1478 elif test x$with_runtime_preset = xfullaotinterp_llvm; then
1479    with_testing_aot_full_interp_default=yes
1480    TEST_PROFILE=testing_aot_full_interp
1482    # mscorlib.dll aot compilation crashes
1483    mono_feature_disable_com='yes'
1485    AOT_BUILD_FLAGS="-O=gsharedvt --llvm --aot=full,interp,$INVARIANT_AOT_OPTIONS"
1486    AOT_RUN_FLAGS="--full-aot-interp"
1487 elif test x$with_runtime_preset = xaot; then
1488    with_profile4_x_default=yes
1490    AOT_BUILD_FLAGS="--aot=$INVARIANT_AOT_OPTIONS"
1491    AOT_RUN_FLAGS=""
1493    DISABLE_MCS_DOCS_default=yes
1494 elif test x$with_runtime_preset = xaot_llvm; then
1495    with_profile4_x_default=yes
1497    AOT_BUILD_FLAGS="--llvm --aot=$INVARIANT_AOT_OPTIONS"
1498    AOT_RUN_FLAGS=""
1500    DISABLE_MCS_DOCS_default=yes
1501 elif test x$with_runtime_preset = xwinaot; then
1502    DISABLE_MCS_DOCS_default=yes
1503    with_winaot_default=yes
1504    TEST_PROFILE=winaot
1506    mono_feature_disable_com='yes'
1507    mono_feature_disable_remoting='yes'
1508    mono_feature_disable_reflection_emit_save='yes'
1509    mono_feature_disable_reflection_emit='yes'
1510    mono_feature_disable_appdomains='yes'
1512    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --aot=full,$INVARIANT_AOT_OPTIONS"
1513    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1514    AOT_MODE="full"
1515 elif test x$with_runtime_preset = xwinaotinterp; then
1516    DISABLE_MCS_DOCS_default=yes
1517    with_testing_winaot_interp_default=yes
1518    TEST_PROFILE=testing_winaot_interp
1520    mono_feature_disable_com='yes'
1521    mono_feature_disable_remoting='yes'
1522    mono_feature_disable_appdomains='yes'
1524    AOT_BUILD_FLAGS="--aot=full,interp,$INVARIANT_AOT_OPTIONS"
1525    AOT_RUN_FLAGS="--full-aot-interp"
1526 elif test x$with_runtime_preset = xwinaotinterp_llvm; then
1527    DISABLE_MCS_DOCS_default=yes
1528    with_testing_winaot_interp_default=yes
1529    TEST_PROFILE=testing_winaot_interp
1531    mono_feature_disable_com='yes'
1532    mono_feature_disable_remoting='yes'
1533    mono_feature_disable_appdomains='yes'
1535    INVARIANT_AOT_OPTIONS="llvmllc=-mattr=sse4.1,$INVARIANT_AOT_OPTIONS"
1536    AOT_BUILD_FLAGS="-O=gsharedvt --llvm --aot=full,interp,$INVARIANT_AOT_OPTIONS"
1537    AOT_RUN_FLAGS="--full-aot-interp"
1538 elif test x$with_runtime_preset = xwinaot_llvm; then
1539    DISABLE_MCS_DOCS_default=yes
1540    with_winaot_default=yes
1541    TEST_PROFILE=winaot
1543    mono_feature_disable_com='yes'
1544    mono_feature_disable_remoting='yes'
1545    mono_feature_disable_reflection_emit_save='yes'
1546    mono_feature_disable_reflection_emit='yes'
1547    mono_feature_disable_appdomains='yes'
1549    INVARIANT_AOT_OPTIONS="llvmllc=-mattr=sse4.1,$INVARIANT_AOT_OPTIONS"
1550    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --llvm --aot=full,$INVARIANT_AOT_OPTIONS"
1551    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1552    AOT_MODE="full"
1553 elif test x$with_runtime_preset = xorbis; then
1554    DISABLE_MCS_DOCS_default=yes
1555    with_orbis_default=yes
1556    TEST_PROFILE=orbis
1558    mono_feature_disable_com='yes'
1559    mono_feature_disable_remoting='yes'
1560    mono_feature_disable_reflection_emit_save='yes'
1561    mono_feature_disable_reflection_emit='yes'
1562    mono_feature_disable_appdomains='yes'
1564    AOT_BUILD_FLAGS="--runtime=mobile --aot=full,$INVARIANT_AOT_OPTIONS"
1565    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1566    AOT_MODE="full"
1567 elif test x$with_runtime_preset = xunreal; then
1568    DISABLE_MCS_DOCS_default=yes
1569    with_unreal_default=yes
1570    TEST_PROFILE=unreal
1572    mono_feature_disable_com='yes'
1573    mono_feature_disable_remoting='yes'
1574    mono_feature_disable_appdomains='no'
1576    AOT_BUILD_FLAGS="--runtime=mobile --aot=hybrid,$INVARIANT_AOT_OPTIONS"
1577    AOT_RUN_FLAGS="--runtime=mobile --hybrid-aot"
1578 elif test x$with_runtime_preset = xwasm; then
1579    DISABLE_MCS_DOCS_default=yes
1580    with_wasm_default=yes
1581    TEST_PROFILE=wasm
1583    mono_feature_disable_com='yes'
1584    mono_feature_disable_remoting='yes'
1585    mono_feature_disable_reflection_emit_save='yes'
1586    mono_feature_disable_reflection_emit='yes'
1587    mono_feature_disable_appdomains='yes'
1589    AOT_BUILD_FLAGS="--runtime=mobile --aot=full,$INVARIANT_AOT_OPTIONS"
1590    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1591 else
1592    TEST_PROFILE=net_4_x
1593    with_profile4_x_default=yes
1596 if test "x$AOT_BUILD_FLAGS" != "x"; then :
1597    AC_SUBST(AOT_BUILD_FLAGS)
1598    AC_SUBST(AOT_RUN_FLAGS)
1599    # For llvmonlycheck + fullaotcheck
1600    AC_SUBST(INVARIANT_AOT_OPTIONS)
1603 AC_SUBST(TEST_PROFILE)
1605 if test "x$with_profile4_x" = "xdefault"; then
1606    with_profile4_x=$with_profile4_x_default
1608 if test "x$with_monodroid" = "xdefault"; then
1609    with_monodroid=$with_monodroid_default
1611 if test "x$with_monotouch" = "xdefault"; then
1612    with_monotouch=$with_monotouch_default
1614 if test "x$with_monotouch_watch" = "xdefault"; then
1615    with_monotouch_watch=$with_monotouch_watch_default
1617 if test "x$with_monotouch_tv" = "xdefault"; then
1618    with_monotouch_tv=$with_monotouch_tv_default
1620 if test "x$with_bitcode" = "xdefault"; then
1621    with_bitcode=$with_bitcode_default
1623 if test "x$with_xammac" = "xdefault"; then
1624    with_xammac=$with_xammac_default
1626 if test "x$with_testing_aot_full_interp" = "xdefault"; then
1627    with_testing_aot_full_interp=$with_testing_aot_full_interp_default
1629 if test "x$with_testing_aot_hybrid" = "xdefault"; then
1630    with_testing_aot_hybrid=$with_testing_aot_hybrid_default
1632 if test "x$with_testing_aot_full" = "xdefault"; then
1633    with_testing_aot_full=$with_testing_aot_full_default
1635 if test "x$with_winaot" = "xdefault"; then
1636    with_winaot=$with_winaot_default
1638 if test "x$with_testing_winaot_interp" = "xdefault"; then
1639    with_testing_winaot_interp=$with_testing_winaot_interp_default
1641 if test "x$with_orbis" = "xdefault"; then
1642    with_orbis=$with_orbis_default
1644 if test "x$with_unreal" = "xdefault"; then
1645    with_unreal=$with_unreal_default
1647 if test "x$with_wasm" = "xdefault"; then
1648    with_wasm=$with_wasm_default
1652 AM_CONDITIONAL(INSTALL_4_x, [test "x$with_profile4_x" = "xyes"])
1653 AM_CONDITIONAL(INSTALL_MONODROID, [test "x$with_monodroid" != "xno"])
1654 AM_CONDITIONAL(INSTALL_MONOTOUCH, [test "x$with_monotouch" != "xno"])
1655 AM_CONDITIONAL(INSTALL_MONOTOUCH_WATCH, [test "x$with_monotouch_watch" != "xno"])
1656 AM_CONDITIONAL(INSTALL_MONOTOUCH_TV, [test "x$with_monotouch_tv" != "xno"])
1657 AM_CONDITIONAL(BITCODE, test "x$with_bitcode" = "xyes")
1658 AM_CONDITIONAL(INSTALL_XAMMAC, [test "x$with_xammac" != "xno"])
1659 AM_CONDITIONAL(INSTALL_TESTING_AOT_FULL_INTERP, [test "x$with_testing_aot_full_interp" != "xno"])
1660 AM_CONDITIONAL(INSTALL_TESTING_AOT_HYBRID, [test "x$with_testing_aot_hybrid" != "xno"])
1661 AM_CONDITIONAL(INSTALL_TESTING_AOT_FULL, [test "x$with_testing_aot_full" != "xno"])
1662 AM_CONDITIONAL(INSTALL_WINAOT, [test "x$with_winaot" != "xno"])
1663 AM_CONDITIONAL(INSTALL_TESTING_WINAOT_INTERP, [test "x$with_testing_winaot_interp" != "xno"])
1664 AM_CONDITIONAL(INSTALL_ORBIS, [test "x$with_orbis" != "xno"])
1665 AM_CONDITIONAL(INSTALL_UNREAL, [test "x$with_unreal" != "xno"])
1666 AM_CONDITIONAL(INSTALL_WASM, [test "x$with_wasm" != "xno"])
1667 AM_CONDITIONAL(INSTALL_NETCORE, [test "x$with_core" != "xno"])
1669 AM_CONDITIONAL(HYBRID_AOT_TESTS, [test "x$TEST_PROFILE" = "xtesting_aot_hybrid"] || [test "x$TEST_PROFILE" = "xunreal"])
1670 AM_CONDITIONAL(FULL_AOT_TESTS, [test "x$TEST_PROFILE" = "xtesting_aot_full"] || [test "x$TEST_PROFILE" = "xtesting_aot_bitcode"] || [test "x$TEST_PROFILE" = "xwinaot"] || [test "x$TEST_PROFILE" = "xorbis"] || [test "x$TEST_PROFILE" = "xwasm"])
1671 AM_CONDITIONAL(FULL_AOT_INTERP_TESTS, [test "x$TEST_PROFILE" = "xtesting_aot_full_interp"] || [test "x$TEST_PROFILE" = "xtesting_aot_bitcode_interp"] || [test "x$TEST_PROFILE" = "xtesting_winaot_interp"])
1672 AM_CONDITIONAL(DEFAULT_TESTS, [test "x$TEST_PROFILE" = "xnet_4_x"])
1674 default_profile=net_4_x
1675 if test -z "$INSTALL_MONODROID_TRUE"; then :
1676    default_profile=monodroid
1678 if test -z "$INSTALL_MONOTOUCH_TRUE"; then :
1679    default_profile=monotouch
1681 if test -z "$INSTALL_XAMMAC_TRUE"; then :
1682    default_profile=xammac
1684 if test -z "$INSTALL_TESTING_AOT_FULL_INTERP_TRUE"; then :
1685    default_profile=testing_aot_full_interp
1687 if test -z "$INSTALL_TESTING_AOT_HYBRID_TRUE"; then :
1688    default_profile=testing_aot_hybrid
1690 if test -z "$INSTALL_TESTING_AOT_FULL_TRUE"; then :
1691    default_profile=testing_aot_full
1693 if test -z "$INSTALL_WINAOT_TRUE"; then :
1694    default_profile=winaot
1696 if test -z "$INSTALL_TESTING_WINAOT_INTERP_TRUE"; then :
1697    default_profile=testing_winaot_interp
1699 if test -z "$INSTALL_ORBIS_TRUE"; then :
1700    default_profile=orbis
1702 if test -z "$INSTALL_UNREAL_TRUE"; then :
1703    default_profile=unreal
1705 if test -z "$INSTALL_WASM_TRUE"; then :
1706    default_profile=wasm
1708 if test -z "$INSTALL_4_x_TRUE"; then :
1709    default_profile=net_4_x
1711 DEFAULT_PROFILE=$default_profile
1712 AC_SUBST(DEFAULT_PROFILE)
1715 # End build profile configuration
1718 if test x$USE_NLS = xprofile_default; then
1720         AC_MSG_CHECKING([NLS used])
1722         # We make the default value for USE_NLS
1723         # "no" on OSX because it isn't available on most
1724         # default OSX installs. The most common configurations will
1725         # all disable it, so this saves us typing.
1726         if test x$host_darwin = xyes; then
1727                 USE_NLS=no;
1728         else
1729                 USE_NLS=yes;
1730         fi
1732         AC_SUBST([USE_NLS])
1733         AC_MSG_RESULT([$USE_NLS])
1736 AC_ARG_ENABLE(static-gcc-libs, [  --enable-static-gcc-libs      Statically link GCC support libs (for MinGW32)])
1737 if test "x$enable_static_gcc_libs" = "xyes"; then
1738         # llvm/build.mk doesn't use automake, so make a regular make variable for it.
1739         AC_SUBST(STATIC_GCC_LIBS,1)
1741 AM_CONDITIONAL(ENABLE_STATIC_GCC_LIBS, test "x$enable_static_gcc_libs" = "xyes")
1743 AC_ARG_ENABLE(minimal, [  --enable-minimal=LIST      drop support for LIST subsystems.
1744      LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug, appdomains, verifier, 
1745      reflection_emit, reflection_emit_save, large_code, logging, com, ssa, generics, attach, jit, interpreter, simd, soft_debug, perfcounters, normalization, desktop_loader, shared_perfcounters, remoting,
1746          security, lldb, mdb, assert_messages, cleanup, sgen_marksweep_conc, sgen_split_nursery, sgen_gc_bridge, sgen_debug_helpers, sockets, gac.],
1748         for feature in `echo "$enable_minimal" | sed -e "s/,/ /g"`; do
1749                 eval "mono_feature_disable_$feature='yes'"
1750         done
1751         DISABLED_FEATURES=$enable_minimal
1752         disabled="Disabled:      $enable_minimal"
1753 ],[])
1755 AC_DEFINE_UNQUOTED(DISABLED_FEATURES, "$DISABLED_FEATURES", [String of disabled features])
1757 if test "x$mono_feature_disable_aot" = "xyes"; then
1758         AC_DEFINE(DISABLE_AOT, 1, [Disable AOT Compiler])
1759         enable_system_aot=no
1760         AC_MSG_NOTICE([Disabled AOT compiler])
1763 if test "x$mono_feature_disable_profiler" = "xyes"; then
1764         AC_DEFINE(DISABLE_PROFILER, 1, [Disable default profiler support])
1765         AC_MSG_NOTICE([Disabled support for the profiler])
1767 AM_CONDITIONAL(DISABLE_PROFILER, test x$mono_feature_disable_profiler = xyes)
1769 if test "x$mono_feature_disable_decimal" = "xyes"; then
1770         AC_DEFINE(DISABLE_DECIMAL, 1, [Disable System.Decimal support])
1771         AC_MSG_NOTICE([Disabled support for decimal])
1774 if test "x$mono_feature_disable_pinvoke" = "xyes"; then
1775         AC_DEFINE(DISABLE_PINVOKE, 1, [Disable P/Invoke support])
1776         AC_MSG_NOTICE([Disabled support for P/Invoke])
1779 if test "x$mono_feature_disable_debug" = "xyes"; then
1780         AC_DEFINE(DISABLE_DEBUG, 1, [Disable runtime debugging support])
1781         AC_MSG_NOTICE([Disabled support for runtime debugging])
1784 if test "x$mono_feature_disable_reflection_emit" = "xyes"; then
1785         AC_DEFINE(DISABLE_REFLECTION_EMIT, 1, [Disable reflection emit support])
1786         mono_feature_disable_reflection_emit_save=yes
1787         AC_MSG_NOTICE([Disabled support for Reflection.Emit])
1790 if test "x$mono_feature_disable_reflection_emit_save" = "xyes"; then
1791         AC_DEFINE(DISABLE_REFLECTION_EMIT_SAVE, 1, [Disable assembly saving support in reflection emit])
1792         AC_MSG_NOTICE([Disabled support for Reflection.Emit.Save])
1795 if test "x$mono_feature_disable_large_code" = "xyes"; then
1796         AC_DEFINE(DISABLE_LARGE_CODE, 1, [Disable support for huge assemblies])
1797         AC_MSG_NOTICE([Disabled support for large assemblies])
1800 if test "x$mono_feature_disable_logging" = "xyes"; then
1801         AC_DEFINE(DISABLE_LOGGING, 1, [Disable support debug logging])
1802         AC_MSG_NOTICE([Disabled support for logging])
1805 if test "x$mono_feature_disable_com" = "xyes"; then
1806         AC_DEFINE(DISABLE_COM, 1, [Disable COM support])
1807         AC_MSG_NOTICE([Disabled COM support])
1810 if test "x$mono_feature_disable_ssa" = "xyes"; then
1811         AC_DEFINE(DISABLE_SSA, 1, [Disable advanced SSA JIT optimizations])
1812         AC_MSG_NOTICE([Disabled SSA JIT optimizations])
1815 if test "x$mono_feature_disable_generics" = "xyes"; then
1816         AC_DEFINE(DISABLE_GENERICS, 1, [Disable generics support])
1817         AC_MSG_NOTICE([Disabled Generics Support])
1820 if test "x$mono_feature_disable_shadowcopy" = "xyes"; then
1821         AC_DEFINE(DISABLE_SHADOW_COPY, 1, [Disable Shadow Copy for AppDomains])
1822         AC_MSG_NOTICE([Disabled Shadow copy for AppDomains])
1825 if test "x$mono_feature_disable_portability" = "xyes"; then
1826         AC_DEFINE(DISABLE_PORTABILITY, 1, [Disables the IO portability layer])
1827         AC_MSG_NOTICE([Disabled IO Portability layer])
1830 if test "x$mono_feature_disable_attach" = "xyes"; then
1831         AC_DEFINE(DISABLE_ATTACH, 1, [Disable agent attach support])
1832         AC_MSG_NOTICE([Disabled agent attach])
1835 if test "x$mono_feature_disable_verifier" = "xyes"; then
1836         AC_DEFINE(DISABLE_VERIFIER, 1, [Disables the verifier])
1837         AC_MSG_NOTICE([Disabled the metadata and IL verifiers])
1840 if test "x$mono_feature_disable_jit" = "xyes"; then
1841         AC_DEFINE(DISABLE_JIT, 1, [Disable the JIT, only full-aot mode or interpreter will be supported by the runtime.])
1842         AC_MSG_NOTICE([Disabled the JIT engine, only full AOT or interpreter will be supported])
1845 AM_CONDITIONAL(DISABLE_JIT, test x$mono_feature_disable_jit = xyes)
1847 if test "x$mono_feature_disable_interpreter" = "xyes"; then
1848         AC_DEFINE(DISABLE_INTERPRETER, 1, [Disable the interpreter.])
1849         AC_MSG_NOTICE([Disabled the interpreter])
1852 AM_CONDITIONAL(DISABLE_INTERPRETER, test x$mono_feature_disable_interpreter = xyes)
1854 if test "x$mono_feature_disable_interpreter" != "xyes" -o "x$mono_feature_disable_jit" != "xyes"; then
1855         AC_DEFINE(ENABLE_ILGEN, 1, [Some VES is available at runtime])
1858 AM_CONDITIONAL(ENABLE_ILGEN, test x$mono_feature_disable_interpreter != xyes -o x$mono_feature_disable_jit != xyes)
1860 if test "x$mono_feature_disable_simd" = "xyes"; then
1861         AC_DEFINE(DISABLE_SIMD, 1, [Disable SIMD intrinsics related optimizations.])
1862         AC_MSG_NOTICE([Disabled SIMD support])
1865 if test "x$mono_feature_disable_soft_debug" = "xyes"; then
1866         AC_DEFINE(DISABLE_DEBUGGER_AGENT, 1, [Disable Soft Debugger Agent.])
1867         AC_MSG_NOTICE([Disabled Soft Debugger.])
1870 AM_CONDITIONAL(DISABLE_DEBUGGER_AGENT, test x$mono_feature_disable_debugger_agent = xyes)
1872 if test "x$mono_feature_disable_perfcounters" = "xyes"; then
1873         AC_DEFINE(DISABLE_PERFCOUNTERS, 1, [Disable Performance Counters.])
1874         AC_MSG_NOTICE([Disabled Performance Counters.])
1876 if test "x$mono_feature_disable_normalization" = "xyes"; then
1877         AC_DEFINE(DISABLE_NORMALIZATION, 1, [Disable String normalization support.])
1878         AC_MSG_NOTICE([Disabled String normalization support.])
1881 #TODO: remove assembly_remapping feature name once everyone is using desktop_loader
1882 if test "x$mono_feature_disable_assembly_remapping" = "xyes" || test "x$mono_feature_disable_desktop_loader" = "xyes"; then
1883         AC_DEFINE(DISABLE_DESKTOP_LOADER, 1, [Disable desktop assembly loader semantics.])
1884         AC_MSG_NOTICE([Disabled desktop assembly loader semantics.])
1887 if test "x$mono_feature_disable_shared_perfcounters" = "xyes"; then
1888         AC_DEFINE(DISABLE_SHARED_PERFCOUNTERS, 1, [Disable shared perfcounters.])
1889         AC_MSG_NOTICE([Disabled Shared perfcounters.])
1892 if test "x$mono_feature_disable_appdomains" = "xyes"; then
1893         AC_DEFINE(DISABLE_APPDOMAINS, 1, [Disable support for multiple appdomains.])
1894         AC_MSG_NOTICE([Disabled support for multiple appdomains.])
1897 if test "x$mono_feature_disable_remoting" = "xyes"; then
1898         AC_DEFINE(DISABLE_REMOTING, 1, [Disable remoting support (This disables type proxies and make com non-functional)])
1899         AC_MSG_NOTICE([Disabled remoting])
1902 if test "x$mono_feature_disable_security" = "xyes"; then
1903         AC_DEFINE(DISABLE_SECURITY, 1, [Disable CAS/CoreCLR security])
1904         AC_MSG_NOTICE([Disabled CAS/CoreCLR security manager (used e.g. for Moonlight)])
1907 if test "x$mono_feature_disable_lldb" = "xyes"; then
1908         AC_DEFINE(DISABLE_LLDB, 1, [Disable support code for the LLDB plugin.])
1909         AC_MSG_NOTICE([Disabled LLDB plugin support code.])
1912 if test "x$mono_feature_disable_mdb" = "xyes"; then
1913         AC_DEFINE(DISABLE_MDB, 1, [Disable support for .mdb symbol files.])
1914         AC_MSG_NOTICE([Disabled support for .mdb symbol files.])
1917 if test "x$mono_feature_disable_assert_messages" = "xyes"; then
1918         AC_DEFINE(DISABLE_ASSERT_MESSAGES, 1, [Disable assertion messages.])
1919         AC_MSG_NOTICE([Disabled assertion messages.])
1922 if test "x$mono_feature_disable_cleanup" = "xyes"; then
1923         AC_DEFINE(DISABLE_CLEANUP, 1, [Disable runtime cleanup.])
1924         AC_MSG_NOTICE([Disabled runtime cleanup.])
1927 if test "x$mono_feature_disable_sgen_marksweep_conc" = "xyes"; then
1928         AC_DEFINE(DISABLE_SGEN_MAJOR_MARKSWEEP_CONC, 1, [Disable concurrent gc support in SGEN.])
1929         AC_MSG_NOTICE([Disabled concurrent gc support in SGEN.])
1933 if test "x$mono_feature_disable_sgen_split_nursery" = "xyes"; then
1934         AC_DEFINE(DISABLE_SGEN_SPLIT_NURSERY, 1, [Disable minor=split support in SGEN.])
1935         AC_MSG_NOTICE([Disabled minor=split support in SGEN.])
1938 if test "x$mono_feature_disable_sgen_gc_bridge" = "xyes"; then
1939         AC_DEFINE(DISABLE_SGEN_GC_BRIDGE, 1, [Disable gc bridge support in SGEN.])
1940         AC_MSG_NOTICE([Disabled gc bridge support in SGEN.])
1943 if test "x$mono_feature_disable_sgen_debug_helpers" = "xyes"; then
1944         AC_DEFINE(DISABLE_SGEN_DEBUG_HELPERS, 1, [Disable debug helpers in SGEN.])
1945         AC_MSG_NOTICE([Disabled debug helpers in SGEN.])
1948 if test "x$mono_feature_disable_sockets" = "xyes"; then
1949         AC_DEFINE(DISABLE_SOCKETS, 1, [Disable sockets])
1950         AC_MSG_NOTICE([Disabled sockets])
1953 if test "x$mono_feature_disable_gac" = "xyes"; then
1954         AC_DEFINE(DISABLE_GAC, 1, [Disable GAC])
1955         AC_MSG_NOTICE([Disabled GAC support])
1958 AC_ARG_ENABLE(executables, [  --disable-executables disable the build of the runtime executables], enable_executables=$enableval, enable_executables=yes)
1959 AM_CONDITIONAL(DISABLE_EXECUTABLES, test x$enable_executables = xno)
1961 has_extension_module=no
1962 AC_ARG_ENABLE(extension-module, [  --enable-extension-module=LIST enable the core-extensions from LIST],
1964         for extension in `echo "$enable_extension_module" | sed -e "s/,/ /g"`; do
1965                 if test x$extension = xdefault ; then
1966                         has_extension_module=yes;
1967                 fi
1968         done
1969         if test x$enable_extension_module = xyes; then
1970                 has_extension_module=yes;
1971         fi
1972 ], [])
1974 AM_CONDITIONAL([HAS_EXTENSION_MODULE], [test x$has_extension_module != xno])
1976 if test x$has_extension_module != xno ; then
1977         AC_DEFINE([ENABLE_EXTENSION_MODULE], 1, [Extension module enabled])
1978         AC_MSG_NOTICE([Enabling mono extension module.])
1981 # Deprecated
1982 AC_ARG_ENABLE(gsharedvt, [  --enable-gsharedvt Enable generic valuetype sharing (Deprecated)], enable_gsharedvt=$enableval, enable_gsharedvt=no)
1984 AC_MSG_CHECKING(for visibility __attribute__)
1985 AC_COMPILE_IFELSE([
1986         AC_LANG_SOURCE([[
1987                 void __attribute__ ((visibility ("hidden"))) doit (void) {}
1988                 int main () { doit (); return 0; }
1989         ]])
1990 ], [
1991    have_visibility_hidden=yes
1992    AC_MSG_RESULT(yes)
1993 ], [
1994    have_visibility_hidden=no
1995    AC_MSG_RESULT(no)
1999 dnl Boehm GC configuration
2002 AC_ARG_WITH(libgc,   [  --with-libgc=included,none  Controls the Boehm GC config, default=included],[libgc=$with_libgc],[libgc=included])
2004 AC_ARG_ENABLE(boehm, [  --disable-boehm            Disable the Boehm GC.], support_boehm=$enableval,support_boehm=${support_boehm:-yes})
2005 AM_CONDITIONAL(SUPPORT_BOEHM, test x$support_boehm = xyes)
2007 if test "x$support_boehm" = "xyes"; then
2009         AC_ARG_ENABLE(parallel-mark, [  --enable-parallel-mark     Enables Boehm GC Parallel Marking], enable_parallel_mark=$enableval, enable_parallel_mark=$parallel_mark)
2010         if test x$enable_parallel_mark = xyes; then
2011                 libgc_configure_args="$libgc_configure_args --enable-parallel-mark"
2012         fi
2014         gc_msg=""
2015         LIBGC_CPPFLAGS=
2016         LIBGC_LIBS=
2017         LIBGC_STATIC_LIBS=
2018         libgc_dir=
2019         case "x$libgc" in
2020                 xincluded)
2021                         if test "x$support_boehm" = "xyes"; then
2022                                 libgc_dir=libgc
2023                         fi
2025                         LIBGC_CPPFLAGS='-I$(top_srcdir)/libgc/include'
2026                         LIBGC_LIBS='$(top_builddir)/libgc/libmonogc.la'
2027                         LIBGC_STATIC_LIBS='$(top_builddir)/libgc/libmonogc-static.la'
2029                         BOEHM_DEFINES="-DHAVE_BOEHM_GC"
2031                         if test x$target_win32 = xyes; then
2032                                 BOEHM_DEFINES="$BOEHM_DEFINES -DGC_NOT_DLL"
2033                                 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DGC_BUILD -DGC_NOT_DLL"
2034                         fi
2036                         gc_msg="Included Boehm GC with typed GC"
2037                         if test x$enable_parallel_mark = xyes; then
2038                                 AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "Included Boehm (with typed GC and Parallel Mark)", [GC description])
2039                                 gc_msg="$gc_msg and parallel mark"
2040                         else
2041                                 AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "Included Boehm (with typed GC)", [GC description])
2042                         fi
2043                         ;;
2045                 xboehm|xbohem|xyes)
2046                         AC_MSG_WARN("External Boehm is no longer supported")
2047                         ;;
2049                 xsgen)
2050                         AC_MSG_WARN("Use --with-sgen instead, --with-libgc= controls Boehm configuration")
2051                         ;;
2053                 xnone)
2054                         AC_MSG_WARN("Compiling mono without GC.")
2055                         AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "none", [GC description])
2056                         AC_DEFINE(HAVE_NULL_GC,1,[No GC support.])
2057                         gc_msg="none"
2058                         ;;
2059                 *)
2060                         AC_MSG_ERROR([Invalid argument $libgc to --with-libgc.])
2061                         ;;
2062         esac
2064         AC_ARG_WITH(large-heap, [  --with-large-heap=yes,no       Enable support for GC heaps larger than 3GB (defaults to no)], [large_heap=$withval], [large_heap=no])
2065         if test "x$large_heap" = "xyes"; then
2066            CPPFLAGS="$CPPFLAGS -DLARGE_CONFIG"
2067         fi
2069         AC_SUBST(LIBGC_CPPFLAGS)
2070         AC_SUBST(LIBGC_LIBS)
2071         AC_SUBST(LIBGC_STATIC_LIBS)
2072         AC_SUBST(libgc_dir)
2073         AC_SUBST(BOEHM_DEFINES)
2076 AM_CONDITIONAL(SUPPORT_NULLGC, test "x$libgc" = "xnone")
2079 dnl End of Boehm GC Configuration
2082 dnl *************************************
2083 dnl *** Checks for zero length arrays ***
2084 dnl *************************************
2085 AC_MSG_CHECKING(whether $CC supports zero length arrays)
2086 AC_TRY_COMPILE([
2087         struct s {
2088                 int  length;
2089                 char data [0];
2090         };
2091 ], [], [
2092         AC_MSG_RESULT(yes)
2093         AC_DEFINE_UNQUOTED(MONO_ZERO_LEN_ARRAY, 0, [Length of zero length arrays])
2094 ], [
2095         AC_MSG_RESULT(no)
2096         AC_DEFINE_UNQUOTED(MONO_ZERO_LEN_ARRAY, 1, [Length of zero length arrays])
2099 dnl ***********************************
2100 dnl *** Checks for signals
2101 dnl ***********************************
2102 AC_CHECK_HEADERS(signal.h)
2103 AC_CHECK_FUNCS(sigaction)
2104 AC_CHECK_FUNCS(kill)
2105 AC_CHECK_FUNCS(signal)
2107 # signal() is declared inline in Android headers
2108 # so we need to workaround it by overriding the check.
2109 if test x$platform_android = xyes; then
2110         AC_DEFINE(HAVE_SIGNAL,1)
2113 # `target_ios=yes` does not detect watch devices and fails when cross-compiling
2114 AC_MONO_APPLE_TARGET(TARGET_OS_IPHONE, [mono_native_platform_ios=yes])
2116 if test x$host_win32 = xno; then
2117         dnl *************************************
2118         dnl *** Checks for time capabilities ***
2119         dnl *************************************
2121         AC_MSG_CHECKING(for CLOCK_MONOTONIC)
2122         AC_TRY_COMPILE([#include <time.h>], [
2123                 const int foo = CLOCK_MONOTONIC;
2124         ],[
2125                 AC_MSG_RESULT(yes)
2126                 AC_DEFINE(HAVE_CLOCK_MONOTONIC, 1, [CLOCK_MONOTONIC])
2127         ], [
2128                 AC_MSG_RESULT(no)
2129         ])
2131         AC_MSG_CHECKING(for CLOCK_MONOTONIC_COARSE)
2132         AC_TRY_COMPILE([#include <time.h>], [
2133                 const int foo = CLOCK_MONOTONIC_COARSE;
2134         ],[
2135                 AC_MSG_RESULT(yes)
2136                 AC_DEFINE(HAVE_CLOCK_MONOTONIC_COARSE, 1, [CLOCK_MONOTONIC_COARSE])
2137         ], [
2138                 AC_MSG_RESULT(no)
2139         ])
2141         AC_MSG_CHECKING(for CLOCK_REALTIME)
2142         AC_TRY_COMPILE([#include <time.h>], [
2143                 const int foo = CLOCK_REALTIME;
2144         ],[
2145                 AC_MSG_RESULT(yes)
2146                 AC_DEFINE(HAVE_CLOCK_REALTIME, 1, [CLOCK_REALTIME])
2147         ], [
2148                 AC_MSG_RESULT(no)
2149         ])
2151         AC_CHECK_FUNC(mach_absolute_time, [AC_DEFINE(HAVE_MACH_ABSOLUTE_TIME, 1, [mach_absolute_time])])
2152         AC_CHECK_FUNC(gethrtime, [AC_DEFINE(HAVE_GETHRTIME, 1, [gethrtime])])
2153         AC_CHECK_FUNC(read_real_time, [AC_DEFINE(HAVE_READ_REAL_TIME, 1, [read_real_time])])
2154         AC_CHECK_FUNC(mach_timebase_info, [AC_DEFINE(HAVE_MACH_TIMEBASE_INFO, 1, [mach_timebase_info])])
2155         AC_CHECK_FUNC(futimes,            [AC_DEFINE(HAVE_FUTIMES, 1, [futimes])])
2156         AC_CHECK_FUNC(futimens,           [AC_DEFINE(HAVE_FUTIMENS, 1, [futimens])])
2158         dnl hires monotonic clock support
2159         AC_SEARCH_LIBS(clock_gettime, rt)
2160         AC_CHECK_FUNCS(clock_nanosleep)
2162         dnl dynamic loader support
2163         AC_CHECK_FUNC(dlopen, DL_LIB="",
2164                 AC_CHECK_LIB(dl, dlopen, DL_LIB="-ldl", dl_support=no)
2165         )
2166         if test x$dl_support = xno; then
2167                 AC_MSG_WARN([No dynamic loading support available])
2168         else
2169                 LIBS="$LIBS $DL_LIB"
2170                 dnl from glib's configure.ac
2171                 if test "x$cross_compiling" = "xyes"; then
2172                    AC_MSG_RESULT(cross compiling, assuming no)
2173                    mono_cv_uscore=no
2174                 else
2175                         AC_CACHE_CHECK([for preceeding underscore in symbols],
2176                           mono_cv_uscore,[
2177                           AC_TRY_RUN([#include <dlfcn.h>
2178                           int mono_underscore_test (void) { return 42; }
2179                           int main() {
2180                             void *f1 = (void*)0, *f2 = (void*)0, *handle;
2181                             handle = dlopen ((void*)0, 0);
2182                             if (handle) {
2183                               f1 = dlsym (handle, "mono_underscore_test");
2184                               f2 = dlsym (handle, "_mono_underscore_test");
2185                             } return (!f2 || f1);
2186                           }],
2187                                 [mono_cv_uscore=yes],
2188                                 [mono_cv_uscore=no],
2189                           [])
2190                   ])
2191                 fi
2192                 if test "x$mono_cv_uscore" = "xyes"; then
2193                         AC_DEFINE(MONO_DL_NEED_USCORE, 1, [Does dlsym require leading underscore.])
2194                 fi
2195                 AC_CHECK_FUNC(dlerror)
2196         fi
2198         dnl ******************************************************************
2199         dnl *** Checks for the IKVM JNI interface library                  ***
2200         dnl ******************************************************************
2201         AC_ARG_WITH(ikvm-native, [  --with-ikvm-native=yes,no      build the IKVM JNI interface library (defaults to yes)],[with_ikvm_native=$withval],[with_ikvm_native=$ikvm_native])
2203         ikvm_native_dir=
2204         if test x$with_ikvm_native = xyes; then
2205                 ikvm_native_dir=ikvm-native
2206                 jdk_headers_found="IKVM Native"
2207         fi
2209         AC_SUBST(ikvm_native_dir)
2211         AC_CHECK_HEADERS(execinfo.h)
2213         AC_CHECK_HEADERS(sys/auxv.h sys/resource.h)
2215         AC_CHECK_FUNCS(getgrgid_r)
2216         AC_CHECK_FUNCS(getgrnam_r)
2217         AC_CHECK_FUNCS(getresuid)
2218         AC_CHECK_FUNCS(setresuid)
2219         AC_CHECK_FUNCS(kqueue)
2220         # IBM provides a compatibility library for i offering this function.
2221         # BSDs and others, have execinfo in base or packages.
2222         AC_SEARCH_LIBS(backtrace_symbols, execinfo util)
2223         # Two-step so it sets it in config.h
2224         AC_CHECK_FUNCS(backtrace_symbols)
2225         AC_CHECK_FUNCS(mkstemp)
2226         AC_CHECK_FUNCS(mmap)
2227         AC_CHECK_FUNCS(madvise)
2228         AC_CHECK_FUNCS(getrusage)
2229         AC_CHECK_FUNCS(getpriority)
2230         AC_CHECK_FUNCS(setpriority)
2231         AC_CHECK_FUNCS(dl_iterate_phdr)
2232         AC_CHECK_FUNCS(dladdr)
2233         AC_CHECK_FUNCS(sysconf)
2234         AC_CHECK_FUNCS(getrlimit)
2235         AC_CHECK_FUNCS(prctl)
2236         AC_CHECK_FUNCS(arc4random)
2237         AC_CHECK_FUNCS(nl_langinfo)
2239         AC_CHECK_FUNCS(sched_getaffinity)
2240         AC_CHECK_FUNCS(sched_setaffinity)
2241         AC_CHECK_FUNCS(sched_getcpu)
2243         if test x$platform_android != xyes; then
2244                 AC_CHECK_FUNCS(getpwnam_r)
2245                 AC_CHECK_FUNCS(getpwuid_r)
2246         fi
2248         AC_CHECK_FUNCS(readlink)
2249         AC_CHECK_FUNCS(chmod)
2250         AC_CHECK_FUNCS(lstat)
2251         AC_CHECK_FUNCS(getdtablesize)
2253         AC_CHECK_FUNCS(ftruncate)
2254         AC_CHECK_FUNCS(msync)
2256         AC_CHECK_FUNCS(gethostname getpeername)
2257         AC_CHECK_FUNCS(utime utimes)
2259         AC_CHECK_FUNCS(openlog closelog)
2260         AC_CHECK_FUNCS(atexit)
2261         AC_CHECK_FUNCS(popen)
2263         AC_FUNC_STRERROR_R()
2265         dnl ****************************************************************
2266         dnl *** Check for sched_setaffinity from glibc versions before   ***
2267         dnl *** 2.3.4. The older versions of the function only take 2    ***
2268         dnl *** parameters, not 3.                                       ***
2269         dnl ***                                                          ***
2270         dnl *** Because the interface change was not made in a minor     ***
2271         dnl *** version rev, the __GLIBC__ and __GLIBC_MINOR__ macros    ***
2272         dnl *** won't always indicate the interface sched_affinity has.  ***
2273         dnl ****************************************************************
2274         AC_MSG_CHECKING(for sched_setaffinity from glibc < 2.3.4)
2275         AC_TRY_COMPILE([#include <sched.h>], [
2276             int mask = 1; 
2277             sched_setaffinity(0, &mask);
2278         ], [
2279                 # Yes, we have it...
2280                 AC_MSG_RESULT(yes)
2281                 AC_DEFINE(GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY, 1, [Have GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY])
2282         ], [
2283                 # We have the new, three-parameter version
2284                 AC_MSG_RESULT(no)
2285         ])
2286         AC_TRY_COMPILE([#include <sched.h>], [
2287              CPU_COUNT((void *) 0);
2288         ], [
2289                 AC_MSG_RESULT(yes)
2290                 AC_DEFINE(GLIBC_HAS_CPU_COUNT, 1, [GLIBC has CPU_COUNT macro in sched.h])
2291         ], [
2292                 # We have the new, three-parameter version
2293                 AC_MSG_RESULT(no)
2294         ])
2296         dnl ******************************************************************
2297         dnl *** Check for large file support                               ***
2298         dnl *** (If we were using autoconf 2.50 we'd use AC_SYS_LARGEFILE) ***
2299         dnl ******************************************************************
2300         
2301         # Check that off_t can represent 2**63 - 1 correctly, working around
2302         # potential compiler bugs.  Defines LARGE_FILE_SUPPORT, adds $1 to
2303         # CPPFLAGS and sets $large_offt to yes if the test succeeds
2304         large_offt=no
2305         AC_DEFUN([LARGE_FILES], [
2306                 large_CPPFLAGS=$CPPFLAGS
2307                 CPPFLAGS="$CPPFLAGS $1"
2308                 AC_TRY_COMPILE([
2309                         #include <sys/types.h>
2310                         #include <limits.h>
2311                 ], [
2312                         /* Lifted this compile time assert method from: http://www.jaggersoft.com/pubs/CVu11_3.html */
2313                         #define COMPILE_TIME_ASSERT(pred) \
2314                                 switch(0){case 0:case pred:;}
2315                         COMPILE_TIME_ASSERT(sizeof(off_t) * CHAR_BIT == 64);
2316                 ], [
2317                         AC_MSG_RESULT(ok)
2318                         AC_DEFINE(HAVE_LARGE_FILE_SUPPORT, 1, [Have large file support])
2319                         large_CPPFLAGS="$large_CPPFLAGS $1"
2320                         large_offt=yes
2321                 ], [
2322                         AC_MSG_RESULT(no)
2323                 ])
2324                 CPPFLAGS=$large_CPPFLAGS
2325         ])
2327         AC_MSG_CHECKING(if off_t is 64 bits wide)
2328         LARGE_FILES("")
2329         if test $large_offt = no; then
2330                 AC_MSG_CHECKING(if _FILE_OFFSET_BITS=64 gives 64 bit off_t)
2331                 LARGE_FILES("-D_FILE_OFFSET_BITS=64")
2332         fi
2333         if test $large_offt = no; then
2334                 AC_MSG_WARN([No 64 bit file size support available])
2335         fi
2336         
2337         dnl *****************************
2338         dnl *** Checks for libsocket  ***
2339         dnl *****************************
2340         AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")
2342         case "$host" in
2343                 *-*-*freebsd*)
2344                         dnl *****************************
2345                         dnl *** Checks for libinotify ***
2346                         dnl *****************************
2347                         AC_CHECK_LIB(inotify, inotify_init, LIBS="$LIBS -linotify")
2348         esac
2350         dnl *******************************
2351         dnl *** Checks for MSG_NOSIGNAL ***
2352         dnl *******************************
2353         AC_MSG_CHECKING(for MSG_NOSIGNAL)
2354         AC_TRY_COMPILE([#include <sys/socket.h>], [
2355                 int f = MSG_NOSIGNAL;
2356         ], [
2357                 # Yes, we have it...
2358                 AC_MSG_RESULT(yes)
2359                 AC_DEFINE(HAVE_MSG_NOSIGNAL, 1, [Have MSG_NOSIGNAL])
2360         ], [
2361                 # We'll have to use signals
2362                 AC_MSG_RESULT(no)
2363         ])
2365         dnl *****************************
2366         dnl *** Checks for IPPROTO_IP ***
2367         dnl *****************************
2368         AC_MSG_CHECKING(for IPPROTO_IP)
2369         AC_TRY_COMPILE([#include <netinet/in.h>], [
2370                 int level = IPPROTO_IP;
2371         ], [
2372                 # Yes, we have it...
2373                 AC_MSG_RESULT(yes)
2374                 AC_DEFINE(HAVE_IPPROTO_IP, 1, [Have IPPROTO_IP])
2375         ], [
2376                 # We'll have to use getprotobyname
2377                 AC_MSG_RESULT(no)
2378         ])
2380         dnl *******************************
2381         dnl *** Checks for IPPROTO_IPV6 ***
2382         dnl *******************************
2383         AC_MSG_CHECKING(for IPPROTO_IPV6)
2384         AC_TRY_COMPILE([#include <netinet/in.h>], [
2385                 int level = IPPROTO_IPV6;
2386         ], [
2387                 # Yes, we have it...
2388                 AC_MSG_RESULT(yes)
2389                 AC_DEFINE(HAVE_IPPROTO_IPV6, 1, [Have IPPROTO_IPV6])
2390         ], [
2391                 # We'll have to use getprotobyname
2392                 AC_MSG_RESULT(no)
2393         ])
2395         dnl ******************************
2396         dnl *** Checks for IPPROTO_TCP ***
2397         dnl ******************************
2398         AC_MSG_CHECKING(for IPPROTO_TCP)
2399         AC_TRY_COMPILE([#include <netinet/in.h>], [
2400                 int level = IPPROTO_TCP;
2401         ], [
2402                 # Yes, we have it...
2403                 AC_MSG_RESULT(yes)
2404                 AC_DEFINE(HAVE_IPPROTO_TCP, 1, [Have IPPROTO_TCP])
2405         ], [
2406                 # We'll have to use getprotobyname
2407                 AC_MSG_RESULT(no)
2408         ])
2410         dnl *****************************
2411         dnl *** Checks for SOL_IP     ***
2412         dnl *****************************
2413         AC_MSG_CHECKING(for SOL_IP)
2414         AC_TRY_COMPILE([#include <netdb.h>], [
2415                 int level = SOL_IP;
2416         ], [
2417                 # Yes, we have it...
2418                 AC_MSG_RESULT(yes)
2419                 AC_DEFINE(HAVE_SOL_IP, 1, [Have SOL_IP])
2420         ], [
2421                 # We'll have to use getprotobyname
2422                 AC_MSG_RESULT(no)
2423         ])
2425         dnl *****************************
2426         dnl *** Checks for SOL_IPV6     ***
2427         dnl *****************************
2428         AC_MSG_CHECKING(for SOL_IPV6)
2429         AC_TRY_COMPILE([#include <netdb.h>], [
2430                 int level = SOL_IPV6;
2431         ], [
2432                 # Yes, we have it...
2433                 AC_MSG_RESULT(yes)
2434                 AC_DEFINE(HAVE_SOL_IPV6, 1, [Have SOL_IPV6])
2435         ], [
2436                 # We'll have to use getprotobyname
2437                 AC_MSG_RESULT(no)
2438         ])
2440         dnl *****************************
2441         dnl *** Checks for SOL_TCP    ***
2442         dnl *****************************
2443         AC_MSG_CHECKING(for SOL_TCP)
2444         AC_TRY_COMPILE([#include <netdb.h>], [
2445                 int level = SOL_TCP;
2446         ], [
2447                 # Yes, we have it...
2448                 AC_MSG_RESULT(yes)
2449                 AC_DEFINE(HAVE_SOL_TCP, 1, [Have SOL_TCP])
2450         ], [
2451                 # We'll have to use getprotobyname
2452                 AC_MSG_RESULT(no)
2453         ])
2455         dnl *****************************
2456         dnl *** Checks for IP_PKTINFO ***
2457         dnl *****************************
2458         AC_MSG_CHECKING(for IP_PKTINFO)
2459         AC_TRY_COMPILE([#include <linux/in.h>], [
2460                 int level = IP_PKTINFO;
2461         ], [
2462                 # Yes, we have it...
2463                 AC_MSG_RESULT(yes)
2464                 AC_DEFINE(HAVE_IP_PKTINFO, 1, [Have IP_PKTINFO])
2465         ], [
2466                 AC_MSG_RESULT(no)
2467         ])
2469         dnl *****************************
2470         dnl *** Checks for IPV6_PKTINFO ***
2471         dnl *****************************
2472         AC_MSG_CHECKING(for IPV6_PKTINFO)
2473         AC_TRY_COMPILE([#include <netdb.h>], [
2474                 int level = IPV6_PKTINFO;
2475         ], [
2476                 # Yes, we have it...
2477                 AC_MSG_RESULT(yes)
2478                 AC_DEFINE(HAVE_IPV6_PKTINFO, 1, [Have IPV6_PKTINFO])
2479         ], [
2480                 AC_MSG_RESULT(no)
2481         ])
2483         dnl **********************************
2484         dnl *** Checks for IP_DONTFRAG     ***
2485         dnl **********************************
2486         AC_MSG_CHECKING(for IP_DONTFRAG)
2487         AC_TRY_COMPILE([#include <netinet/in.h>], [
2488                 int level = IP_DONTFRAG;
2489         ], [
2490                 # Yes, we have it...
2491                 AC_MSG_RESULT(yes)
2492                 AC_DEFINE(HAVE_IP_DONTFRAG, 1, [Have IP_DONTFRAG])
2493         ], [
2494                 AC_MSG_RESULT(no)
2495         ])
2497         dnl **********************************
2498         dnl *** Checks for IP_DONTFRAGMENT ***
2499         dnl **********************************
2500         AC_MSG_CHECKING(for IP_DONTFRAGMENT)
2501         AC_TRY_COMPILE([#include <Ws2ipdef.h>], [
2502                 int level = IP_DONTFRAGMENT;
2503         ], [
2504                 # Yes, we have it...
2505                 AC_MSG_RESULT(yes)
2506                 AC_DEFINE(HAVE_IP_DONTFRAGMENT, 1, [Have IP_DONTFRAGMENT])
2507         ], [
2508                 AC_MSG_RESULT(no)
2509         ])
2511         dnl **********************************
2512         dnl *** Checks for IP_MTU_DISCOVER ***
2513         dnl **********************************
2514         AC_MSG_CHECKING(for IP_MTU_DISCOVER)
2515         AC_TRY_COMPILE([#include <linux/in.h>], [
2516                 int level = IP_MTU_DISCOVER;
2517         ], [
2518                 # Yes, we have it...
2519                 AC_MSG_RESULT(yes)
2520                 AC_DEFINE(HAVE_IP_MTU_DISCOVER, 1, [Have IP_MTU_DISCOVER])
2521         ], [
2522                 AC_MSG_RESULT(no)
2523         ])
2525         dnl **********************************
2526         dnl *** Checks for  IP_PMTUDISC_DO ***
2527         dnl **********************************
2528         AC_MSG_CHECKING(for IP_PMTUDISC_DO)
2529         AC_TRY_COMPILE([#include <linux/in.h>], [
2530                 int level = IP_PMTUDISC_DO;
2531         ], [
2532                 # Yes, we have it...
2533                 AC_MSG_RESULT(yes)
2534                 AC_DEFINE(HAVE_IP_PMTUDISC_DO, 1, [Have IP_PMTUDISC_DO])
2535         ], [
2536                 AC_MSG_RESULT(no)
2537         ])
2539         dnl *********************************
2540         dnl *** Check for struct ip_mreqn ***
2541         dnl *********************************
2542         AC_MSG_CHECKING(for struct ip_mreqn)
2543         AC_TRY_COMPILE([#include <netinet/in.h>], [
2544                 struct ip_mreqn mreq;
2545                 mreq.imr_address.s_addr = 0;
2546         ], [
2547                 # Yes, we have it...
2548                 AC_MSG_RESULT(yes)
2549                 AC_DEFINE(HAVE_STRUCT_IP_MREQN, 1, [Have struct ip_mreqn])
2550         ], [
2551                 # We'll just have to try and use struct ip_mreq
2552                 AC_MSG_RESULT(no)
2553                 AC_MSG_CHECKING(for struct ip_mreq)
2554                 AC_TRY_COMPILE([#include <netinet/in.h>], [
2555                         struct ip_mreq mreq;
2556                         mreq.imr_interface.s_addr = 0;
2557                 ], [
2558                         # Yes, we have it...
2559                         AC_MSG_RESULT(yes)
2560                         AC_DEFINE(HAVE_STRUCT_IP_MREQ, 1, [Have struct ip_mreq])
2561                 ], [
2562                         # No multicast support
2563                         AC_MSG_RESULT(no)
2564                 ])
2565         ])
2566         
2567         dnl **********************************
2568         dnl *** Check for getaddrinfo ***
2569         dnl **********************************
2570         AC_MSG_CHECKING(for getaddrinfo)
2571                 AC_TRY_LINK([
2572                 #include <stdio.h>
2573                 #include <netdb.h>
2574         ], [
2575                 getaddrinfo(NULL,NULL,NULL,NULL);
2576         ], [
2577                 # Yes, we have it...
2578                 AC_MSG_RESULT(yes)
2579                 AC_DEFINE(HAVE_GETADDRINFO, 1, [Have getaddrinfo])
2580         ], [
2581                 AC_MSG_RESULT(no)
2582         ])
2584         dnl **********************************
2585         dnl *** Check for gethostbyname2_r ***
2586         dnl **********************************
2587         AC_MSG_CHECKING(for gethostbyname2_r)
2588                 AC_TRY_LINK([
2589                 #include <stdio.h>
2590                 #include <netdb.h>
2591         ], [
2593                 gethostbyname2_r(NULL,0,NULL,NULL,0,NULL,NULL);
2594         ], [
2595                 # Yes, we have it...
2596                 AC_MSG_RESULT(yes)
2597                 AC_DEFINE(HAVE_GETHOSTBYNAME2_R, 1, [Have gethostbyname2_r])
2598         ], [
2599                 AC_MSG_RESULT(no)
2600         ])
2602         dnl **********************************
2603         dnl *** Check for gethostbyname2 ***
2604         dnl **********************************
2605         AC_MSG_CHECKING(for gethostbyname2)
2606                 AC_TRY_LINK([
2607                 #include <stdio.h>
2608                 #include <netdb.h>
2609         ], [
2610                 gethostbyname2(NULL,0);
2611         ], [
2612                 # Yes, we have it...
2613                 AC_MSG_RESULT(yes)
2614                 AC_DEFINE(HAVE_GETHOSTBYNAME2, 1, [Have gethostbyname2])
2615         ], [
2616                 AC_MSG_RESULT(no)
2617         ])
2619         dnl **********************************
2620         dnl *** Check for gethostbyname ***
2621         dnl **********************************
2622         AC_MSG_CHECKING(for gethostbyname)
2623                 AC_TRY_LINK([
2624                 #include <stdio.h>
2625                 #include <netdb.h>
2626         ], [
2627                 gethostbyname(NULL);
2628         ], [
2629                 # Yes, we have it...
2630                 AC_MSG_RESULT(yes)
2631                 AC_DEFINE(HAVE_GETHOSTBYNAME, 1, [Have gethostbyname])
2632         ], [
2633                 AC_MSG_RESULT(no)
2634         ])
2636         dnl **********************************
2637         dnl *** Check for getprotobyname ***
2638         dnl **********************************
2639         AC_MSG_CHECKING(for getprotobyname)
2640                 AC_TRY_LINK([
2641                 #include <stdio.h>
2642                 #include <netdb.h>
2643         ], [
2644                 getprotobyname(NULL);
2645         ], [
2646                 # Yes, we have it...
2647                 AC_MSG_RESULT(yes)
2648                 AC_DEFINE(HAVE_GETPROTOBYNAME, 1, [Have getprotobyname])
2649         ], [
2650                 AC_MSG_RESULT(no)
2651         ])
2653         dnl **********************************
2654         dnl *** Check for getprotobyname_r ***
2655         dnl **********************************
2656         AC_MSG_CHECKING(for getprotobyname_r)
2657                 AC_TRY_LINK([
2658                 #include <stdio.h>
2659                 #include <netdb.h>
2660         ], [
2661                 getprotobyname_r(NULL, NULL, NULL, 0, NULL);
2662         ], [
2663                 # Yes, we have it...
2664                 AC_MSG_RESULT(yes)
2665                 AC_DEFINE(HAVE_GETPROTOBYNAME_R, 1, [Have getprotobyname_r])
2666         ], [
2667                 AC_MSG_RESULT(no)
2668         ])
2670         dnl **********************************
2671         dnl *** Check for getnameinfo ***
2672         dnl **********************************
2673         AC_MSG_CHECKING(for getnameinfo)
2674                 AC_TRY_LINK([
2675                 #include <stdio.h>
2676                 #include <netdb.h>
2677         ], [
2678                 getnameinfo (NULL, 0, NULL, 0, NULL, 0, 0);
2679         ], [
2680                 # Yes, we have it...
2681                 AC_MSG_RESULT(yes)
2682                 AC_DEFINE(HAVE_GETNAMEINFO, 1, [Have getnameinfo])
2683         ], [
2684                 AC_MSG_RESULT(no)
2685         ])
2688         dnl **********************************
2689         dnl *** Check for inet_ntop ***
2690         dnl **********************************
2691         AC_MSG_CHECKING(for inet_ntop)
2692                 AC_TRY_LINK([
2693                 #include <stdio.h>
2694                 #include <arpa/inet.h>
2695         ], [
2696                 inet_ntop (0, NULL, NULL, 0);
2697         ], [
2698                 # Yes, we have it...
2699                 AC_MSG_RESULT(yes)
2700                 AC_DEFINE(HAVE_INET_NTOP, 1, [Have inet_ntop])
2701         ], [
2702                 AC_MSG_RESULT(no)
2703         ])
2705         dnl *****************************
2706         dnl *** Checks for libnsl     ***
2707         dnl *****************************
2708         AC_CHECK_FUNC(gethostbyaddr, , AC_CHECK_LIB(nsl, gethostbyaddr, LIBS="$LIBS -lnsl"))
2710         AC_CHECK_FUNCS(inet_pton inet_aton)
2712         dnl *****************************
2713         dnl *** Checks for libxnet    ***
2714         dnl *****************************
2715         case "${host}" in
2716                 *solaris* )
2717                         AC_MSG_CHECKING(for Solaris XPG4 support)
2718                         if test -f /usr/lib/libxnet.so; then
2719                                 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=500"
2720                                 CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
2721                                 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED=1"
2722                                 LIBS="$LIBS -lxnet"
2723                                 AC_MSG_RESULT(yes)
2724                         else
2725                                 AC_MSG_RESULT(no)
2726                         fi
2728                         if test "$GCC" = "yes"; then
2729                                 CFLAGS="$CFLAGS -Wno-char-subscripts"
2730                         fi
2731                 ;;
2732         esac
2734         dnl *****************************
2735         dnl *** Checks for libpthread ***
2736         dnl *****************************
2737 # on FreeBSD -STABLE, the pthreads functions all reside in libc_r
2738 # and libpthread does not exist
2740         case "${host}" in
2741                 *-*-*haiku*)
2742                         dnl Haiku has pthread in libroot (libc equiv)
2743                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS")
2744                 ;;
2745                 *-*-*freebsd*)
2746                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
2747                 ;;
2748                 *-*-*openbsd*)
2749                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
2750                 ;;
2751                 *)
2752                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -lpthread")
2753                 ;;
2754         esac
2755         AC_CHECK_HEADERS(pthread.h)
2756         AC_CHECK_HEADERS(pthread_np.h)
2757         AC_CHECK_FUNCS(pthread_mutex_timedlock)
2758         AC_CHECK_FUNCS(pthread_getattr_np pthread_attr_get_np pthread_getname_np pthread_setname_np pthread_cond_timedwait_relative_np)
2759         AC_CHECK_FUNCS(pthread_kill)
2760         AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE)
2761         AC_TRY_COMPILE([ #include <pthread.h>], [
2762                 pthread_mutexattr_t attr;
2763                 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
2764         ], [
2765                 AC_MSG_RESULT(ok)
2766         ], [
2767                 AC_MSG_RESULT(no)
2768                 AC_ERROR(Posix system lacks support for recursive mutexes)
2769         ])
2770         AC_CHECK_FUNCS(pthread_attr_setstacksize)
2771         AC_CHECK_FUNCS(pthread_attr_getstack pthread_attr_getstacksize)
2772         AC_CHECK_FUNCS(pthread_get_stacksize_np pthread_get_stackaddr_np)
2773         dnl check that pthread_mutexattr_setprotocol is declared
2774         AC_CHECK_DECLS([pthread_mutexattr_setprotocol], [], [], [[#include <pthread.h>]])
2775         AC_CHECK_FUNCS(mincore mlock munlock)
2777         dnl ***********************************
2778         dnl *** Checks for working __thread ***
2779         dnl ***********************************
2780         AC_MSG_CHECKING(for working __thread)
2781         if test "x$with_tls" != "x__thread"; then
2782                 AC_MSG_RESULT(disabled)
2783         elif test "x$cross_compiling" = "xyes"; then
2784                 AC_MSG_RESULT(cross compiling, assuming yes)
2785         else
2786                 AC_TRY_RUN([
2787                         #if defined(__APPLE__) && defined(__clang__)
2788                         #error "__thread does not currently work with clang on Mac OS X"
2789                         #endif
2790                         
2791                         #include <unistd.h>
2792                         #include <pthread.h>
2793                         __thread int i;
2794                         static int res1, res2;
2796                         void thread_main (void *arg)
2797                         {
2798                                 i = arg;
2799                                 sleep (1);
2800                                 if (arg == 1)
2801                                         res1 = (i == arg);
2802                                 else
2803                                         res2 = (i == arg);
2804                         }
2806                         int main () {
2807                                 pthread_t t1, t2;
2809                                 i = 5;
2811                                 pthread_create (&t1, NULL, thread_main, 1);
2812                                 pthread_create (&t2, NULL, thread_main, 2);
2814                                 pthread_join (t1, NULL);
2815                                 pthread_join (t2, NULL);
2817                                 return !(res1 + res2 == 2);
2818                         }
2819                 ], [
2820                                 AC_MSG_RESULT(yes)
2821                 ], [
2822                                 AC_MSG_RESULT(no)
2823                                 with_tls=pthread
2824                 ])
2825         fi
2827         dnl **************************************
2828         dnl *** Checks for working sigaltstack ***
2829         dnl **************************************
2830         AC_MSG_CHECKING(for working sigaltstack)
2831         if test "x$with_sigaltstack" != "xyes"; then
2832                 AC_MSG_RESULT(disabled)
2833         elif test "x$cross_compiling" = "xyes"; then
2834                 AC_MSG_RESULT(cross compiling, assuming no)
2835                 with_sigaltstack=no
2836         else
2837                 AC_TRY_RUN([
2838                         #include <stdio.h>
2839                         #include <stdlib.h>
2840                         #include <unistd.h>
2841                         #include <signal.h>
2842                         #include <pthread.h>
2843                         #include <sys/wait.h>
2844                         #if defined(__FreeBSD__) || defined(__NetBSD__)
2845                         #define SA_STACK SA_ONSTACK
2846                         #endif
2847                         static void
2848                         sigsegv_signal_handler (int _dummy, siginfo_t *info, void *context)
2849                         {
2850                                 exit (0);
2851                         }
2853                         volatile char*__ptr = NULL;
2854                         static void *
2855                         loop (void *ignored)
2856                         {
2857                                 *__ptr = 0;
2858                                 return NULL;
2859                         }
2861                         static void
2862                         child ()
2863                         {
2864                                 struct sigaction sa;
2865                                 stack_t sas;
2866                                 pthread_t id;
2867                                 pthread_attr_t attr;
2869                                 sa.sa_sigaction = sigsegv_signal_handler;
2870                                 sigemptyset (&sa.sa_mask);
2871                                 sa.sa_flags = SA_SIGINFO | SA_ONSTACK;
2872                                 if (sigaction (SIGSEGV, &sa, NULL) == -1) {
2873                                         perror ("sigaction");
2874                                         return;
2875                                 }
2877                                 /* x86 darwin deliver segfaults using SIGBUS */
2878                                 if (sigaction (SIGBUS, &sa, NULL) == -1) {
2879                                         perror ("sigaction");
2880                                         return;
2881                                 }
2882                                 sas.ss_sp = malloc (SIGSTKSZ);
2883                                 sas.ss_size = SIGSTKSZ;
2884                                 sas.ss_flags = 0;
2885                                 if (sigaltstack (&sas, NULL) == -1) {
2886                                         perror ("sigaltstack");
2887                                         return;
2888                                 }
2890                                 pthread_attr_init (&attr);
2891                                 if (pthread_create(&id, &attr, loop, &attr) != 0) {
2892                                         printf ("pthread_create\n");
2893                                         return;
2894                                 }
2896                                 sleep (100);
2897                         }
2899                         int
2900                         main ()
2901                         {
2902                                 pid_t son;
2903                                 int status;
2904                                 int i;
2906                                 son = fork ();
2907                                 if (son == -1) {
2908                                         return 1;
2909                                 }
2911                                 if (son == 0) {
2912                                         child ();
2913                                         return 0;
2914                                 }
2916                                 for (i = 0; i < 300; ++i) {
2917                                         waitpid (son, &status, WNOHANG);
2918                                         if (WIFEXITED (status) && WEXITSTATUS (status) == 0)
2919                                                 return 0;
2920                                         usleep (10000);
2921                                 }
2923                                 kill (son, SIGKILL);
2924                                 return 1;
2925                         }
2927                 ], [
2928                                 AC_MSG_RESULT(yes)
2929                                 AC_DEFINE(HAVE_WORKING_SIGALTSTACK, 1, [Have a working sigaltstack])
2930                 ], [
2931                                 with_sigaltstack=no
2932                                 AC_MSG_RESULT(no)
2933                 ])
2934         fi
2936         dnl ********************************
2937         dnl *** Checks for semaphore lib ***
2938         dnl ********************************
2939         # 'Real Time' functions on Solaris
2940         # posix4 on Solaris 2.6
2941         # pthread (first!) on Linux
2942         AC_SEARCH_LIBS(sem_init, pthread rt posix4) 
2944         AC_SEARCH_LIBS(shm_open, pthread rt posix4) 
2945         AC_CHECK_FUNCS(shm_open)
2947         dnl ********************************
2948         dnl ***  Checks for gettext lib  ***
2949         dnl ********************************
2950         # This is needed for some hackery for AIX;
2951         # Mono itself doesn't use it, but DllMap includes it
2952         AC_SEARCH_LIBS([gettext], [intl])
2954         dnl ********************************
2955         dnl *** Checks for timezone stuff **
2956         dnl ********************************
2957         AC_CACHE_CHECK(for tm_gmtoff in struct tm, ac_cv_struct_tm_gmtoff,
2958                 AC_TRY_COMPILE([
2959                         #include <time.h>
2960                         ], [
2961                         struct tm tm;
2962                         tm.tm_gmtoff = 1;
2963                         ], ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no))
2964         if test $ac_cv_struct_tm_gmtoff = yes; then
2965                 AC_DEFINE(HAVE_TM_GMTOFF, 1, [Have tm_gmtoff])
2966         else
2967                 AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone,
2968                         AC_TRY_COMPILE([
2969                                 #include <time.h>
2970                         ], [
2971                                 timezone = 1;
2972                         ], ac_cv_var_timezone=yes, ac_cv_var_timezone=no))
2973                 if test $ac_cv_var_timezone = yes; then
2974                         AC_DEFINE(HAVE_TIMEZONE, 1, [Have timezone variable])
2975                 else
2976                         AC_ERROR(unable to find a way to determine timezone)
2977                 fi
2978         fi
2980         dnl *********************************
2981         dnl *** Checks for math functions ***
2982         dnl *********************************
2983         AC_SEARCH_LIBS(sqrtf, m)
2985         dnl ****************************************************************
2986         dnl *** Checks for working poll() (macosx defines it but doesn't ***
2987         dnl *** have it in the library (duh))                            ***
2988         dnl ****************************************************************
2989         AC_CHECK_FUNCS(poll)
2991         dnl **********************************
2992         dnl *** epoll                      ***
2993         dnl **********************************
2994         AC_CHECK_HEADERS(sys/epoll.h)
2995         haveepoll=no
2996         AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], )
2997         if test "x$haveepoll" = "xyes" -a "x$ac_cv_header_sys_epoll_h" = "xyes"; then
2998                 AC_DEFINE(HAVE_EPOLL, 1, [epoll supported])
2999         fi
3001         havekqueue=no
3003         AC_CHECK_HEADERS(sys/event.h)
3004         AC_CHECK_FUNCS(kqueue, [havekqueue=yes], )
3006         dnl **************************************
3007         dnl * Darwin has a race that prevents us from using reliably:
3008         dnl * http://lists.apple.com/archives/darwin-dev/2011/Jun/msg00016.html
3009         dnl * Since kqueue is mostly used for scaling large web servers, 
3010         dnl * and very few folks run Mono on large web servers on OSX, falling
3011         dnl * back 
3012         dnl **************************************
3013         if test "x$havekqueue" = "xyes" -a "x$ac_cv_header_sys_event_h" = "xyes"; then
3014                 if test "x$host_darwin" = "xno"; then
3015                         AC_DEFINE(USE_KQUEUE_FOR_THREADPOOL, 1, [Use kqueue for the threadpool])
3016                 fi
3017         fi
3019         dnl ******************************
3020         dnl *** Checks for SIOCGIFCONF ***
3021         dnl ******************************
3022         AC_CHECK_HEADERS(sys/ioctl.h)
3023         AC_CHECK_HEADERS(net/if.h, [], [],
3024            [
3025            #ifdef HAVE_SYS_TYPES_H
3026            # include <sys/types.h>
3027            #endif
3028            #ifdef HAVE_SYS_SOCKET_H
3029            # include <sys/socket.h>
3030            #endif
3031            ])
3032         AC_MSG_CHECKING(for ifreq)
3033         AC_TRY_COMPILE([
3034                 #include <stdio.h>
3035                 #include <sys/ioctl.h>
3036                 #include <net/if.h>
3037                 ], [
3038                 struct ifconf ifc;
3039                 struct ifreq *ifr;
3040                 void *x;
3041                 ifc.ifc_len = 0;
3042                 ifc.ifc_buf = NULL;
3043                 x = (void *) &ifr->ifr_addr;
3044                 ],[
3045                         AC_MSG_RESULT(yes)
3046                         AC_DEFINE(HAVE_SIOCGIFCONF, 1, [Can get interface list])
3047                 ], [
3048                         AC_MSG_RESULT(no)
3049                 ])
3050         dnl **********************************
3051         dnl ***     Checks for sin_len     ***
3052         dnl **********************************
3053         AC_MSG_CHECKING(for sockaddr_in.sin_len)
3054         AC_TRY_COMPILE([
3055                 #include <netinet/in.h>
3056                 ], [
3057                 struct sockaddr_in saddr;
3058                 saddr.sin_len = sizeof (saddr);
3059                 ],[
3060                         AC_MSG_RESULT(yes)
3061                         AC_DEFINE(HAVE_SOCKADDR_IN_SIN_LEN, 1, [sockaddr_in has sin_len])
3062                 ], [
3063                         AC_MSG_RESULT(no)
3064                 ])      
3065         dnl **********************************
3066         dnl ***    Checks for sin6_len     ***
3067         dnl **********************************
3068         AC_MSG_CHECKING(for sockaddr_in6.sin6_len)
3069         AC_TRY_COMPILE([
3070                 #include <netinet/in.h>
3071                 ], [
3072                 struct sockaddr_in6 saddr6;
3073                 saddr6.sin6_len = sizeof (saddr6);
3074                 ],[
3075                         AC_MSG_RESULT(yes)
3076                         AC_DEFINE(HAVE_SOCKADDR_IN6_SIN_LEN, 1, [sockaddr_in6 has sin6_len])
3077                 ], [
3078                         AC_MSG_RESULT(no)
3079                 ])
3080         dnl **********************************
3081         dnl *** Check for getifaddrs       ***
3082         dnl **********************************
3083         AC_MSG_CHECKING(for getifaddrs)
3084                 AC_TRY_LINK([
3085                 #include <stdio.h>
3086                 #include <sys/types.h>
3087                 #include <sys/socket.h>
3088                 #ifdef HAVE_NET_IF_H
3089                 #include <net/if.h>
3090                 #endif
3091                 #include <ifaddrs.h>
3092         ], [
3093                 getifaddrs(NULL);
3094         ], [
3095                 # Yes, we have it...
3096                 AC_MSG_RESULT(yes)
3097                 AC_DEFINE(HAVE_GETIFADDRS, 1, [Have getifaddrs])
3098         ], [
3099                 AC_MSG_RESULT(no)
3100         ])
3101         dnl **********************************
3102         dnl *** Check for if_nametoindex   ***
3103         dnl **********************************
3104         AC_MSG_CHECKING(for if_nametoindex)
3105                 AC_TRY_LINK([
3106                 #include <stdio.h>
3107                 #include <sys/types.h>
3108                 #include <sys/socket.h>
3109                 #include <net/if.h>
3110         ], [
3111                 if_nametoindex(NULL);
3112         ], [
3113                 # Yes, we have it...
3114                 AC_MSG_RESULT(yes)
3115                 AC_DEFINE(HAVE_IF_NAMETOINDEX, 1, [Have if_nametoindex])
3116         ], [
3117                 AC_MSG_RESULT(no)
3118         ])
3119         dnl **********************************
3120         dnl *** Check for access ***
3121         dnl **********************************
3122         AC_MSG_CHECKING(for access)
3123                 AC_TRY_LINK([
3124                 #include <unistd.h>
3125         ], [
3126                 access(NULL,0);
3127         ], [
3128                 # Yes, we have it...
3129                 AC_MSG_RESULT(yes)
3130                 AC_DEFINE(HAVE_ACCESS, 1, [Have access])
3131         ], [
3132                 AC_MSG_RESULT(no)
3133         ])
3134                         
3135         dnl **********************************
3136         dnl *** Checks for proclib         ***
3137         dnl **********************************
3138         AC_CHECK_HEADER(sys/errno.h, [AC_DEFINE(HAVE_SYS_ERRNO_H, 1, Define to 1 if you have the <sys/errno.h> header file.)])
3139         dnl **********************************
3140         dnl *** Checks for MonoPosixHelper ***
3141         dnl **********************************
3142         AC_CHECK_HEADERS(checklist.h)
3143         AC_CHECK_HEADERS(pathconf.h)
3144         AC_CHECK_HEADERS(fstab.h)
3145         AC_CHECK_HEADERS(attr/xattr.h)
3146         AC_CHECK_HEADERS(sys/extattr.h)
3147         AC_CHECK_HEADERS(sys/sendfile.h)
3148         AC_CHECK_HEADERS(sys/statvfs.h)
3149         AC_CHECK_HEADERS(sys/statfs.h)
3150         AC_CHECK_HEADERS(sys/vfstab.h)
3151         AC_CHECK_HEADERS(sys/xattr.h)
3152         AC_CHECK_HEADERS(sys/mman.h)
3153         AC_CHECK_HEADERS(sys/param.h)
3154         AC_CHECK_HEADERS(sys/mount.h, [], [],
3155                 [
3156                 #ifdef HAVE_SYS_PARAM_H
3157                 # include <sys/param.h>
3158                 #endif
3159                 ])
3160         AC_CHECK_HEADERS(sys/mount.h)
3161         AC_CHECK_FUNCS(confstr)
3162         AC_CHECK_FUNCS(seekdir telldir)
3163         AC_CHECK_FUNCS(getdomainname)
3164         AC_CHECK_FUNCS(setdomainname)
3165         AC_CHECK_FUNCS(endgrent getgrent fgetgrent setgrent)
3166         AC_CHECK_FUNCS(setgroups)
3167         AC_CHECK_FUNCS(endpwent getpwent fgetpwent setpwent)
3168         AC_CHECK_FUNCS(getfsstat)
3169         AC_CHECK_FUNCS(lutimes futimes)
3170         AC_CHECK_FUNCS(mremap)
3171         AC_CHECK_FUNCS(remap_file_pages)
3172         AC_CHECK_FUNCS(posix_fadvise)
3173         AC_CHECK_FUNCS(posix_fallocate)
3174         AC_CHECK_FUNCS(posix_madvise)
3175         AC_CHECK_FUNCS(vsnprintf)
3176         AC_CHECK_FUNCS(sendfile)
3177         AC_CHECK_FUNCS(gethostid sethostid)
3178         AC_CHECK_FUNCS(sethostname)
3179         AC_CHECK_FUNCS(statfs)
3180         AC_CHECK_FUNCS(fstatfs)
3181         AC_CHECK_FUNCS(statvfs)
3182         AC_CHECK_FUNCS(fstatvfs)
3183         AC_CHECK_FUNCS(stime)
3184         AC_CHECK_FUNCS(ttyname_r)
3185         AC_CHECK_FUNCS(psignal)
3186         AC_CHECK_FUNCS(getlogin_r)
3187         AC_CHECK_FUNCS(lockf)
3188         AC_CHECK_FUNCS(swab)
3189         AC_CHECK_FUNCS(setusershell endusershell)
3190         AC_CHECK_FUNCS(futimens utimensat)
3191         AC_CHECK_FUNCS(fstatat mknodat readlinkat)
3192         AC_CHECK_FUNCS(readv writev preadv pwritev)
3193         AC_CHECK_FUNCS(setpgid)
3194         AC_CHECK_FUNCS(system)
3195         AC_CHECK_FUNCS(fork execv execve)
3196         AC_CHECK_FUNCS(waitpid)
3197         AC_CHECK_FUNCS(accept4)
3198         AC_CHECK_FUNCS(localtime_r)
3199         AC_CHECK_FUNCS(mkdtemp)
3200         AC_CHECK_SIZEOF(size_t)
3201         AC_CHECK_TYPES([blksize_t], [AC_DEFINE(HAVE_BLKSIZE_T)], , 
3202                 [#include <sys/types.h>
3203                  #include <sys/stat.h>
3204                  #include <unistd.h>])
3205         AC_CHECK_TYPES([blkcnt_t], [AC_DEFINE(HAVE_BLKCNT_T)], ,
3206                 [#include <sys/types.h>
3207                  #include <sys/stat.h>
3208                  #include <unistd.h>])
3209         AC_CHECK_TYPES([suseconds_t], [AC_DEFINE(HAVE_SUSECONDS_T)], ,
3210                 [#include <sys/time.h>])
3211         AC_CHECK_TYPES([struct cmsghdr], [AC_DEFINE(HAVE_STRUCT_CMSGHDR)], ,
3212                 [#include <sys/socket.h>])
3213         AC_CHECK_TYPES([struct flock], [AC_DEFINE(HAVE_STRUCT_FLOCK)], ,
3214                 [#include <unistd.h>
3215                  #include <fcntl.h>])
3216         AC_CHECK_TYPES([struct iovec], [AC_DEFINE(HAVE_STRUCT_IOVEC)], ,
3217                 [#include <sys/uio.h>])
3218         AC_CHECK_TYPES([struct linger], [AC_DEFINE(HAVE_STRUCT_LINGER)], ,
3219                 [#include <sys/socket.h>])
3220         AC_CHECK_TYPES([struct pollfd], [AC_DEFINE(HAVE_STRUCT_POLLFD)], ,
3221                 [#include <sys/poll.h>])
3222         AC_CHECK_TYPES([struct sockaddr], [AC_DEFINE(HAVE_STRUCT_SOCKADDR)], ,
3223                 [#include <sys/socket.h>])
3224         AC_CHECK_TYPES([struct sockaddr_storage], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)], ,
3225                 [#include <sys/socket.h>])
3226         AC_CHECK_TYPES([struct sockaddr_in], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN)], ,
3227                 [#include <netinet/in.h>])
3228         AC_CHECK_TYPES([struct sockaddr_in6], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)], ,
3229                 [#include <netinet/in.h>])
3230         AC_CHECK_TYPES([struct sockaddr_un], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_UN)], ,
3231                 [#include <sys/un.h>])
3232         AC_CHECK_TYPES([struct stat], [AC_DEFINE(HAVE_STRUCT_STAT)], ,
3233                 [#include <sys/types.h>
3234                  #include <sys/stat.h>
3235                  #include <unistd.h>])
3236         AC_CHECK_TYPES([struct timespec], [AC_DEFINE(HAVE_STRUCT_TIMESPEC)], ,
3237                 [#include <time.h>])
3238         AC_CHECK_TYPES([struct timeval], [AC_DEFINE(HAVE_STRUCT_TIMEVAL)], ,
3239                 [#include <sys/time.h>
3240                  #include <sys/types.h>
3241                  #include <utime.h>])
3242         AC_CHECK_TYPES([struct timezone], [AC_DEFINE(HAVE_STRUCT_TIMEZONE)], ,
3243                 [#include <sys/time.h>])
3244         AC_CHECK_TYPES([struct utimbuf], [AC_DEFINE(HAVE_STRUCT_UTIMBUF)], ,
3245                 [#include <sys/types.h>
3246                  #include <utime.h>])
3247         AC_CHECK_MEMBERS(
3248                 [struct dirent.d_off, struct dirent.d_reclen, struct dirent.d_type],,, 
3249                 [#include <sys/types.h>
3250                  #include <dirent.h>])
3251         AC_CHECK_MEMBERS(
3252                 [struct passwd.pw_gecos],,, 
3253                 [#include <sys/types.h>
3254                  #include <pwd.h>])
3255         AC_CHECK_MEMBERS(
3256                 [struct statfs.f_flags],,, 
3257                 [#include <sys/types.h>
3258                  #include <sys/vfs.h>])
3259         AC_CHECK_MEMBERS(
3260                 [struct stat.st_atim, struct stat.st_mtim, struct stat.st_atimespec, struct stat.st_ctim],,, 
3261                 [#include <sys/types.h>
3262                  #include <sys/stat.h>
3263                  #include <unistd.h>])
3265         dnl Favour xattr through glibc, but use libattr if we have to
3266         AC_CHECK_FUNC(lsetxattr, ,
3267                 AC_CHECK_LIB(attr, lsetxattr, XATTR_LIB="-lattr",)
3268         )
3269         AC_SUBST(XATTR_LIB)
3271         dnl kinfo_proc.kp_proc works on darwin but fails on other simil-bsds
3272         AC_CHECK_MEMBERS(
3273                 [struct kinfo_proc.kp_proc],,, 
3274                 [#include <sys/types.h>
3275                  #include <sys/param.h>
3276                  #include <sys/sysctl.h>
3277                  #include <sys/proc.h>
3278                  ])
3280         dnl *********************************
3281         dnl *** Checks for Windows compilation ***
3282         dnl *********************************
3283         AC_CHECK_HEADERS(sys/time.h)
3284         AC_CHECK_HEADERS(sys/param.h)
3285         AC_CHECK_HEADERS(dirent.h)
3287         dnl ******************************************
3288         dnl *** Checks for OSX and iOS compilation ***
3289         dnl ******************************************
3290         AC_CHECK_HEADERS(CommonCrypto/CommonDigest.h)
3292         dnl *********************************
3293         dnl *** Check for Console 2.0 I/O ***
3294         dnl *********************************
3295         AC_CHECK_HEADERS([curses.h])
3296         AC_CHECK_HEADERS([term.h], [], [],
3297         [#if HAVE_CURSES_H
3298          #include <curses.h>
3299          #endif
3300         ])
3301         AC_CHECK_HEADERS([termios.h])
3303         dnl *********************************
3304         dnl *** Checks for random         ***
3305         dnl *********************************
3306         if test x$host_darwin = xno; then
3307                 AC_CHECK_HEADERS(sys/random.h)
3308                 AC_CHECK_FUNCS(getrandom getentropy)
3309         fi
3311         dnl *********************************
3312         dnl *** Checks for Mono.Native    ***
3313         dnl *********************************
3315         # Translated from CMake in external/corefx/src/Native/Unix/configure.cmake, keep in sync!
3316         # Note: check_c_source_compiles in CMake is AC_TRY_LINK in autoconf
3318         AC_MSG_CHECKING(for linux/in.h)
3319         AC_TRY_COMPILE([
3320                 #include <sys/socket.h>
3321                 #include <linux/in.h>
3322         ], [
3323         ],[
3324                 AC_MSG_RESULT(yes)
3325                 AC_DEFINE(HAVE_LINUX_IN_H, 1, [linux/in.h])
3326         ], [
3327                 AC_MSG_RESULT(no)
3328         ])
3330         AC_CHECK_HEADERS([linux/if_packet.h])
3332         AC_MSG_CHECKING(for struct in_pktinfo)
3333         AC_TRY_COMPILE([
3334                 #ifdef HAVE_LINUX_IN_H
3335                 #include <sys/socket.h>
3336                 #include <linux/in.h>
3337                 #else
3338                 #include <netinet/in.h>
3339                 #endif
3340         ], [
3341                 struct in_pktinfo pktinfo;
3342         ],[
3343                 AC_MSG_RESULT(yes)
3344                 AC_DEFINE(HAVE_IN_PKTINFO, 1, [struct in_pktinfo])
3345         ], [
3346                 AC_MSG_RESULT(no)
3347         ])
3349         AC_MSG_CHECKING(for struct ip_mreqn)
3350         AC_TRY_COMPILE([
3351                 #if HAVE_LINUX_IN_H
3352                 #include <sys/socket.h>
3353                 #include <linux/in.h>
3354                 #else
3355                 #include <netinet/in.h>
3356                 #endif
3357         ], [
3358                 struct ip_mreqn mreqn;
3359         ],[
3360                 AC_MSG_RESULT(yes)
3361                 AC_DEFINE(HAVE_IP_MREQN, 1, struct ip_mreqn)
3362         ], [
3363                 AC_MSG_RESULT(no)
3364         ])
3366         if test x$host_darwin = xno; then
3367                 AC_CHECK_TYPES([struct flock64], [AC_DEFINE(HAVE_FLOCK64, 1, struct flock64)], , [#include <fcntl.h>])
3368         fi
3370         AC_CHECK_DECL(O_CLOEXEC,         [AC_DEFINE(HAVE_O_CLOEXEC, 1, [O_CLOEXEC])], [], [[#include <fcntl.h>]])
3371         AC_CHECK_DECL(F_DUPFD_CLOEXEC,   [AC_DEFINE(HAVE_F_DUPFD_CLOEXEC, 1, [F_DUPFD_CLOEXEC])], [], [[#include <fcntl.h>]])
3373         # AC_CHECK_FUNC(getifaddrs,           [AC_DEFINE(HAVE_GETIFADDRS, 1, [getifaddrs])]) # already done above
3374         AC_CHECK_FUNC(Qp2getifaddrs,     [AC_DEFINE(HAVE_QP2GETIFADDRS, 1, [Qp2getifaddrs])])
3376         AC_CHECK_FUNC(lseek64,           [AC_DEFINE(HAVE_LSEEK64, 1, [lseek64])])
3377         AC_CHECK_FUNC(mmap64,            [AC_DEFINE(HAVE_MMAP64, 1, [mmap64])])
3378         AC_CHECK_FUNC(ftruncate64,       [AC_DEFINE(HAVE_FTRUNCATE64, 1, [ftruncate64])])
3379         AC_CHECK_FUNC(posix_fadvise64,   [AC_DEFINE(HAVE_POSIX_FADVISE64, 1, [posix_fadvise64])])
3381         if test "x$mono_native_platform_ios" = "xno"; then
3382                 # On iOS, `stat64()` is deprecated and there is no `struct stat64` and `stat()`
3383                 # is either 32-bit or 64-bit based on the device / simulator that you're running on.
3384                 AC_CHECK_FUNC(stat64,            [AC_DEFINE(HAVE_STAT64, 1, [stat64])])
3385         fi
3387         AC_CHECK_DECL(pipe2,             [AC_DEFINE(HAVE_PIPE2, 1, [pipe2])])
3388         AC_CHECK_FUNC(getmntinfo,        [AC_DEFINE(HAVE_GETMNTINFO, 1, [getmntinfo])], [], [[#include <unistd.h>]])
3389         AC_CHECK_FUNC(strcpy_s,          [AC_DEFINE(HAVE_STRCPY_S, 1, [strcpy_s])])
3390         AC_CHECK_FUNC(strlcpy,           [AC_DEFINE(HAVE_STRLCPY, 1, [strlcpy])])
3391         AC_CHECK_FUNC(posix_fadvise,     [AC_DEFINE(HAVE_POSIX_ADVISE, 1, [posix_fadvise])]) # the define is called HAVE_POSIX_ADVISE in corefx, not a typo
3392         AC_CHECK_FUNC(ioctl,             [AC_DEFINE(HAVE_IOCTL, 1, [ioctl])])
3393         AC_CHECK_FUNC(sched_getaffinity, [AC_DEFINE(HAVE_SCHED_GETAFFINITY, 1, [sched_getaffinity])])
3394         AC_CHECK_FUNC(sched_setaffinity, [AC_DEFINE(HAVE_SCHED_SETAFFINITY, 1, [sched_setaffinity])])
3396         if test "x$platform_android" != "xyes"; then
3397                 AC_CHECK_FUNC(arc4random_buf,    [AC_DEFINE(HAVE_ARC4RANDOM_BUF, 1, [arc4random_buf])])
3398         fi
3400         AC_CHECK_DECL(TIOCGWINSZ,        [AC_DEFINE(HAVE_TIOCGWINSZ, 1, [TIOCGWINSZ])], [], [[#include <sys/ioctl.h>]])
3401         AC_CHECK_FUNC(tcgetattr,         [AC_DEFINE(HAVE_TCGETATTR, 1, [tcgetattr])])
3402         AC_CHECK_FUNC(tcsetattr,         [AC_DEFINE(HAVE_TCSETATTR, 1, [tcsetattr])])
3403         AC_CHECK_DECL(ECHO,              [AC_DEFINE(HAVE_ECHO, 1, [ECHO])], [], [[#include <termios.h>]])
3404         AC_CHECK_DECL(ICANON,            [AC_DEFINE(HAVE_ICANON, 1, [ICANON])], [], [[#include <termios.h>]])
3405         AC_CHECK_DECL(TCSANOW,           [AC_DEFINE(HAVE_TCSANOW, 1, [TCSANOW])], [], [[#include <termios.h>]])
3407         AC_CHECK_MEMBER(struct stat.st_birthtimespec,
3408                 [AC_DEFINE(HAVE_STAT_BIRTHTIME, 1, [struct stat.st_birthtimespec])],
3409                 [],
3410                 [#include <sys/types.h>
3411                 #include <sys/stat.h>])
3412         AC_CHECK_MEMBER(struct stat.st_atimespec,
3413                 [AC_DEFINE(HAVE_STAT_TIMESPEC, 1, [struct stat.st_atimespec])],
3414                 [],
3415                 [#include <sys/types.h>
3416                 #include <sys/stat.h>])
3417         AC_CHECK_MEMBER(struct stat.st_atim,
3418                 [AC_DEFINE(HAVE_STAT_TIM, 1, [struct stat.st_atim])],
3419                 [],
3420                 [#include <sys/types.h>
3421                 #include <sys/stat.h>])
3422         AC_CHECK_MEMBER(struct stat.st_atimensec,
3423                 [AC_DEFINE(HAVE_STAT_NSEC, 1, [struct stat.st_atimensec])],
3424                 [],
3425                 [#include <sys/types.h>
3426                 #include <sys/stat.h>])
3427         AC_CHECK_MEMBER(struct dirent.d_namlen,       [AC_DEFINE(HAVE_DIRENT_NAME_LEN, 1, [struct dirent.d_namlen])], [], [#include <dirent.h>])
3428         AC_CHECK_MEMBER(struct statfs.f_fstypename,   [AC_DEFINE(HAVE_STATFS_FSTYPENAME, 1, [struct statfs.f_fstypename])], [], [#include <sys/mount.h>])
3429         AC_CHECK_MEMBER(struct statvfs.f_fstypename,  [AC_DEFINE(HAVE_STATVFS_FSTYPENAME, 1, [struct statvfs.f_fstypename])], [], [#include <sys/mount.h>])
3431         AC_MSG_CHECKING(for struct statfs)
3432         AC_TRY_COMPILE([
3433                 #if defined(HAVE_STATFS_FSTYPENAME) || defined(HAVE_STATVFS_FSTYPENAME)
3434                 #include <sys/mount.h>
3435                 #else
3436                 #include <sys/statfs.h>
3437                 #endif
3438         ], [
3439                 struct statfs;
3440         ],[
3441                 AC_MSG_RESULT(yes)
3442                 AC_DEFINE(HAVE_STATFS, 1, [struct statfs])
3443         ], [
3444                 AC_MSG_RESULT(no)
3445         ])
3447         if test "x$ac_cv_func_strerror_r_char_p" = "xyes" ; then
3448                 AC_DEFINE(HAVE_GNU_STRERROR_R, 1, [char* strerror(int errnum, char *buf, size_t buflen)])
3449         fi
3451         AC_MSG_CHECKING(for readdir_r)
3452         AC_TRY_LINK([
3453                 #include <dirent.h>
3454         ], [
3455                 DIR* dir;
3456                 struct dirent* entry;
3457                 struct dirent* result;
3458                 readdir_r(dir, entry, &result);
3459         ],[
3460                 AC_MSG_RESULT(yes)
3461                 AC_DEFINE(HAVE_READDIR_R, 1, [readdir_r])
3462         ], [
3463                 AC_MSG_RESULT(no)
3464         ])
3466         AC_MSG_CHECKING(for kevent with void *data)
3467         AC_TRY_LINK([
3468                 #include <sys/types.h>
3469                 #include <sys/event.h>
3470         ], [
3471                 struct kevent event;
3472                 void* data;
3473                 EV_SET(&event, 0, EVFILT_READ, 0, 0, 0, data);
3474         ],[
3475                 AC_MSG_RESULT(yes)
3476                 AC_DEFINE(KEVENT_HAS_VOID_UDATA, 1, [kevent with void *data])
3477         ], [
3478                 AC_MSG_RESULT(no)
3479         ])
3481         AC_CHECK_MEMBER(struct fd_set.fds_bits,   [AC_DEFINE(HAVE_FDS_BITS, 1, [struct fd_set.fds_bits])], [], [[#include <sys/select.h>]])
3482         AC_CHECK_MEMBER(struct fd_set.__fds_bits, [AC_DEFINE(HAVE_PRIVATE_FDS_BITS, 1, [struct fd_set.__fds_bits])], [], [[#include <sys/select.h>]])
3484         AC_MSG_CHECKING(for sendfile with 4 arguments)
3485         AC_TRY_LINK([
3486                 #include <sys/sendfile.h>
3487         ], [
3488                 #if defined(TARGET_ANDROID)
3489                 #if !defined(__ANDROID_API__)
3490                 #error No definition for __ANDROID_API__ even though we're targeting TARGET_ANDROID
3491                 #elif __ANDROID_API__ < 21
3492                 #error sendfile is not supported on this Android API level
3493                 #endif
3494                 #endif
3496                 int result = sendfile(0, 0, 0, 0);
3497         ],[
3498                 AC_MSG_RESULT(yes)
3499                 AC_DEFINE(HAVE_SENDFILE_4, 1, [sendfile with 4 arguments])
3500         ], [
3501                 AC_MSG_RESULT(no)
3502         ])
3504         ORIG_CFLAGS="$CFLAGS"
3505         CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
3507         AC_MSG_CHECKING(for sendfile with 6 arguments)
3508         AC_TRY_LINK([
3509                 #include <stdlib.h>
3510                 #include <sys/types.h>
3511                 #include <sys/socket.h>
3512                 #include <sys/uio.h>
3513         ], [
3514                 int result = sendfile(0, 0, 0, NULL, NULL, 0);
3515         ],[
3516                 AC_MSG_RESULT(yes)
3517                 AC_DEFINE(HAVE_SENDFILE_6, 1, [sendfile with 6 arguments])
3518         ], [
3519                 AC_MSG_RESULT(no)
3520         ])
3522         CFLAGS="$ORIG_CFLAGS"
3524         AC_CHECK_FUNC(fcopyfile,     [AC_DEFINE(HAVE_FCOPYFILE, 1, [fcopyfile])])
3525         AC_CHECK_FUNC(epoll_create1, [AC_DEFINE(HAVE_EPOLL, 1, [epoll_create1])])
3526         AC_CHECK_FUNC(accept4,       [AC_DEFINE(HAVE_ACCEPT4, 1, [accept4])])
3527         AC_CHECK_FUNC(kqueue,        [AC_DEFINE(HAVE_KQUEUE, 1, [kqueue])])
3529         ORIG_CFLAGS="$CFLAGS"
3530         CFLAGS="$CFLAGS -Werror=sign-conversion"
3532         AC_MSG_CHECKING(for getnameinfo with signed flags)
3533         AC_TRY_LINK([
3534                 #include <sys/types.h>
3535                 #include <netdb.h>
3536         ], [
3537                 const struct sockaddr *addr;
3538                 socklen_t addrlen;
3539                 char *host;
3540                 socklen_t hostlen;
3541                 char *serv;
3542                 socklen_t servlen;
3543                 int flags;
3544                 int result = getnameinfo(addr, addrlen, host, hostlen, serv, servlen, flags);
3545         ],[
3546                 AC_MSG_RESULT(yes)
3547                 AC_DEFINE(HAVE_GETNAMEINFO_SIGNED_FLAGS, 1, [getnameinfo with signed flags])
3548         ], [
3549                 AC_MSG_RESULT(no)
3550         ])
3552         CFLAGS="$ORIG_CFLAGS"
3554         if test "x$host_linux" = "xyes"; then
3555                 AC_DEFINE(HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO, 1, [HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO])
3556         else
3557                 AC_DEFINE(HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO, 0, [HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO])
3558         fi
3560         # HAVE_CLOCK_MONOTONIC check already done above
3561         # HAVE_CLOCK_REALTIME check already done above
3562         # HAVE_MACH_ABSOLUTE_TIME check already done above
3563         # HAVE_MACH_TIMEBASE_INFO check already done above
3564         # HAVE_FUTIMES check already done above
3565         # HAVE_FUTIMENS check already done above
3567         ORIG_CFLAGS="$CFLAGS"
3568         CFLAGS="$CFLAGS -Werror=sign-conversion"
3570         AC_MSG_CHECKING(for bind with unsigned addrlen)
3571         AC_TRY_LINK([
3572                 #include <sys/socket.h>
3573         ], [
3574                 int fd;
3575                 struct sockaddr* addr;
3576                 socklen_t addrLen;
3577                 bind(fd, addr, addrLen);
3578         ],[
3579                 AC_MSG_RESULT(yes)
3580                 AC_DEFINE(BIND_ADDRLEN_UNSIGNED, 1, [bind with unsigned addrlen])
3581         ], [
3582                 AC_MSG_RESULT(no)
3583         ])
3585         AC_MSG_CHECKING(for struct ipv6_mreq with unsigned ipv6mr_interface)
3586         AC_TRY_LINK([
3587                 #include <netinet/in.h>
3588                 #include <netinet/tcp.h>
3589         ], [
3590                 struct ipv6_mreq opt;
3591                 unsigned int index = 0;
3592                 opt.ipv6mr_interface = index;
3593         ],[
3594                 AC_MSG_RESULT(yes)
3595                 AC_DEFINE(IPV6MR_INTERFACE_UNSIGNED, 1, [struct ipv6_mreq with unsigned ipv6mr_interface])
3596         ], [
3597                 AC_MSG_RESULT(no)
3598         ])
3600         AC_MSG_CHECKING(for inotify_rm_watch with unsigned wd)
3601         AC_TRY_LINK([
3602                 #include <sys/inotify.h>
3603         ], [
3604                 intptr_t fd;
3605                 uint32_t wd;
3606                 int result = inotify_rm_watch(fd, wd);
3607         ],[
3608                 AC_MSG_RESULT(yes)
3609                 AC_DEFINE(INOTIFY_RM_WATCH_WD_UNSIGNED, 1, [inotify_rm_watch with unsigned wd])
3610         ], [
3611                 AC_MSG_RESULT(no)
3612         ])
3614         CFLAGS="$ORIG_CFLAGS"
3616         AC_MSG_CHECKING(for shm_open that works well enough with mmap)
3617         if test "x$ac_cv_func_shm_open" = "xno" -o "x$ac_cv_func_shm_open_working_with_mmap" = "xno" ; then
3618                 AC_MSG_RESULT(no)
3619         elif test "x$cross_compiling" = "xyes"; then
3620                 AC_MSG_RESULT(cross compiling, assuming yes)
3621                 AC_DEFINE(HAVE_SHM_OPEN_THAT_WORKS_WELL_ENOUGH_WITH_MMAP, 1, [shm_open that works well enough with mmap])
3622         else
3623                 AC_TRY_RUN([
3624                         #include <sys/mman.h>
3625                         #include <fcntl.h>
3626                         #include <unistd.h>
3628                         int main ()
3629                         {
3630                         #ifdef __PASE__
3631                                 /* IBM i doesn't implement this and returns SIGILL */
3632                                 return -1;
3633                         #endif
3634                                 int fd = shm_open("/mono_configure_shm_open", O_CREAT | O_RDWR, 0777);
3635                                 if (fd == -1)
3636                                         return -1;
3638                                 shm_unlink("/mono_configure_shm_open");
3640                                 // NOTE: PROT_EXEC and MAP_PRIVATE don't work well with shm_open
3641                                 //       on at least the current version of Mac OS X
3643                                 if (mmap(NULL, 1, PROT_EXEC, MAP_PRIVATE, fd, 0) == MAP_FAILED)
3644                                         return -1;
3646                                 return 0;
3647                         }
3648                 ],[
3649                         AC_MSG_RESULT(yes)
3650                         AC_DEFINE(HAVE_SHM_OPEN_THAT_WORKS_WELL_ENOUGH_WITH_MMAP, 1, [shm_open that works well enough with mmap])
3651                 ], [
3652                         AC_MSG_RESULT(no)
3653                 ])
3654         fi
3656         AC_MSG_CHECKING(for getpriority with int who)
3657         AC_TRY_LINK([
3658                 #include <sys/resource.h>
3659         ], [
3660                 int which;
3661                 int who;
3662                 int result = getpriority(which, who);
3663         ],[
3664                 AC_MSG_RESULT(yes)
3665                 AC_DEFINE(PRIORITY_REQUIRES_INT_WHO, 1, [getpriority with int who])
3666         ], [
3667                 AC_MSG_RESULT(no)
3668         ])
3670         AC_MSG_CHECKING(for kevent with int parameters)
3671         AC_TRY_LINK([
3672                 #include <sys/types.h>
3673                 #include <sys/event.h>
3674         ], [
3675                 int kg;
3676                 const struct kevent* chagelist;
3677                 int nchanges;
3678                 struct kevent* eventlist;
3679                 int nevents;
3680                 const struct timespec* timeout;
3681                 int result = kevent(kg, chagelist, nchanges, eventlist, nevents, timeout);
3682         ],[
3683                 AC_MSG_RESULT(yes)
3684                 AC_DEFINE(KEVENT_REQUIRES_INT_PARAMS, 1, [kevent with int parameters])
3685         ], [
3686                 AC_MSG_RESULT(no)
3687         ])
3689         AC_CHECK_FUNCS(mkstemps)
3690         # AC_CHECK_FUNCS(mkstemp) # already done above
3692         if test "x$ac_cv_func_mkstemps" != "xyes" -a "x$ac_cv_func_mkstemp" != "xyes"; then
3693                 AC_MSG_ERROR([Cannot find mkstemps or mkstemp on this platform])
3694         fi
3696         AC_MSG_CHECKING(for tcp/var.h)
3697         AC_TRY_LINK([
3698                 #include <sys/types.h>
3699                 #include <sys/socketvar.h>
3700                 #include <netinet/ip.h>
3701                 #include <netinet/tcp.h>
3702                 #include <netinet/tcp_var.h>
3703         ], [
3704         ],[
3705                 AC_MSG_RESULT(yes)
3706                 AC_DEFINE(HAVE_TCP_VAR_H, 1, [tcp/var.h])
3707         ], [
3708                 AC_MSG_RESULT(no)
3709         ])
3711         AC_CHECK_HEADERS([sys/cdefs.h])
3713         AC_MSG_CHECKING(for TCPSTATE enum in netinet/tcp.h)
3714         AC_TRY_LINK([
3715                 #ifdef HAVE_SYS_CDEFS_H
3716                 #include <sys/cdefs.h>
3717                 #endif
3718                 #include <netinet/tcp.h>
3719         ], [
3720                 int result = TCP_ESTABLISHED;
3721         ],[
3722                 AC_MSG_RESULT(yes)
3723                 AC_DEFINE(HAVE_TCP_H_TCPSTATE_ENUM, 1, [TCPSTATE enum in netinet/tcp.h])
3724         ], [
3725                 AC_MSG_RESULT(no)
3726         ])
3728         AC_CHECK_DECL(TCPS_ESTABLISHED, [AC_DEFINE(HAVE_TCP_FSM_H, 1, [HAVE_TCP_FSM_H])], [], [[#include <netinet/tcp_fsm.h>]])
3730         AC_MSG_CHECKING(for struct rt_msghdr)
3731         AC_TRY_COMPILE([
3732                 #include <sys/types.h>
3733                 #include <net/route.h>
3734         ], [
3735                 struct rt_msghdr;
3736         ],[
3737                 AC_MSG_RESULT(yes)
3738                 AC_DEFINE(HAVE_RT_MSGHDR, 1, [struct rt_msghdr])
3739         ], [
3740                 AC_MSG_RESULT(no)
3741         ])
3743         AC_CHECK_HEADERS([sys/sysctl.h])
3744         AC_CHECK_HEADERS([linux/rtnetlink.h])
3746         AC_CHECK_FUNC(getpeereid,    [AC_DEFINE(HAVE_GETPEEREID, 1, [getpeereid])])
3747         #AC_CHECK_FUNC(getdomainname, [AC_DEFINE(HAVE_GETDOMAINNAME, 1, [getdomainname])]) # already done above
3748         AC_CHECK_FUNC(uname,         [AC_DEFINE(HAVE_UNAME, 1, [uname])])
3750         ORIG_CFLAGS="$CFLAGS"
3751         CFLAGS="$CFLAGS -Werror=shorten-64-to-32"
3753         AC_MSG_CHECKING(for getdomainname with size_t namelen)
3754         AC_TRY_LINK([
3755                 #include <unistd.h>
3756         ], [
3757                 size_t namelen = 20;
3758                 char name[20];
3759                 int result = getdomainname(name, namelen);
3760         ],[
3761                 AC_MSG_RESULT(yes)
3762                 AC_DEFINE(HAVE_GETDOMAINNAME_SIZET, 1, [getdomainname with size_t namelen])
3763         ], [
3764                 AC_MSG_RESULT(no)
3765         ])
3767         CFLAGS="$ORIG_CFLAGS"
3769         AC_CHECK_FUNC(inotify_init, [AC_DEFINE(HAVE_INOTIFY_INIT, 1, [inotify_init])])
3770         AC_CHECK_FUNC(inotify_add_watch, [AC_DEFINE(HAVE_INOTIFY_ADD_WATCH, 1, [inotify_add_watch])])
3771         AC_CHECK_FUNC(inotify_rm_watch, [AC_DEFINE(HAVE_INOTIFY_RM_WATCH, 1, [inotify_rm_watch])])
3773         if test "x$ac_cv_func_inotify_init" = "xyes" -a "x$ac_cv_func_inotify_add_watch" = "xyes" -a "x$ac_cv_func_inotify_rm_watch" = "xyes"; then
3774                 AC_DEFINE(HAVE_INOTIFY, 1, [HAVE_INOTIFY])
3775         elif test "x$host_linux" = "xyes"; then
3776                 AC_MSG_ERROR([Cannot find inotify functions on a Linux platform.])
3777         fi
3779         # HAVE_CURLM_ADDED_ALREADY check skipped because we don't use libcurl in mono
3780         # HAVE_CURL_HTTP_VERSION_2TLS check skipped because we don't use libcurl in mono
3781         # HAVE_CURLPIPE_MULTIPLEX check skipped because we don't use libcurl in mono
3782         # HAVE_CURL_SSLVERSION_TLSv1_012 check skipped because we don't use libcurl in mono
3784         enable_gss=no;
3785         AC_MSG_CHECKING(for GSS/GSS.h)
3786         AC_TRY_COMPILE([
3787                         #include <GSS/GSS.h>
3788         ], [
3789         ],[
3790                         AC_MSG_RESULT(yes)
3791                         AC_DEFINE(HAVE_GSSFW_HEADERS, 1, [GSS/GSS.h])
3792                         AC_DEFINE(HAVE_GSS_SPNEGO_MECHANISM, 1, [GSS_SPNEGO_MECHANISM])
3793                         enable_gss=yes
3794         ], [
3795                         AC_MSG_RESULT(no)
3796         ])
3798         AC_MSG_CHECKING(for gssapi/gssapi_ext.h)
3799         AC_TRY_COMPILE([
3800                         #include <gssapi/gssapi_ext.h>
3801         ], [
3802         ],[
3803                         AC_MSG_RESULT(yes)
3804                         enable_gss=yes
3805         ], [
3806                         AC_MSG_RESULT(no)
3807         ])
3809         AC_MSG_CHECKING(for GSS_SPNEGO_MECHANISM)
3810         AC_TRY_COMPILE([
3811                         #include <gssapi/gssapi_ext.h>
3812                         #include <gssapi/gssapi_krb5.h>
3813                         gss_OID_set_desc gss_mech_spnego_OID_set_desc = {.count = 1, .elements = GSS_SPNEGO_MECHANISM};
3814         ], [
3815         ],[
3816                         AC_MSG_RESULT(yes)
3817                         AC_DEFINE(HAVE_GSS_SPNEGO_MECHANISM, 1, [GSS_SPNEGO_MECHANISM])
3818         ], [
3819                         AC_MSG_RESULT(no)
3820         ])
3822         AM_CONDITIONAL(ENABLE_GSS, test x$enable_gss = xyes)
3824         AC_CHECK_HEADERS([crt_externs.h])
3826         AC_MSG_CHECKING(for _NSGetEnviron)
3827         AC_TRY_LINK([
3828                 #include <crt_externs.h>
3829         ], [
3830                 char **result = *(_NSGetEnviron());
3831         ],[
3832                 AC_MSG_RESULT(yes)
3833                 AC_DEFINE(HAVE_NSGETENVIRON, 1, [_NSGetEnviron])
3834         ], [
3835                 AC_MSG_RESULT(no)
3836         ])
3838         AC_CHECK_DECL(IN_EXCL_UNLINK, [AC_DEFINE(HAVE_IN_EXCL_UNLINK, 1, [IN_EXCL_UNLINK])], [], [[#include <sys/inotify.h>]])
3840         # *** End of Mono.Native checks ***
3841 else
3842         AM_CONDITIONAL(ENABLE_GSS, false)
3844         dnl *********************************
3845         dnl *** Checks for Windows compilation ***
3846         dnl *********************************
3847         AC_CHECK_HEADERS(winternl.h)
3849         jdk_headers_found=no
3850         AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32", AC_ERROR(bad mingw install?))
3851         AC_CHECK_LIB(psapi, main, LIBS="$LIBS -lpsapi", AC_ERROR(bad mingw install?))
3852         AC_CHECK_LIB(ole32, main, LIBS="$LIBS -lole32", AC_ERROR(bad mingw install?))
3853         AC_CHECK_LIB(winmm, main, LIBS="$LIBS -lwinmm", AC_ERROR(bad mingw install?))
3854         AC_CHECK_LIB(oleaut32, main, LIBS="$LIBS -loleaut32", AC_ERROR(bad mingw install?))
3855         AC_CHECK_LIB(advapi32, main, LIBS="$LIBS -ladvapi32", AC_ERROR(bad mingw install?))
3856         AC_CHECK_LIB(version, main, LIBS="$LIBS -lversion", AC_ERROR(bad mingw install?))
3858         dnl *********************************
3859         dnl *** Check for struct ip_mreqn ***
3860         dnl *********************************
3861         AC_MSG_CHECKING(for struct ip_mreqn)
3862         AC_TRY_COMPILE([#include <ws2tcpip.h>], [
3863                 struct ip_mreqn mreq;
3864                 mreq.imr_address.s_addr = 0;
3865         ], [
3866                 # Yes, we have it...
3867                 AC_MSG_RESULT(yes)
3868                 AC_DEFINE(HAVE_STRUCT_IP_MREQN)
3869         ], [
3870                 # We'll just have to try and use struct ip_mreq
3871                 AC_MSG_RESULT(no)
3872                 AC_MSG_CHECKING(for struct ip_mreq)
3873                 AC_TRY_COMPILE([#include <ws2tcpip.h>], [
3874                         struct ip_mreq mreq;
3875                         mreq.imr_interface.s_addr = 0;
3876                 ], [
3877                         # Yes, we have it...
3878                         AC_MSG_RESULT(yes)
3879                         AC_DEFINE(HAVE_STRUCT_IP_MREQ)
3880                 ], [
3881                         # No multicast support
3882                         AC_MSG_RESULT(no)
3883                 ])
3884         ])
3886         dnl **********************************
3887         dnl *** Check for getaddrinfo ***
3888         dnl **********************************
3889         AC_MSG_CHECKING(for getaddrinfo)
3890                 AC_TRY_LINK([
3891                 #include <stdio.h>
3892                 #include <winsock2.h>
3893                 #include <ws2tcpip.h>
3894         ], [
3895                 getaddrinfo(NULL,NULL,NULL,NULL);
3896         ], [
3897                 # Yes, we have it...
3898                 AC_MSG_RESULT(yes)
3899                 AC_DEFINE(HAVE_GETADDRINFO, 1, [Have getaddrinfo])
3900         ], [
3901                 AC_MSG_RESULT(no)
3902         ])
3904         dnl **********************************
3905         dnl *** Check for gethostbyname ***
3906         dnl **********************************
3907         AC_MSG_CHECKING(for gethostbyname)
3908                 AC_TRY_LINK([
3909                 #include <stdio.h>
3910                 #include <winsock2.h>
3911                 #include <ws2tcpip.h>
3912         ], [
3913                 gethostbyname(NULL);
3914         ], [
3915                 # Yes, we have it...
3916                 AC_MSG_RESULT(yes)
3917                 AC_DEFINE(HAVE_GETHOSTBYNAME, 1, [Have gethostbyname])
3918         ], [
3919                 AC_MSG_RESULT(no)
3920         ])
3922         dnl **********************************
3923         dnl *** Check for getprotobyname ***
3924         dnl **********************************
3925         AC_MSG_CHECKING(for getprotobyname)
3926                 AC_TRY_LINK([
3927                 #include <stdio.h>
3928                 #include <winsock2.h>
3929                 #include <ws2tcpip.h>
3930         ], [
3931                 getprotobyname(NULL);
3932         ], [
3933                 # Yes, we have it...
3934                 AC_MSG_RESULT(yes)
3935                 AC_DEFINE(HAVE_GETPROTOBYNAME, 1, [Have getprotobyname])
3936         ], [
3937                 AC_MSG_RESULT(no)
3938         ])
3940         dnl **********************************
3941         dnl *** Check for getnameinfo ***
3942         dnl **********************************
3943         AC_MSG_CHECKING(for getnameinfo)
3944                 AC_TRY_LINK([
3945                 #include <stdio.h>
3946                 #include <winsock2.h>
3947                 #include <ws2tcpip.h>
3948         ], [
3949                 getnameinfo (NULL, 0, NULL, 0, NULL, 0, 0);
3950         ], [
3951                 # Yes, we have it...
3952                 AC_MSG_RESULT(yes)
3953                 AC_DEFINE(HAVE_GETNAMEINFO, 1, [Have getnameinfo])
3954         ], [
3955                 AC_MSG_RESULT(no)
3956         ])
3958         dnl **********************************
3959         dnl *** Check for inet_ntop ***
3960         dnl **********************************
3961         AC_MSG_CHECKING(for inet_ntop)
3962                 AC_TRY_LINK([
3963                 #include <stdio.h>
3964                 #include <winsock2.h>
3965                 #include <ws2tcpip.h>
3966         ], [
3967                 inet_ntop (0, NULL, NULL, 0);
3968         ], [
3969                 # Yes, we have it...
3970                 AC_MSG_RESULT(yes)
3971                 AC_DEFINE(HAVE_INET_NTOP, 1, [Have inet_ntop])
3972         ], [
3973                 AC_MSG_RESULT(no)
3974         ])
3976         dnl **********************************
3977         dnl *** Check for inet_pton ***
3978         dnl **********************************
3979         AC_MSG_CHECKING(for inet_pton)
3980                 AC_TRY_LINK([
3981                 #include <stdio.h>
3982                 #include <winsock2.h>
3983                 #include <ws2tcpip.h>
3984         ], [
3985                 #ifndef inet_pton
3986                 (void) inet_pton;
3987                 #endif
3988                 inet_pton (0, NULL, NULL);
3989         ], [
3990                 # Yes, we have it...
3991                 AC_MSG_RESULT(yes)
3992                 AC_DEFINE(HAVE_INET_PTON, 1, [Have inet_pton])
3993         ], [
3994                 AC_MSG_RESULT(no)
3995         ])
3998 dnl socklen_t check
3999 AC_MSG_CHECKING(for socklen_t)
4000 AC_TRY_COMPILE([
4001 #include <sys/types.h>
4002 #include <sys/socket.h>
4004   socklen_t foo;
4006 ac_cv_c_socklen_t=yes
4007         AC_DEFINE(HAVE_SOCKLEN_T, 1, [Have socklen_t])
4008         AC_MSG_RESULT(yes)
4010         AC_MSG_RESULT(no)
4013 AC_CHECK_FUNCS(execvp)
4015 dnl ****************************
4016 dnl *** Look for /dev/random ***
4017 dnl ****************************
4019 AC_MSG_CHECKING([if usage of random device is requested])
4020 AC_ARG_ENABLE(dev-random,
4021 [  --disable-dev-random    disable the use of the random device (enabled by default)],
4022 try_dev_random=$enableval, try_dev_random=yes)
4024 AC_MSG_RESULT($try_dev_random)
4026 case "{$build}" in
4028 dnl IBM i does not have /dev/random, use unblocking only
4030     *-*-os400*)
4031     NAME_DEV_RANDOM="/dev/urandom"
4032     ;;
4034 dnl Win32 does not have /dev/random, they have their own method...
4036     *-mingw*|*-*-cygwin*)
4037     ac_cv_have_dev_random=no
4038     ;;
4040 dnl Everywhere else, it's /dev/random
4042     *)
4043     NAME_DEV_RANDOM="/dev/random"
4044     ;;
4045 esac
4047 AC_DEFINE_UNQUOTED(NAME_DEV_RANDOM, "$NAME_DEV_RANDOM", [Name of /dev/random])
4049 dnl Now check if the device actually exists
4051 if test "x$try_dev_random" = "xyes"; then
4052     AC_CACHE_CHECK(for random device, ac_cv_have_dev_random,
4053     [if test -r "$NAME_DEV_RANDOM" ; then
4054         ac_cv_have_dev_random=yes; else ac_cv_have_dev_random=no; fi])
4055     if test "x$ac_cv_have_dev_random" = "xyes"; then
4056         AC_DEFINE(HAVE_CRYPT_RNG, 1, [Have /dev/random])
4057     fi
4058 else
4059     AC_MSG_CHECKING(for random device)
4060     ac_cv_have_dev_random=no
4061     AC_MSG_RESULT(has been disabled)
4064 if test "x$host_win32" = "xyes"; then
4065     AC_DEFINE(HAVE_CRYPT_RNG)
4068 if test "x$ac_cv_have_dev_random" = "xno" \
4069     && test "x$host_win32" = "xno"; then
4070     AC_MSG_WARN([[
4072 *** A system-provided entropy source was not found on this system.
4073 *** Because of this, the System.Security.Cryptography random number generator
4074 *** will throw a NotImplemented exception.
4076 *** If you are seeing this message, and you know your system DOES have an
4077 *** entropy collection in place, please report an issue on GitHub and
4078 *** provide information about the system and how to access the random device.
4080 *** Otherwise you can install either egd or prngd and set the environment
4081 *** variable MONO_EGD_SOCKET to point to the daemon's socket to use that.
4082 ***]])
4085 AC_ARG_ENABLE(bcl-opt, [  --disable-bcl-opt     BCL is compiled with no optimizations (allows accurate BCL debugging)], test_bcl_opt=$enableval, test_bcl_opt=yes)
4087 AC_MSG_CHECKING([if big-arrays are to be enabled])
4088 AC_ARG_ENABLE(big-arrays,  [  --enable-big-arrays       Enable the allocation and indexing of arrays greater than Int32.MaxValue], enable_big_arrays=$enableval, enable_big_arrays=no)
4089 if test "x$enable_big_arrays" = "xyes" ; then
4090     if  test "x$ac_cv_sizeof_void_p" = "x8"; then
4091         AC_DEFINE(MONO_BIG_ARRAYS,1,[Enable the allocation and indexing of arrays greater than Int32.MaxValue])
4092     else
4093         AC_MSG_ERROR([The allocation and indexing of arrays greater than Int32.MaxValue is not supported on this platform.])
4094     fi
4096 AC_MSG_RESULT($enable_big_arrays)
4098 dnl **************
4099 dnl *** DTRACE ***
4100 dnl **************
4102 AC_ARG_ENABLE(dtrace,[  --enable-dtrace Enable DTrace probes], enable_dtrace=$enableval, enable_dtrace=$has_dtrace)
4104 if test "x$enable_dtrace" = "xyes"; then
4105    if test "x$has_dtrace" = "xno"; then
4106           AC_MSG_ERROR([DTrace probes are not supported on this platform.])
4107    fi
4108    AC_PATH_PROG(DTRACE, [dtrace], [no], [$PATH:/usr/sbin])
4109    if test "x$DTRACE" = "xno"; then
4110           AC_MSG_RESULT([dtrace utility not found, dtrace support disabled.])
4111           enable_dtrace=no
4112    elif ! $DTRACE -h -s $srcdir/data/mono.d > /dev/null 2>&1; then
4113           AC_MSG_RESULT([dtrace doesn't support -h option, dtrace support disabled.])
4114           enable_dtrace=no
4115    fi
4118 dtrace_g=no
4119 if test "x$enable_dtrace" = "xyes"; then
4120         AC_DEFINE(ENABLE_DTRACE, 1, [Enable DTrace probes])
4121         DTRACEFLAGS=
4122         if test "x$ac_cv_sizeof_void_p" = "x8"; then
4123                 case "$host" in
4124                         powerpc-*-darwin*)
4125                         DTRACEFLAGS="-arch ppc64"
4126                         ;;
4127                         i*86-*-darwin*)
4128                         DTRACEFLAGS="-arch x86_64"
4129                         ;;
4130                         *)
4131                         DTRACEFLAGS=-64
4132                         ;;
4133                 esac
4134         else
4135                 case "$host" in
4136                         powerpc-*-darwin*)
4137                         DTRACEFLAGS="-arch ppc"
4138                         ;;
4139                         i*86-*-darwin*)
4140                         DTRACEFLAGS="-arch i386"
4141                         ;;
4142                         *)
4143                         DTRACEFLAGS=-32
4144                         ;;
4145                 esac
4146         fi
4147         AC_SUBST(DTRACEFLAGS)
4148         case "$host" in
4149                 *-*-solaris*)
4150                 dtrace_g=yes
4151                 ;;
4152         esac
4153         AC_CHECK_HEADERS([sys/sdt.h])
4155 AM_CONDITIONAL(ENABLE_DTRACE, [test x$enable_dtrace = xyes])
4156 AM_CONDITIONAL(DTRACE_G_REQUIRED, [test x$dtrace_g = xyes])
4158 dnl **************************
4159 dnl *** AOT cross offsets  ***
4160 dnl **************************
4162 AC_ARG_WITH(cross-offsets, [  --with-cross-offsets=<offsets file path>    Explicit AOT cross offsets file],
4163     AC_DEFINE_UNQUOTED(MONO_OFFSETS_FILE, "$withval", [AOT cross offsets file]))
4165 dnl **************
4166 dnl ***  LLVM  ***
4167 dnl **************
4169 AC_ARG_ENABLE(llvm,[  --enable-llvm     Enable the LLVM back-end], enable_llvm=$enableval, enable_llvm=default)
4170 AC_ARG_ENABLE(loadedllvm,[  --enable-loadedllvm Load the LLVM back-end dynamically], enable_llvm=$enableval && enable_loadedllvm=$enableval, enable_loadedllvm=no)
4171 AC_ARG_ENABLE(llvm-version-check,[  --enable-llvm-version-check Check that the LLVM matches the version expected by mono], enable_llvm_version_check=$enableval, enable_llvm_version_check=no)
4172 AC_ARG_ENABLE(llvm-runtime,[  --enable-llvm-runtime     Enable runtime support for llvmonly code], enable_llvm_runtime=$enableval, enable_llvm_runtime=no)
4173 AC_ARG_ENABLE(llvm-asserts,[  --enable-llvm-asserts Enable llvm asserts (option to LLVM in CMake)], enable_llvm_asserts=$enableval, enable_llvm_asserts=no)
4175 AC_ARG_WITH(llvm, [  --with-llvm=<llvm prefix>    Enable the LLVM back-end], enable_llvm=yes,)
4177 if test "x$enable_llvm" = "xdefault"; then
4178    enable_llvm=$enable_llvm_default
4181 enable_llvm_msvc_only="no"
4182 if test "x$enable_llvm" = "xyes"; then
4183         if test "x$host_win32" = "xyes"; then
4184                 if test "x$cross_compiling" = "xno"; then
4185                         case "$target" in
4186                         x86_64*)
4187                                 AC_MSG_WARN("LLVM for host=Windows and target=Windows is only supported on x64 MSVC builds. Disabling LLVM for GCC build.")
4188                                 enable_llvm_msvc_only="yes"
4189                                 ;;
4190                         i686*)
4191                                 AC_MSG_ERROR("LLVM for host=Windows and target=Windows is only supported for x64 builds.")
4192                                 ;;
4193                         esac
4194                 fi
4195                 if test "x$enable_loadedllvm" = "xyes"; then
4196                         AC_MSG_WARN("Loadable LLVM currently not supported on Windows. Disabling feature.")
4197                         enable_loadedllvm=no
4198                 fi
4199         fi
4202 internal_llvm="no"
4203 if test "x$enable_llvm" = "xyes"; then
4204         if test "x$with_llvm" != "x"; then
4205                 EXTERNAL_LLVM_CONFIG=$with_llvm/bin/llvm-config
4206                 if test x$host_win32 = xyes; then
4207                         EXTERNAL_LLVM_CONFIG=$EXTERNAL_LLVM_CONFIG.exe
4208                 fi
4209                 if test ! -x $EXTERNAL_LLVM_CONFIG; then
4210                         AC_MSG_ERROR([LLVM executable $EXTERNAL_LLVM_CONFIG not found.])
4211                 fi
4212         else
4213                 internal_llvm=yes
4214         fi
4216         LLVM_CODEGEN_LIBS="x86codegen"
4217         case "$target" in
4218         arm*)
4219                 LLVM_CODEGEN_LIBS="armcodegen"
4220                 ;;
4221         aarch64*)
4222                 LLVM_CODEGEN_LIBS="aarch64codegen"
4223                 ;;
4224         powerpc*)
4225                 LLVM_CODEGEN_LIBS="powerpccodegen"
4226                 ;;
4227         esac
4228         if test "x$host" != "x$target"; then
4229                 # No need for jit libs
4230                 LLVM_CODEGEN_LIBS=
4231         fi
4233         AC_SUBST(LLVM_CODEGEN_LIBS)
4234         AC_SUBST(EXTERNAL_LLVM_CONFIG)
4236         if test "x$host_win32" = "xyes" && test "x$cross_compiling" = "xno" &&  test "x$internal_llvm" = "xno"; then
4237                 EXTERNAL_LLVM_CONFIG_WIN32=$(cygpath -m $EXTERNAL_LLVM_CONFIG)
4238                 AC_SUBST(EXTERNAL_LLVM_CONFIG_WIN32)
4239         fi
4240         if test "x$enable_llvm_msvc_only" != "xyes"; then
4241                 AC_DEFINE(ENABLE_LLVM, 1, [Enable the LLVM back end])
4242         else
4243                 AC_DEFINE(ENABLE_LLVM_MSVC_ONLY, 1, [Enable the LLVM back end])
4244         fi
4245 fi # ENABLE_LLVM
4247 # AC_DEFINE necessary for correct restore behavior on Linux
4248 AM_CONDITIONAL(INTERNAL_LLVM, [test "x$internal_llvm" != "xno" && test "x$enable_llvm_msvc_only" != "xyes"])
4249 if test "x$internal_llvm" != "xno"; then
4250         if test "x$enable_llvm_msvc_only" != "xyes"; then
4251                 AC_DEFINE(INTERNAL_LLVM, 1, [LLVM used is being build during mono build])
4252         else
4253                 AC_DEFINE(INTERNAL_LLVM_MSVC_ONLY, 1, [LLVM used is being build during mono build])
4254         fi
4257 AM_CONDITIONAL(INTERNAL_LLVM_ASSERTS, [test "x$enable_llvm_asserts" != "xno" && test "x$enable_llvm_msvc_only" != "xyes"])
4258 if test "x$enable_llvm_asserts" != "xno"; then
4259         if test "x$enable_llvm_msvc_only" != "xyes"; then
4260                 AC_DEFINE(INTERNAL_LLVM_ASSERTS, 1, [Build LLVM with assertions])
4261         else
4262                 AC_DEFINE(INTERNAL_LLVM_ASSERTS_MSVC_ONLY, 1, [Build LLVM with assertions])
4263         fi
4266 AM_CONDITIONAL(ENABLE_LLVM, [test x$enable_llvm = xyes && test x$enable_llvm_msvc_only != xyes])
4268 AM_CONDITIONAL(LOADED_LLVM, [test x$enable_loadedllvm = xyes && test x$enable_llvm_msvc_only != xyes])
4269 if test "x$enable_loadedllvm" = "xyes"; then
4270         if test "x$enable_llvm_msvc_only" != "xyes"; then
4271                 AC_DEFINE(MONO_LLVM_LOADED, 1, [The LLVM back end is dynamically loaded])
4272         fi
4275 if test "x$enable_llvm" = "xyes"; then
4276         enable_llvm_runtime=yes
4279 AM_CONDITIONAL(ENABLE_LLVM_RUNTIME, [test x$enable_llvm_runtime = xyes && test x$enable_llvm_msvc_only != xyes])
4280 if test "x$enable_llvm_runtime" = "xyes"; then
4281         if test "x$enable_llvm_msvc_only" != "xyes"; then
4282                 AC_DEFINE(ENABLE_LLVM_RUNTIME, 1, [Runtime support code for llvm enabled])
4283         else
4284                 AC_DEFINE(ENABLE_LLVM_RUNTIME_MSVC_ONLY, 1, [Runtime support code for llvm enabled])
4285         fi
4288 TARGET="unknown"
4289 ACCESS_UNALIGNED="yes"
4291 LIBC="libc.so.6"
4292 INTL="libc.so.6"
4293 SQLITE="libsqlite.so.0"
4294 SQLITE3="libsqlite3.so.0"
4295 ODBC="libodbc.so.2"
4296 X11="libX11.so"
4297 GDKX11="libgdk-x11-2.0.so.0"
4298 GTKX11="libgtk-x11-2.0.so.0"
4299 XINERAMA="libXinerama.so.1"
4301 sizeof_register="SIZEOF_VOID_P"
4303 jit_wanted=true
4304 boehm_supported=true
4305 BTLS_SUPPORTED=no
4306 BTLS_PLATFORM=
4307 INTERP_CFLAGS=""
4309 case "$host" in
4310         wasm32*)
4311                 TARGET=WASM
4312                 arch_target=wasm
4313                 BTLS_SUPPORTED=no
4314                 ACCESS_UNALIGNED="no"
4315                 with_tls=pthread
4316                 target_wasm=yes
4317                 if test "x$mono_cv_clang" = "xyes"; then
4318                    INTERP_CFLAGS="-mllvm -join-liveintervals=false"
4319                    AC_SUBST(INTERP_CFLAGS)
4320                 fi
4321                 ;;
4322         mips*)
4323                 TARGET=MIPS;
4324                 arch_target=mips;
4325                 with_tls=pthread;
4326                 ACCESS_UNALIGNED="no"
4328                 AC_MSG_CHECKING(for mips n32)
4329                 AC_TRY_COMPILE([],[
4330                 #if _MIPS_SIM != _ABIN32
4331                 #error Not mips n32
4332                 #endif
4333                 ],[
4334                 AC_MSG_RESULT(yes)
4335                 sizeof_register=8
4336                 ],[
4337                 AC_MSG_RESULT(no)
4338                 ])
4339                 ;;
4340         i*86-*-*)
4341                 TARGET=X86;
4342                 arch_target=x86;
4343                 case $host_os in
4344                   solaris*)
4345                         LIBC="libc.so"
4346                         INTL="libintl.so"
4347                         if test "x$ac_cv_sizeof_void_p" = "x8"; then
4348                                 TARGET=AMD64
4349                                 arch_target=amd64
4350                         fi
4352                         # On solaris 10 x86, gcc prints a warning saying 'visibility attribute not supported on this configuration; ignored', but linking fails. A test case:
4353                         # int astruct __attribute__ ((visibility ("hidden")));
4354                         # void foo ()
4355                         # {
4356                         #       void *p = &astruct;
4357                         # }
4358                         # gcc -fPIC --shared -o libfoo.so foo.c
4359                         # yields:
4360                         # foo.c:6: warning: visibility attribute not supported in this configuration; ignored
4361                         # ld: fatal: relocation error: R_386_GOTOFF: file /var/tmp//ccxYR96k.o: symbol astruct: relocation must bind locally
4362                         have_visibility_hidden=no
4363                         ;;
4364                   mingw*|cygwin*)
4365                         have_visibility_hidden=no
4366                         BTLS_SUPPORTED=no
4367                         BTLS_PLATFORM=i386
4368                         ;;
4369                   haiku*)
4370                         LIBC=libroot.so
4371                         ;;
4372                   linux*)
4373                         AOT_SUPPORTED="yes"
4374                         BTLS_SUPPORTED=yes
4375                         BTLS_PLATFORM=i386
4376                         AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4377                         ;;
4378                   darwin*)
4379                         AOT_SUPPORTED="yes"
4380                         BTLS_SUPPORTED=yes
4381                         BTLS_PLATFORM=i386
4382                         ;;
4383                   openbsd*|freebsd*|kfreebsd-gnu*)
4384                         AOT_SUPPORTED="yes"
4385                         BTLS_SUPPORTED=yes
4386                         BTLS_PLATFORM=i386
4387                         ;;
4388                 esac
4389                 ;;
4390         x86_64-*-* | amd64-*-*)
4391                 TARGET=AMD64;
4392                 arch_target=amd64;
4393                 if test "x$ac_cv_sizeof_void_p" = "x4"; then
4394                         AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4395                         sizeof_register=8
4396                 fi
4397                 case $host_os in
4398                   linux*)
4399                         AOT_SUPPORTED="yes"
4400                         BTLS_SUPPORTED=yes
4401                         BTLS_PLATFORM=x86_64
4402                         AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4403                         ;;
4404                   darwin*)
4405                         AOT_SUPPORTED="yes"
4406                         BTLS_SUPPORTED=yes
4407                         BTLS_PLATFORM=x86_64
4408                         boehm_supported=false
4409                         ;;
4410                   openbsd*|freebsd*|kfreebsd-gnu*)
4411                         AOT_SUPPORTED="yes"
4412                         BTLS_SUPPORTED=yes
4413                         BTLS_PLATFORM=x86_64
4414                         ;;
4415                   mingw*|cygwin*)
4416                         BTLS_SUPPORTED=no
4417                         BTLS_PLATFORM=x86_64
4418                         ;;
4419                 esac
4420                 ;;
4421         sparc*-*-*)
4422                 if test "x$ac_cv_sizeof_void_p" = "x8"; then
4423                    TARGET=SPARC64
4424                 else
4425                         TARGET=SPARC
4426                 fi
4427                 arch_target=sparc;
4428                 ACCESS_UNALIGNED="no"
4429                 case $host_os in
4430                   linux*) ;;
4431                   *)
4432                         LIBC="libc.so"
4433                         INTL="libintl.so"
4434                 esac
4435                 if test x"$GCC" = xyes; then
4436                         # We don't support v8 cpus
4437                         CFLAGS="$CFLAGS -Wno-cast-align -mcpu=v9"
4438                 fi
4439                 if test x"$AR" = xfalse; then
4440                         AC_MSG_ERROR([The required utility 'ar' is not found in your PATH. Usually it can be found in /usr/ccs/bin.])
4441                 fi
4442                 ;;
4443         *-mingw*|*-*-cygwin*)
4444                 # When this is enabled, it leads to very strange crashes at runtime (gcc-3.4.4)
4445                 have_visibility_hidden=no
4446                 INTL="intl"
4447                 case "$host" in
4448                         x86_64*mingw*)
4449                                 # Old Boehm fails to compile for x86_64-mingw.
4450                                 # It is trivial to fix, but just silently drop it.
4451                                 boehm_supported=false
4452                                 ;;
4453                 esac
4454                 ;;
4455         macppc-*-openbsd* | powerpc*-*-linux* | powerpc-*-openbsd* | \
4456         powerpc-*-sysv* | powerpc-*-darwin* | powerpc-*-netbsd* | \
4457         powerpc-*-freebsd* | powerpc*-*-aix* | powerpc*-*-os400* )
4458                 if test "x$ac_cv_sizeof_void_p" = "x8"; then
4459                         TARGET=POWERPC64;
4460                         CPPFLAGS="$CPPFLAGS -D__mono_ppc__ -D__mono_ppc64__"
4461                         if ! (echo $CC | grep -q -- 'clang'); then
4462                                 CFLAGS="$CFLAGS -mminimal-toc"
4463                         fi
4464                 else
4465                         TARGET=POWERPC;
4466                         CPPFLAGS="$CPPFLAGS -D__mono_ppc__"
4467                 fi
4468                 arch_target=ppc;
4469                 case $host_os in
4470                   aix*|os400*)
4471                         BTLS_SUPPORTED=yes
4472                         BTLS_PLATFORM=powerpc
4473                         ;;
4474                   linux*)
4475                         BTLS_SUPPORTED=yes
4476                         BTLS_PLATFORM=powerpc
4477                         ;;
4478                 esac
4479                 ;;
4480         armv7k-*-darwin*)
4481                 TARGET=ARM;
4482                 TARGET_SYS=WATCHOS
4483                 arch_target=arm;
4484                 arm_fpu=VFP_HARD
4485                 ACCESS_UNALIGNED="no"
4486                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4487                 ;;
4489         arm*-darwin*)
4490                 TARGET=ARM;
4491                 arch_target=arm;
4492                 ACCESS_UNALIGNED="no"
4493                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4494                 ;;
4495         arm*-linux*)
4496                 TARGET=ARM;
4497                 arch_target=arm;
4498                 ACCESS_UNALIGNED="no"
4499                 AOT_SUPPORTED="yes"
4500                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4501                 BTLS_SUPPORTED=yes
4502                 BTLS_PLATFORM=arm
4503                 AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4504                 case "$target" in
4505                 arm*-linux*-gnueabi)
4506                         BTLS_PLATFORM=armsoft
4507                         ;;
4508                 esac
4509                 ;;
4510         arm*-netbsd*-eabi*)
4511                 TARGET=ARM;
4512                 arch_target=arm;
4513                 ACCESS_UNALIGNED="no"
4514                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4515                 ;;
4516         aarch64-*darwin*ilp32)
4517                 TARGET=ARM6432
4518                 arch_target=arm64
4519                 AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4520                 sizeof_register=8
4521                 # assuming no other target other than watchOS is using aarch64*darwin triple
4522                 TARGET_SYS=WATCHOS
4523                 ;;
4524         aarch64-*)
4525                 # https://lkml.org/lkml/2012/7/15/133
4526                 TARGET=ARM64
4527                 arch_target=arm64
4528                 boehm_supported=false
4529                 AOT_SUPPORTED="yes"
4530                 BTLS_SUPPORTED=yes
4531                 BTLS_PLATFORM=aarch64
4532                 AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4533                 ;;
4534         s390x-*-linux*)
4535                 TARGET=S390X;
4536                 arch_target=s390x;
4537                 ACCESS_UNALIGNED="yes"
4538                 BTLS_SUPPORTED=yes
4539                 BTLS_PLATFORM=s390x
4540                 CFLAGS="$CFLAGS -mbackchain -D__USE_STRING_INLINES"
4541                 ;;
4542         riscv32-*)
4543                 TARGET=RISCV32
4544                 ACCESS_UNALIGNED=no
4545                 AOT_SUPPORTED=no
4546                 BTLS_SUPPORTED=yes
4547                 BTLS_PLATFORM=riscv32
4548                 arch_target=riscv32
4549                 boehm_supported=false
4550                 ;;
4551         riscv64*)
4552                 TARGET=RISCV64
4553                 ACCESS_UNALIGNED=no
4554                 AOT_SUPPORTED=no
4555                 BTLS_SUPPORTED=yes
4556                 BTLS_PLATFORM=riscv64
4557                 arch_target=riscv64
4558                 boehm_supported=false
4559                 ;;
4560 esac
4562 HOST=$TARGET
4564 if test "x$host" != "x$target"; then
4565    AC_DEFINE(MONO_CROSS_COMPILE,1,[The runtime is compiled for cross-compiling mode])
4566    enable_mcs_build=no
4567    enable_support_build=no
4568    BTLS_SUPPORTED=no
4569    # Can't use tls, since it depends on the runtime detection of tls offsets
4570    # in mono-compiler.h
4571    with_tls=pthread
4572    target_mach=no
4573    case "$target" in
4574    wasm32*)
4575                 TARGET=WASM
4576                 arch_target=wasm
4577                 AC_DEFINE(TARGET_WASM, 1, [Target wasm])
4578                 ;;
4579    arm*-darwin*)
4580                 TARGET=ARM;
4581                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4582                 case "$target" in
4583                 armv7k-*)
4584                         arm_fpu=VFP_HARD
4585                         AC_DEFINE(TARGET_WATCHOS, 1, [...])
4586                         ;;
4587                 esac            
4588                 ;;
4589    powerpc64-ps3-linux-gnu)
4590                 TARGET=POWERPC64
4591                 arch_target=powerpc64
4592                 AC_DEFINE(TARGET_PS3, 1, [...])
4593                 # It would be better to just use TARGET_POWERPC64, but lots of code already
4594                 # uses this define
4595                 AC_DEFINE(__mono_ppc64__, 1, [...])
4596                 AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4597                 sizeof_register=8
4598                 target_byte_order=G_BIG_ENDIAN
4599                 ;;
4600    powerpc64-xbox360-linux-gnu)
4601                 TARGET=POWERPC64
4602                 arch_target=powerpc64
4603                 AC_DEFINE(TARGET_XBOX360, 1, [...])
4604                 # It would be better to just use TARGET_POWERPC64, but lots of code already
4605                 # uses this define
4606                 sizeof_register=8
4607                 target_byte_order=G_BIG_ENDIAN
4608                 ;;
4609    arm*-linux-*)
4610                 TARGET=ARM;
4611                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4612                 ;;
4613    arm*-netbsd*-eabi*)
4614                 TARGET=ARM;
4615                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4616                 ;;
4617    i686*-linux-*)
4618                 TARGET=X86;
4619                 ;;
4620    i*86-apple-*)
4621                 TARGET=X86;
4622                 ;;
4623    x86_64*-linux-*)
4624                 TARGET=AMD64;
4625                 ;;
4626    x86_64-ps4-freebsd)
4627                 TARGET=AMD64;
4628                 AC_DEFINE(TARGET_PS4, 1, [...])
4629                 AC_DEFINE(DISABLE_HW_TRAPS, 1, [...])
4630                 CPPFLAGS="$CPPFLAGS"
4631                 target_win32=no
4632                 ;;
4633         aarch64*darwin*_ilp32)
4634                 TARGET=ARM6432;
4635                 AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4636                 sizeof_register=8
4637                 AC_DEFINE(TARGET_WATCHOS, 1, [...])
4638                 ;;
4639         aarch64-*)
4640                 TARGET=ARM64
4641                 ;;
4642         riscv32*)
4643                 TARGET=RISCV32
4644                 AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4645                 AC_DEFINE([TARGET_RISCV32], [1], [Target is 32-bit RISC-V])
4646                 arch_target=riscv32
4647                 target_mach=no
4648                 with_tls=pthread
4649                 ;;
4650         riscv64*)
4651                 TARGET=RISCV64
4652                 AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4653                 AC_DEFINE([TARGET_RISCV64], [1], [Target is 64-bit RISC-V])
4654                 arch_target=riscv64
4655                 target_mach=no
4656                 with_tls=pthread
4657                 ;;
4658         x86_64-google-fuchsia)
4659                 TARGET=AMD64
4660                 target_win32=nop
4661                 AC_DEFINE(HOST_FUCHSIA,1,[Targeting the Fuchsia platform])
4662                 ;;
4663         *)
4664                 AC_MSG_ERROR([Cross compiling is not supported for target $target])
4665         esac
4667         case "$target" in
4668         *-darwin*)
4669                 target_mach=yes
4670                 ;;
4671         *-linux-android*)
4672                 AC_DEFINE(TARGET_ANDROID, 1, [...])
4673                 ;;
4674         esac
4677 case "$TARGET" in
4678 WASM)
4679         AC_DEFINE(TARGET_WASM, 1, [...])
4680         arch_target=wasm
4681         ;;
4682 X86)
4683         AC_DEFINE(TARGET_X86, 1, [...])
4684         arch_target=x86
4685         ;;
4686 AMD64)
4687         AC_DEFINE(TARGET_AMD64, 1, [...])
4688         arch_target=amd64
4689         ;;
4690 ARM)
4691         AC_DEFINE(TARGET_ARM, 1, [...])
4692         arch_target=arm
4693         ACCESS_UNALIGNED="no"
4694         ;;
4695 ARM64|ARM6432)
4696         AC_DEFINE(TARGET_ARM64, 1, [...])
4697         arch_target=arm64
4698         ;;
4699 POWERPC)
4700         AC_DEFINE(TARGET_POWERPC, 1, [...])
4701         ;;
4702 POWERPC64)
4703         AC_DEFINE(TARGET_POWERPC, 1, [...])
4704         AC_DEFINE(TARGET_POWERPC64, 1, [...])
4705         ;;
4706 S390X)
4707         AC_DEFINE(TARGET_S390X, 1, [...])
4708         ;;
4709 MIPS)
4710         AC_DEFINE(TARGET_MIPS, 1, [...])
4711         ;;
4712 SPARC)
4713         AC_DEFINE(TARGET_SPARC, 1, [...])
4714         ;;
4715 SPARC64)
4716         AC_DEFINE(TARGET_SPARC64, 1, [...])
4717         ;;
4718 RISCV32)
4719         AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4720         AC_DEFINE([TARGET_RISCV32], [1], [Target is 32-bit RISC-V])
4721         ;;
4722 RISCV64)
4723         AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4724         AC_DEFINE([TARGET_RISCV64], [1], [Target is 64-bit RISC-V])
4725         ;;
4726 esac
4728 case "$TARGET" in
4729 *32* | ARM | X86 | POWERPC | MIPS | SPARC | WASM | ARM6432)
4730     target_sizeof_void_p=4
4731     ;;
4732 *64* | S390X)
4733     target_sizeof_void_p=8
4734     ;;
4736     AC_MSG_ERROR([unknown target])
4737     ;;
4738 esac
4740 case "$HOST" in
4741 WASM)
4742         AC_DEFINE(HOST_WASM, 1, [...])
4743         ;;
4744 X86)
4745         AC_DEFINE(HOST_X86, 1, [...])
4746         ;;
4747 AMD64)
4748         AC_DEFINE(HOST_AMD64, 1, [...])
4749         ;;
4750 ARM)
4751         AC_DEFINE(HOST_ARM, 1, [...])
4752         ;;
4753 ARM64)
4754         AC_DEFINE(HOST_ARM64, 1, [...])
4755         ;;
4756 POWERPC)
4757         AC_DEFINE(HOST_POWERPC, 1, [...])
4758         ;;
4759 POWERPC64)
4760         AC_DEFINE(HOST_POWERPC, 1, [...])
4761         AC_DEFINE(HOST_POWERPC64, 1, [...])
4762         ;;
4763 S390X)
4764         AC_DEFINE(HOST_S390X, 1, [...])
4765         ;;
4766 MIPS)
4767         AC_DEFINE(HOST_MIPS, 1, [...])
4768         ;;
4769 SPARC)
4770         AC_DEFINE(HOST_SPARC, 1, [...])
4771         ;;
4772 SPARC64)
4773         AC_DEFINE(HOST_SPARC64, 1, [...])
4774         ;;
4775 RISCV32)
4776         AC_DEFINE([HOST_RISCV], [1], [Host is RISC-V])
4777         AC_DEFINE([HOST_RISCV32], [1], [Host is 32-bit RISC-V])
4778         ;;
4779 RISCV64)
4780         AC_DEFINE([HOST_RISCV], [1], [Host is RISC-V])
4781         AC_DEFINE([HOST_RISCV64], [1], [Host is 64-bit RISC-V])
4782         ;;
4783 esac
4785 MONO_ARCH_GSHAREDVT_SUPPORTED=0
4786 case "$HOST" in
4787 X86 | AMD64 | ARM | ARM64)
4788         MONO_ARCH_GSHAREDVT_SUPPORTED=1 # keep in sync with mini-{x86,amd64,arm,arm64}.h
4789         ;;
4790 esac
4792 AM_CONDITIONAL(MONO_ARCH_GSHAREDVT_SUPPORTED, test $MONO_ARCH_GSHAREDVT_SUPPORTED = 1)
4793 AM_CONDITIONAL(TARGET_WASM, test $arch_target = wasm)
4795 dnl *************
4796 dnl *** VTUNE ***
4797 dnl *************
4799 AC_ARG_ENABLE(vtune,[  --enable-vtune   Enable the VTUNE back-end], enable_vtune=$enableval, enable_vtune=no)
4800 AC_ARG_WITH(vtune, [  --with-vtune=<vtune prefix>       Enable jit vtune profiling], enable_vtune=yes,)
4802 AM_CONDITIONAL(HAVE_VTUNE, test x$enable_vtune = xyes)
4804 if test "x$enable_vtune" = "xyes"; then
4805         if test "x$with_vtune" = "x"; then
4806                 VTUNE_PATH=/opt/intel/vtune_amplifier_xe
4807         else
4808                 VTUNE_PATH=$with_vtune
4809         fi
4810         VTUNE_INCLUDE=$VTUNE_PATH/include
4811         case "$TARGET" in
4812         X86)
4813                 VTUNE_LIB=$VTUNE_PATH/lib32
4814                 ;;
4815         AMD64)
4816                 VTUNE_LIB=$VTUNE_PATH/lib64
4817                 ;;
4818         *)
4819                 AC_MSG_ERROR([Unsupported target $TARGET for VTUNE.])
4820                 ;;
4821         esac
4822         if test ! -f $VTUNE_INCLUDE/jitprofiling.h; then
4823                 AC_MSG_ERROR([VTUNE $VTUNE_INCLUDE/jitprofiling.h not found.])
4824         fi
4825         if test ! -f $VTUNE_LIB/libjitprofiling.a; then
4826                 AC_MSG_ERROR([VTUNE $VTUNE_LIB/libjitprofiling.a not found.])
4827         fi
4829         VTUNE_CFLAGS=-I$VTUNE_INCLUDE
4830         VTUNE_LIBS="-L/$VTUNE_LIB/ -ljitprofiling"
4832         AC_SUBST(VTUNE_LIBS)
4833         AC_SUBST(VTUNE_CFLAGS)
4835 dnl Use GCC atomic ops if they work on the target.
4836 if test x$GCC = "xyes"; then
4837         case $TARGET in
4838         X86 | AMD64 | ARM | ARM64 | ARM6432 | POWERPC | POWERPC64 | MIPS | S390X | SPARC | SPARC64 | RISCV32 | RISCV64)
4839                 AC_DEFINE(USE_GCC_ATOMIC_OPS, 1, [...])
4840                 ;;
4841         esac
4844 if test "x$target_mach" = "xyes"; then
4846    if test "x$TARGET_SYS" = "xWATCHOS"; then
4847           AC_DEFINE(TARGET_WATCHOS,1,[The JIT/AOT targets WatchOS])
4848           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_WATCHOS"
4849           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_WATCHOS"
4850           BTLS_SUPPORTED=no
4851    elif test "x$TARGET" = "xARM" -o "x$TARGET" = "xARM64" -o "x$TARGET" = "xARM6432"; then
4852           AC_DEFINE(TARGET_IOS,1,[The JIT/AOT targets iOS])
4853           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_IOS"
4854           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_IOS"
4855           BTLS_SUPPORTED=no
4856           target_ios=yes
4857    else
4858        AC_TRY_COMPILE([#include "TargetConditionals.h"],[
4859        #if TARGET_IPHONE_SIMULATOR == 1 || TARGET_OS_IPHONE == 1
4860        #error fail this for ios
4861        #endif
4862        ], [
4863                   AC_DEFINE(TARGET_OSX,1,[The JIT/AOT targets OSX])
4864           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_OSX"
4865           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_OSX"
4866           target_osx=yes
4867        ], [
4868           AC_DEFINE(TARGET_IOS,1,[The JIT/AOT targets iOS])
4869           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_IOS"
4870           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_IOS"
4871           BTLS_SUPPORTED=no
4872                   target_ios=yes
4873        ])
4874         fi
4875    AC_DEFINE(TARGET_MACH,1,[The JIT/AOT targets Apple platforms])
4878 AM_CONDITIONAL(TARGET_OSX, test x$target_osx = xyes)
4880 AC_SUBST(SIZEOF_VOID_P,[$ac_cv_sizeof_void_p])
4882 if test "x$target_byte_order" = "xG_BIG_ENDIAN"; then
4883    AC_DEFINE(TARGET_BYTE_ORDER,G_BIG_ENDIAN,[byte order of target])
4884 elif test "x$target_byte_order" = "xG_LITTLE_ENDIAN"; then
4885    AC_DEFINE(TARGET_BYTE_ORDER,G_LITTLE_ENDIAN,[byte order of target])
4886 else
4887    AC_DEFINE(TARGET_BYTE_ORDER,G_BYTE_ORDER,[byte order of target])
4890 AC_DEFINE_UNQUOTED(TARGET_SIZEOF_VOID_P,${target_sizeof_void_p},[wordsize of target])
4892 if test "x$sizeof_register" = "x4"; then
4893   AC_DEFINE(SIZEOF_REGISTER,4,[size of target machine integer registers])
4894 elif test "x$sizeof_register" = "x8"; then
4895   AC_DEFINE(SIZEOF_REGISTER,8,[size of target machine integer registers])
4896 else
4897   AC_DEFINE_UNQUOTED(SIZEOF_REGISTER,${target_sizeof_void_p},[size of target machine integer registers])
4900 # zlib/configure detects visibility support similarly and defines HAVE_HIDDEN
4901 # on the compiler command line (not config.h).
4902 if test "x$have_visibility_hidden" = "xyes"; then
4903    AC_DEFINE(HAVE_VISIBILITY_HIDDEN, 1, [Support for the visibility ("hidden") attribute])
4904    ZLIB_CFLAGS="$ZLIB_CFLAGS -DHAVE_HIDDEN"
4907 if test "x$have_deprecated" = "xyes"; then
4908    AC_DEFINE(HAVE_DEPRECATED, 1, [Support for the deprecated attribute])
4911 dnl 
4912 dnl Simple Generational checks (sgen)
4914 SGEN_DEFINES=
4915 AC_ARG_WITH(sgen,                    [  --with-sgen=yes,no             Extra Generational GC, default=yes],[buildsgen=$with_sgen],[buildsgen=yes])
4916 AC_ARG_WITH(sgen-default-concurrent, [  --with-sgen-default-concurrent=yes,no             Use Concurrent GC, default=no],[],[with_sgen_default_concurrent=no])
4917 if test x$buildsgen = xyes; then
4918    AC_DEFINE(HAVE_MOVING_COLLECTOR, 1, [Moving collector])
4919    SGEN_DEFINES="-DHAVE_SGEN_GC"
4921         conc_gc_msg=""
4922    if test x$with_sgen_default_concurrent != xno; then
4923        AC_DEFINE(HAVE_CONC_GC_AS_DEFAULT, 1, [Defaults to concurrent GC])
4924            conc_gc_msg=" (concurrent by default)"
4925    fi
4927    if test "x$gc_msg" = "x"; then
4928       gc_msg="sgen$conc_gc_msg"
4929    else
4930       gc_msg="sgen$conc_gc_msg and $gc_msg"
4931    fi
4933 AC_SUBST(SGEN_DEFINES)
4934 AM_CONDITIONAL(SUPPORT_SGEN, test x$buildsgen = xyes)
4936 jit_status="Building and using the JIT"
4938 libsuffix=".so"
4940 case "$host" in
4941      *-*-aix*)
4942         dnl on AIX/PASE, shared libraries can be and usually are inside archives
4943         dnl so, we specify them by libfoo.a(libfoo.so.0) for libtool's conventions,
4944         dnl or libfoo.a(shr[_64].o) for the AIX system convention,
4945         dnl or lib.so[.0](shr[_64].o) for libtool's hybrid convention
4946         dnl we may hardcode 64-bit names at times, but we don't do 32-bit AIX
4947         LIBC="libc.a(shr_64.o)"
4948         # Thanks, I hate it! This is crumbly, especially the one-liner.
4949         AC_MSG_CHECKING([how to dlopen libintl])
4950         AC_LINK_IFELSE([AC_LANG_SOURCE([
4951                 /* XXX: Check for libintl header/gettext func better? */
4952                 #include <libintl.h>
4954                 int main (void) {
4955                         gettext("Dummy for autoconf");
4956                         return 1;
4957                 }
4958         ])],
4959         [
4960         INTL="$(dump -X64 -Hp conftest$EXEEXT | grep libintl | cut -c 38- | tr -s " " | awk '{print $1"("$2")"}')"
4961         AC_MSG_RESULT([yes, $INTL])
4962         ],
4963         [
4964         INTL="libintl.a(libintl.so.8)"
4965         AC_MSG_RESULT([no, falling back to $INTL])
4966         ])
4967         SQLITE3="libsqlite3.a(libsqlite3.so.0)"
4968         # it's very tempting to set a libsuffix, but it depends on the soname value
4969         ;;
4970      *-*-os400*)
4971         dnl However, IBM's packages for i try to be more "normal" than the AIX world, naming wise.
4972         dnl The library archives has "normal" .so names, but they're members with predictable "shr" names for fat libraries.
4973         LIBC="libc.a(shr_64.o)"
4974         INTL="libintl.so(shr_64.o)"
4975         SQLITE3="libsqlite3.so(shr_64.o)"
4976         # likewise, it's safer to assume ".so(shr_64.o)" due to official IBM packages being built this way, but as with AIX, others may not be guaranteed
4977         # it may be worth revisiting this in the future
4978         ;;
4979      *-*-darwin*)
4980         libsuffix=".dylib"
4981         LIBC="libc.dylib"
4982         INTL="libintl.dylib"
4983         SQLITE="libsqlite.0.dylib"
4984         SQLITE3="libsqlite3.0.dylib"
4985         X11="libX11.dylib"
4986         GDKX11="libgdk-x11-2.0.dylib"
4987         GTKX11="libgtk-x11-2.0.dylib"
4988         ;;
4989      *-*-*netbsd*)
4990         LIBC="libc.so"
4991         INTL="libintl.so"
4992         SQLITE="libsqlite.so"
4993         SQLITE3="libsqlite3.so"
4994         ;;
4995      *-*-kfreebsd*-gnu)
4996         LIBC="libc.so.0.1"
4997         INTL="libc.so.0.1"
4998         X11="libX11.so.6"
4999         ;;
5000     *-*-*freebsd*)
5001         LIBC="libc.so.7"
5002         INTL="libintl.so"
5003         SQLITE="libsqlite.so"
5004         SQLITE3="libsqlite3.so"
5005         ;;
5006     *-*-*openbsd*)
5007         LIBC="libc.so"
5008         INTL="libintl.so"
5009         SQLITE="libsqlite.so"
5010         SQLITE3="libsqlite3.so"
5011         ;;
5012     *-*-*linux*)
5013         AC_PATH_X
5014         dlsearch_path=`(libtool --config ; echo eval echo \\$sys_lib_dlsearch_path_spec) | sh`
5015         AC_MSG_CHECKING(for the soname of libX11.so)
5016         for i in $x_libraries $dlsearch_path; do
5017                 for r in 4 5 6; do
5018                         if test -f $i/libX11.so.$r; then
5019                                 X11=libX11.so.$r
5020                                 AC_MSG_RESULT($X11)
5021                         fi
5022                 done
5023         done
5024         
5025         if test "x$X11" = "xlibX11.so"; then
5026                 AC_MSG_WARN([Could not find libX11.so. Do you have X.org or XFree86 installed? Assuming libX11.so.6...]);
5027                 X11=libX11.so.6
5028         fi
5029         ;;
5030 esac
5032 AC_SUBST(libsuffix)
5034 ######################################
5035 # EGLIB CHECKS
5036 ######################################
5038 GNUC_PRETTY=
5039 GNUC_UNUSED=
5040 BREAKPOINT="G_STMT_START { raise (SIGTRAP); } G_STMT_END"
5041 if test x$GCC = xyes; then
5042    GNUC_UNUSED='__attribute__((__unused__))'
5043    GNUC_NORETURN='__attribute__((__noreturn__))'
5044    case $host_cpu in
5045      i*86|x86_64) BREAKPOINT="G_STMT_START { __asm__ (\"int \$03\"); } G_STMT_END" ;;
5046    esac
5048 AC_SUBST(GNUC_PRETTY)
5049 AC_SUBST(GNUC_UNUSED)
5050 AC_SUBST(GNUC_NORETURN)
5051 AC_SUBST(BREAKPOINT)
5053 AC_C_BIGENDIAN([ORDER=G_BIG_ENDIAN],[ORDER=G_LITTLE_ENDIAN])
5055 case $host in
5056 *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
5057     PATHSEP='\\'
5058     SEARCHSEP=';'
5059     OS="WIN32"
5060     PIDTYPE='void *'
5061     ;;
5063     PATHSEP='/'
5064     SEARCHSEP=':'
5065     OS="UNIX"
5066     PIDTYPE='int'
5067     ;;
5068 esac
5070 case $host in
5071         *-*-solaris*)
5072         CFLAGS="$CFLAGS -D_POSIX_PTHREAD_SEMANTICS"
5073         ;;
5074 esac
5076 case $target in
5077 arm*-darwin*|aarch64*-*|riscv*)
5078     CFLAGS="$CFLAGS -U_FORTIFY_SOURCE"
5079     ;;
5080 i*86-*-darwin*)
5081     ORDER=G_LITTLE_ENDIAN
5082     ;;
5083 *-*-haiku*)
5084     LDFLAGS="$LDFLAGS -ltextencoding"
5085     ;;
5086 *-*-openbsd*)
5087     CFLAGS="$CFLAGS -pthread"
5088     LDFLAGS="$LDFLAGS -pthread"
5089     ;;
5090 esac
5092 AC_SUBST(ORDER)
5093 AC_SUBST(PATHSEP)
5094 AC_SUBST(SEARCHSEP)
5095 AC_SUBST(OS)
5096 AC_SUBST(PIDTYPE)
5098 # Defined for all targets/platforms using classic Windows API support.
5099 AC_DEFINE(HAVE_CLASSIC_WINAPI_SUPPORT, 1, [Use classic Windows API support])
5100 AC_DEFINE(HAVE_UWP_WINAPI_SUPPORT, 0, [Don't use UWP Windows API support])
5102 AC_CHECK_FUNCS(strlcpy stpcpy strtok_r rewinddir vasprintf)
5103 AC_CHECK_FUNCS(getrlimit)
5104 AC_CHECK_FUNCS(fork execv execve)
5105 AC_CHECK_FUNCS(waitpid)
5107 AC_ARG_WITH([overridable-allocators], [  --with-overridable-allocators  allow g_*alloc/g_free to call custom allocators set via g_mem_set_vtable])
5109 if test x$with_overridable_allocators = xyes; then
5110         AC_DEFINE(ENABLE_OVERRIDABLE_ALLOCATORS,1,[Overridable allocator support enabled])
5111   AC_MSG_NOTICE([Overridable allocator support enabled])
5112 else
5113   AC_MSG_NOTICE([Overridable allocator support disabled])
5117 # Mono currently supports 10.6, but strndup is not available prior to 10.7; avoiding
5118 # the detection of strndup on OS X so Mono built on 10.7+ still runs on 10.6. This can be
5119 # removed once support for 10.6 is dropped.
5121 # iOS detection of strndup and getpwuid_r is faulty for some reason so let's simply avoid it
5123 if test x$target_osx = xyes; then
5124 AC_CHECK_FUNCS(getpwuid_r)
5125 elif test x$target_ios = xno; then
5126 AC_CHECK_FUNCS(strndup getpwuid_r)
5129 AC_SEARCH_LIBS(sqrtf, m)
5131 # nanosleep may not be part of libc, also search it in other libraries
5132 AC_SEARCH_LIBS(nanosleep, rt)
5134 AC_SEARCH_LIBS(dlopen, dl)
5136 # AIX/OS400 -bsymbolic
5137 # Apple -bind_at_load
5138 # The rest GNU.
5140 AX_APPEND_LINK_FLAGS([-Wl,--export-dynamic -Wl,-Bsymbolic -bsymbolic -Wl,-z,now -Wl,-bind_at_load])
5142 AC_CHECK_HEADERS(getopt.h sys/select.h sys/time.h sys/wait.h pwd.h iconv.h sys/types.h sys/resource.h)
5143 dnl giconv.c will check on HAVE_ICONV_H but we need this for link time
5144 AC_CHECK_LIB(iconv, iconv_open)
5145 AC_CHECK_HEADER(alloca.h, [HAVE_ALLOCA_H=1], [HAVE_ALLOCA_H=0])
5146 AC_SUBST(HAVE_ALLOCA_H)
5148 # Get the exact type of size_t, not just its size.
5149 # This is so we can find an exact printf format among u, lu, llu, I64u.
5150 # To avoid warnings about slight mismatches.
5151 # C99 runtime "zu" dependency is being avoided here.
5153 # We have to compile as C++ because C is too lenient
5154 # and lets the wrong thing compile, with warnings.
5156 # Note: "zu" or ifdef <something> have the advantage
5157 # of producing installable "biarch" headers. i.e. one Mac header
5158 # for Mac/x86 and Mac/amd64.
5160 AC_LANG_PUSH(C++)
5162 # Check long before int because it is the overwhelming Unix answer,
5163 # across 32bit and 64bit systems -- fewer compiler invocations in autoconf.
5165 # long ahead of int also tends to produce biarch-compatible headers except Windows.
5167 AC_MSG_CHECKING(if size_t is unsigned long)
5168 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
5169         #include <stddef.h>
5170         unsigned long *a = (size_t*)0;
5171 ])], [
5172         AC_MSG_RESULT(yes)
5173         AC_SUBST(GSIZE_FORMAT, '"lu"')
5174 ], [
5175         AC_MSG_RESULT(no)
5176         AC_MSG_CHECKING(if size_t is unsigned int)
5177         AC_COMPILE_IFELSE([AC_LANG_SOURCE([
5178                 #include <stddef.h>
5179                 unsigned *a = (size_t*)0;
5180         ])], [
5181                 AC_MSG_RESULT(yes)
5182                 AC_SUBST(GSIZE_FORMAT, '"u"')
5183         ], [
5184 # At this point the majority of systems have their answer,
5185 # and we descend into non-standard or new-standard territory.
5187 # Check __int64 first because I64 on some systems predates ll, enabling
5188 # new compiler/old runtime interop, and the types always have the same size.
5189                 AC_MSG_RESULT(no)
5190                 AC_MSG_CHECKING(if size_t is unsigned __int64)
5191                 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
5192                         #include <stddef.h>
5193                         unsigned __int64 *a = (size_t*)0;
5194                 ])], [
5195                         AC_MSG_RESULT(yes)
5196                         AC_SUBST(GSIZE_FORMAT, '"I64u"')
5197                 ], [
5198                         AC_MSG_RESULT(no)
5199                         AC_MSG_CHECKING(if size_t is unsigned long long)
5200                         AC_COMPILE_IFELSE([AC_LANG_SOURCE([
5201                                 #include <stddef.h>
5202                                 unsigned long long *a = (size_t*)0;
5203                         ])], [
5204                                 AC_MSG_RESULT(yes)
5205                                 AC_SUBST(GSIZE_FORMAT, '"llu"')
5206                         ], [
5207                                 AC_MSG_RESULT(no)
5208                                 AC_MSG_ERROR(Unable to determine size_t among unsigned long, int, __int64, long long)
5209                         ] )
5210                 ] )
5211         ] )
5212 ] )
5214 AC_LANG_POP
5216 # If size_t/ptrdiff_t is correct, use it. Otherwise C99 [u]intptr_t.
5217 # This provides for an exact match with functions that
5218 # take size_t like malloc and pthread_attr_getstacksize, avoiding warnings.
5219 # uintptr_t is not necessarily the same.
5221 # ptrdiff_t is preferred over ssize_t as it is C89 vs. new Posix.
5222 # ssize_t looks nicer but ptrdiff_t is wrapped up as gssize anyway.
5224 if test $ac_cv_sizeof_void_p = $ac_cv_sizeof_size_t; then
5225    GSIZE="size_t"
5226    GSSIZE="ptrdiff_t"
5227 else
5228    GSIZE="uintptr_t"
5229    GSSIZE="intptr_t"
5232 AC_SUBST(GSIZE)
5233 AC_SUBST(GSSIZE)
5234 AC_SUBST(GSIZE_FORMAT)
5237 # END OF EGLIB CHECKS
5240 AC_ARG_WITH([libgdiplus],
5241         [  --with-libgdiplus=installed|sibling|<path>   Override the libgdiplus used for System.Drawing tests (defaults to installed)],
5242         [], [with_libgdiplus=installed])
5244 # default install location
5245 libgdiplus_install_loc=libgdiplus${libsuffix}
5246 case "$host" in
5247     *-*-*linux*)
5248     libgdiplus_install_loc=libgdiplus${libsuffix}.0
5249     ;;
5250 esac
5252 case $with_libgdiplus in
5253     no)
5254     libgdiplus_loc=
5255     ;;
5257     installed)
5258     libgdiplus_loc=
5259     if test x$cross_compiling = xno; then
5260         if test x$host_darwin = xyes; then
5261             a=/Library/Frameworks/Mono.framework/Versions/Current/lib/$libgdiplus_install_loc
5262             if test -x $a; then
5263               libgdiplus_install_loc=$a
5264               libgdiplus_loc=$a
5265             fi
5266         fi
5267     fi
5268     ;;
5270     yes|sibling)
5271     libgdiplus_loc=`cd ../libgdiplus && pwd`/src/libgdiplus.la
5272     ;;
5274     /*) # absolute path, assume it is an install location
5275     libgdiplus_loc=$with_libgdiplus
5276     libgdiplus_install_loc=$with_libgdiplus
5277     ;;
5279     *)
5280     libgdiplus_loc=`pwd`/$with_libgdiplus
5281     ;;
5282 esac
5283 AC_SUBST(libgdiplus_loc)
5284 AC_SUBST(libgdiplus_install_loc)
5286 AC_ARG_ENABLE(icall-symbol-map,[  --enable-icall-symbol-map Generate tables which map icall functions to their C symbols], icall_symbol_map=$enableval, icall_symbol_map=no)
5287 if test "x$icall_symbol_map" = "xyes"; then
5288    AC_DEFINE(ENABLE_ICALL_SYMBOL_MAP, 1, [Icall symbol map enabled])
5291 AC_ARG_ENABLE(icall-export,[  --enable-icall-export Export icall functions], icall_export=$enableval, icall_export=no)
5292 if test "x$icall_export" = "xyes"; then
5293    AC_DEFINE(ENABLE_ICALL_EXPORT, 1, [Icall export enabled])
5296 AC_ARG_ENABLE(icall-tables,[  --disable-icall-tables Disable the runtime lookup of icalls], icall_tables=$enableval, icall_tables=yes)
5297 if test "x$icall_tables" = "xno"; then
5298    AC_DEFINE(DISABLE_ICALL_TABLES, 1, [Icall tables disabled])
5301 AM_CONDITIONAL(DISABLE_ICALL_TABLES, test x$icall_tables = xno)
5303 if test "x$with_tls" = "x__thread"; then
5304         AC_DEFINE(MONO_KEYWORD_THREAD, __thread, [Have __thread keyword])
5305         # Pass the information to libgc
5306         CPPFLAGS="$CPPFLAGS -DUSE_COMPILER_TLS"
5307         AC_MSG_CHECKING(if the tls_model attribute is supported)
5308         AC_TRY_COMPILE([static __thread int foo __attribute__((tls_model("initial-exec")));], [
5309                 ], [
5310                         AC_MSG_RESULT(yes)
5311                         AC_DEFINE(HAVE_TLS_MODEL_ATTR, 1, [tls_model available])
5312                 ], [
5313                         AC_MSG_RESULT(no)
5314         ])
5317 if test ${TARGET} = ARM; then
5318         dnl ******************************************
5319         dnl *** Check to see what FPU is available ***
5320         dnl ******************************************
5321         AC_MSG_CHECKING(which FPU to use)
5323         #
5324         # This is a bit tricky:
5325         #
5326         # if (__ARM_PCS_VFP) {
5327         #       /* mfloat-abi=hard == VFP with hard ABI */
5328         # } elif (!__SOFTFP__) {
5329         #       /* mfloat-abi=softfp == VFP with soft ABI */
5330         # } else {
5331         #       /* mfloat-abi=soft == no VFP */
5332         # }
5333         #
5334         # The exception is iOS (w/ GCC) where none of the above
5335         # are defined (but iOS always uses the 'softfp' ABI).
5336         #
5337         # No support for FPA.
5338         #
5340         fpu=NONE
5342         # iOS GCC always uses the 'softfp' ABI.
5343         if test x"$GCC" = xyes && test x$host_darwin = xyes; then
5344                 fpu=VFP
5345         fi
5347         # Are we using the 'hard' ABI?
5348         if test x$fpu = xNONE; then
5349                 AC_TRY_COMPILE([], [
5350                         #ifndef __ARM_PCS_VFP
5351                         #error "Float ABI is not 'hard'"
5352                         #endif
5353                 ], [
5354                         fpu=VFP_HARD
5355                 ], [
5356                         fpu=NONE
5357                 ])
5358         fi
5360         # No 'hard' ABI. 'soft' or 'softfp'?
5361         if test x$fpu = xNONE; then
5362                 AC_TRY_COMPILE([], [
5363                         #ifdef __SOFTFP__
5364                         #error "Float ABI is not 'softfp'"
5365                         #endif
5366                 ], [
5367                         fpu=VFP
5368                 ], [
5369                         fpu=NONE
5370                 ])
5371         fi
5373         if test x$arm_fpu != x; then
5374            fpu=$arm_fpu
5375         fi
5377         AC_MSG_RESULT($fpu)
5378         CPPFLAGS="$CPPFLAGS -DARM_FPU_$fpu=1"
5379         unset fpu
5381         dnl *********************************************
5382         dnl *** Check which ARM version(s) we can use ***
5383         dnl *********************************************
5384         AC_MSG_CHECKING(which ARM version to use)
5386         AC_TRY_COMPILE([], [
5387                 #if !defined(__ARM_ARCH_5T__) && !defined(__ARM_ARCH_5TE__) && !defined(__ARM_ARCH_5TEJ__)
5388                 #error Not on ARM v5.
5389                 #endif
5390         ], [
5391                 arm_v5=yes
5393                 arm_ver=ARMv5
5394         ], [])
5396         AC_TRY_COMPILE([], [
5397                 #if !defined(__ARM_ARCH_6J__) && !defined(__ARM_ARCH_6ZK__) && !defined(__ARM_ARCH_6K__) && !defined(__ARM_ARCH_6T2__) && !defined(__ARM_ARCH_6M__)
5398                 #error Not on ARM v6.
5399                 #endif
5400         ], [
5401                 arm_v5=yes
5402                 arm_v6=yes
5404                 arm_ver=ARMv6
5405         ], [])
5407         AC_TRY_COMPILE([], [
5408                 #if !defined(__ARM_ARCH_7A__) && !defined(__ARM_ARCH_7R__) && !defined(__ARM_ARCH_7EM__) && !defined(__ARM_ARCH_7M__) && !defined(__ARM_ARCH_7S__)
5409                 #error Not on ARM v7.
5410                 #endif
5411         ], [
5412                 arm_v5=yes
5413                 arm_v6=yes
5414                 arm_v7=yes
5416                 arm_ver=ARMv7
5417         ], [])
5419         AC_MSG_RESULT($arm_ver)
5421         if test x$arm_v5 = xyes; then
5422                 AC_DEFINE(HAVE_ARMV5, 1, [ARM v5])
5423                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DHAVE_ARMV5=1"
5424         fi
5426         if test x$arm_v6 = xyes; then
5427                 AC_DEFINE(HAVE_ARMV6, 1, [ARM v6])
5428                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DHAVE_ARMV6=1"
5429         fi
5431         if test x$arm_v7 = xyes; then
5432                 AC_DEFINE(HAVE_ARMV7, 1, [ARM v7])
5433                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DHAVE_ARMV7=1"
5434         fi
5436         if test x$host_linux = xyes; then
5437                 RID="linux-arm"
5438                 COREARCH="arm"
5439                 if test x$fpu = xNONE; then
5440                         RID="linux-armel"
5441                         COREARCH="armel"
5442                 fi
5443         fi
5446 AC_SUBST(RID)
5447 AC_SUBST(COREARCH)
5448 AC_SUBST(CORETARGETS)
5450 if test ${TARGET} = RISCV32 -o ${TARGET} = RISCV64; then
5451         AC_ARG_WITH([riscv-fpabi], [  --with-riscv-fpabi=auto,double,soft   Select RISC-V floating point ABI (auto)], [fpabi=$withval], [fpabi=double])
5453         AC_MSG_CHECKING([which RISC-V floating point ABI to use])
5455         if test x$fpabi = xauto; then
5456                 AC_TRY_COMPILE([], [
5457                         #ifdef __riscv_float_abi_double
5458                         #error "double"
5459                         #endif
5460                 ], [
5461                         fpabi=auto
5462                 ], [
5463                         fpabi=double
5464                 ])
5465         fi
5467         if test x$fpabi = xauto; then
5468                 AC_TRY_COMPILE([], [
5469                         #ifdef __riscv_float_abi_single
5470                         #error "single"
5471                         #endif
5472                 ], [
5473                         fpabi=auto
5474                 ], [
5475                         fpabi=single
5476                 ])
5477         fi
5479         if test x$fpabi = xauto; then
5480                 AC_TRY_COMPILE([], [
5481                         #ifdef __riscv_float_abi_soft
5482                         #error "soft"
5483                         #endif
5484                 ], [
5485                         fpabi=auto
5486                 ], [
5487                         fpabi=soft
5488                 ])
5489         fi
5491         case $fpabi in
5492         double)
5493                 AC_DEFINE([RISCV_FPABI_DOUBLE], [1], [RISC-V FPABI is double-precision])
5494                 AC_MSG_RESULT([double-precision])
5495                 ;;
5496         single)
5497                 AC_DEFINE([RISCV_FPABI_SINGLE], [1], [RISC-V FPABI is single-precision])
5498                 AC_MSG_ERROR([single-precision, not supported])
5499                 ;;
5500         soft)
5501                 AC_DEFINE([RISCV_FPABI_SOFT], [1], [RISC-V FPABI is soft float])
5502                 AC_MSG_RESULT([soft float])
5503                 ;;
5504         auto)
5505                 AC_MSG_ERROR([unknown])
5506                 ;;
5507         *)
5508                 AC_MSG_ERROR([invalid option: $fpabi])
5509                 ;;
5510         esac
5513 if test ${TARGET} = unknown; then
5514         CPPFLAGS="$CPPFLAGS -DNO_PORT"
5515         AC_MSG_WARN("mono has not been ported to $host: some things may not work.")
5518 if test "x$platform_android" = "xyes"; then
5519         case "x${TARGET}" in
5520         xARM)
5521                 case "x$arm_ver" in
5522                 xARMv5)
5523                         BTLS_SUPPORTED=yes
5524                         BTLS_PLATFORM=android-armv5
5525                         ;;
5526                 xARMv6)
5527                         BTLS_SUPPORTED=yes
5528                         BTLS_PLATFORM=android-armv6
5529                         ;;
5530                 xARMv7)
5531                         BTLS_SUPPORTED=yes
5532                         BTLS_PLATFORM=android-armv7
5533                         ;;
5534                 *)
5535                         BTLS_SUPPORTED=no
5536                         ;;
5537                 esac
5538                 ;;
5539         xARM64)
5540                 BTLS_SUPPORTED=yes
5541                 BTLS_PLATFORM=android-v8a
5542                 ;;
5543         xX86)
5544                 BTLS_SUPPORTED=yes
5545                 BTLS_PLATFORM=android-x86
5546                 ;;
5547         xAMD64)
5548                 BTLS_SUPPORTED=yes
5549                 BTLS_PLATFORM=android-x64
5550                 ;;
5551         *)
5552                 BTLS_SUPPORTED=no
5553                 ;;
5554         esac
5557 if test ${ACCESS_UNALIGNED} = no; then
5558         CPPFLAGS="$CPPFLAGS -DNO_UNALIGNED_ACCESS"
5561 if test x$host_darwin = xyes; then
5562         AC_MSG_CHECKING([for ranlib that supports -no_warning_for_no_symbols option])
5563         AS_IF(
5564                 [$RANLIB -no_warning_for_no_symbols 2>&1 | grep -q "unknown option"],
5565                 [AC_MSG_RESULT([no])],
5566                 [
5567                         # avoid AR calling ranlib, libtool calls it anyway. suppress no symbols warning.
5568                         AR_FLAGS="Scru"
5569                         RANLIB="$RANLIB -no_warning_for_no_symbols"
5570                         AC_MSG_RESULT([yes])
5571                 ]
5572         )
5575 case "x$libgc" in
5576         xincluded)
5577                 # Pass CPPFLAGS to libgc configure
5578                 # We should use a separate variable for this to avoid passing useless and
5579                 # potentially problematic defines to libgc (like -D_FILE_OFFSET_BITS=64)
5580                 # This should be executed late so we pick up the final version of CPPFLAGS
5581                 # The problem with this approach, is that during a reconfigure, the main
5582                 # configure scripts gets invoked with these arguments, so we use separate
5583                 # variables understood by libgc's configure to pass CPPFLAGS and CFLAGS.
5584                 TMP_CPPFLAGS="$CPPFLAGS $CPPFLAGS_FOR_LIBGC"
5585                 if test x$TARGET = xSPARC -o x$TARGET = xSPARC64; then
5586                         TMP_CPPFLAGS=`echo $TMP_CPPFLAGS | sed -e 's/-D_FILE_OFFSET_BITS=64//g'`
5587                 fi
5588                 # Don't pass -finstrument-for-thread-suspension in, 
5589                 # if these are instrumented it will be very bad news 
5590                 # (infinite recursion, undefined parking behavior, etc)
5591                 TMP_CPPFLAGS=`echo $TMP_CPPFLAGS | sed -e 's/-finstrument-for-thread-suspension//g'`
5592                 ac_configure_args="$ac_configure_args --disable-embed-check --with-libgc-threads=$libgc_threads $libgc_configure_args \"CPPFLAGS_FOR_LIBGC=$TMP_CPPFLAGS\" \"CFLAGS_FOR_LIBGC=$CFLAGS_FOR_LIBGC\""
5593                 if test "x$support_boehm" = "xyes"; then
5594                         AC_CONFIG_SUBDIRS(libgc)
5595                 fi
5596                 ;;
5597 esac
5599 MALLOC_MEMPOOLS=no
5600 AC_ARG_WITH(malloc_mempools,[  --with-malloc-mempools=yes,no  Use malloc for each single mempool allocation (only for runtime debugging, defaults to no)],[
5601         if test x$with_malloc_mempools = xyes; then
5602                 MALLOC_MEMPOOLS=yes
5603                 AC_DEFINE(USE_MALLOC_FOR_MEMPOOLS,1,[Use malloc for each single mempool allocation])
5604         fi
5608 DISABLE_MCS_DOCS=default
5609 AC_ARG_WITH(mcs_docs,[  --with-mcs-docs=yes,no         If you want to build the documentation under mcs (defaults to yes)],[
5610         if test x$with_mcs_docs != xyes; then
5611                 DISABLE_MCS_DOCS=yes
5612         fi
5614 if test -n "$INSTALL_4_x_TRUE"; then :
5615         DISABLE_MCS_DOCS=yes
5617 if test "x$DISABLE_MCS_DOCS" = "xdefault"; then
5618    DISABLE_MCS_DOCS=$DISABLE_MCS_DOCS_default
5621 AC_ARG_WITH(lazy_gc_thread_creation, [  --with-lazy-gc-thread-creation=yes|no      Enable lazy runtime thread creation, embedding host must do it explicitly (defaults to no)],[
5622         if test x$with_lazy_gc_thread_creation != xno ; then
5623                 AC_DEFINE(LAZY_GC_THREAD_CREATION,1,[Enable lazy gc thread creation by the embedding host.])
5624         fi
5625 ], [with_lazy_gc_thread_creation=no])
5627 dnl *****************************
5628 dnl *** Thread suspend policy ***
5629 dnl *****************************
5631 dnl Set a default hybrid or cooperative suspend on some platforms
5633 dnl Coop default is set by the bitcode preset.
5635 dnl If coop isn't on by default, maybe hybrid should be?
5636 if test x$enable_cooperative_suspend_default != xyes; then
5637         case $HOST in
5638         X86 | AMD64)
5639                 dnl Some host/target confusion, there's no host_osx (and
5640                 dnl host_darwin would be true on iOS not just macOS).
5641                 if test x$target_osx = xyes; then
5642                         enable_hybrid_suspend_default=yes
5643                 elif test x$host_linux = xyes -o x$host_win32 = xyes; then
5644                         enable_hybrid_suspend_default=yes
5645                 fi
5646                 ;;
5647         esac
5650 dnl Now check if there were flags overriding the defaults
5652 AC_ARG_WITH(cooperative_gc,        [  --with-cooperative-gc=yes|no        Enable cooperative stop-the-world garbage collection (sgen only) (defaults to no)], [AC_MSG_WARN([--with-cooperative-gc is deprecated, use --enable-cooperative-suspend instead])], [with_cooperative_gc=default])
5653 AC_ARG_ENABLE(cooperative_suspend, [  --enable-cooperative-suspend      Enable cooperative stop-the-world garbage collection (sgen only) (defaults to no)], [], [enable_cooperative_suspend=default])
5655 if test x$enable_cooperative_suspend = xdefault -a x$with_cooperative_gc != xdefault; then
5656         enable_cooperative_suspend=$with_cooperative_gc
5659 if test x$enable_cooperative_suspend = xdefault; then
5660         enable_cooperative_suspend=$enable_cooperative_suspend_default
5663 if test x$enable_cooperative_suspend != xno; then
5664         AC_DEFINE(ENABLE_COOP_SUSPEND,1,[Enable cooperative stop-the-world garbage collection.])
5665         enable_hybrid_suspend_default=no
5668 AM_CONDITIONAL([ENABLE_COOP_SUSPEND], [test x$enable_cooperative_suspend != xno])
5670 AC_ARG_ENABLE(hybrid_suspend, [ --enable-hybrid-suspend     Enable hybrid stop-the-world garbage collection (sgen only) - cooperative suspend for threads running managed and runtime code, and preemptive suspend for threads running native and P/Invoke code (defaults to no)], [], [enable_hybrid_suspend=default])
5672 if test x$enable_hybrid_suspend = xdefault; then
5673    enable_hybrid_suspend=$enable_hybrid_suspend_default
5676 if test x$enable_hybrid_suspend != xno -a x$enable_cooperative_suspend != xno ; then
5677         AC_MSG_ERROR([Hybrid suspend and Cooperative suspend cannot be both enabled.])
5680 if test x$enable_hybrid_suspend != xno ; then
5681         AC_DEFINE(ENABLE_HYBRID_SUSPEND,1,[Enable hybrid suspend for GC stop-the-world])
5684 AM_CONDITIONAL([ENABLE_HYBRID_SUSPEND], [test x$enable_hybrid_suspend != xno])
5686 dnl End of thread suspend policy
5688 dnl ***************************
5689 dnl *** feature experiments ***
5690 dnl ***************************
5692 dnl When adding experiments, also add to mono/utils/mono-experiments.def
5693 AC_ARG_ENABLE(experiment, [ --enable-experiment=LIST       Enable experimental fatures from the comma-separate LIST.  Available experiments: null],[
5695         if test x$enable_experiment != x ; then
5696                 AC_DEFINE(ENABLE_EXPERIMENTS,1,[Enable feature experiments])
5697         fi
5698         for feature in `echo "$enable_experiment" | sed -e "s/,/ /g"`; do
5699                 eval "mono_experiment_test_enable_$feature='yes'"
5700         done
5702         if test "x$mono_experiment_test_enable_all" = "xyes"; then
5703                 eval "mono_experiment_test_enable_null='yes'"
5704                 true
5705         fi
5707         if test "x$mono_experiment_test_enable_null" = "xyes"; then
5708                 AC_DEFINE(ENABLE_EXPERIMENT_null, 1, [Enable experiment 'null'])
5709         fi
5710 ],[])
5712 dnl **********************
5713 dnl *** checked builds ***
5714 dnl **********************
5716 AC_ARG_ENABLE(checked_build, [  --enable-checked-build=LIST      To enable checked build (expensive asserts), configure with a comma-separated LIST of checked build modules and then include that same list in the environment variable MONO_CHECK_MODE at runtime. Recognized checked build modules: all, gc, metadata, thread, private_types, crash_reporting],[
5718         if test x$enable_checked_build != x ; then
5719                 AC_DEFINE(ENABLE_CHECKED_BUILD,1,[Enable checked build])
5720         fi
5721         for feature in `echo "$enable_checked_build" | sed -e "s/,/ /g"`; do
5722                 eval "mono_checked_build_test_enable_$feature='yes'"
5723         done
5725         if test "x$mono_checked_build_test_enable_all" = "xyes"; then
5726                 eval "mono_checked_build_test_enable_gc='yes'"
5727                 eval "mono_checked_build_test_enable_metadata='yes'"
5728                 eval "mono_checked_build_test_enable_thread='yes'"
5729                 eval "mono_checked_build_test_enable_private_types='yes'"
5730                 eval "mono_checked_build_test_enable_crash_reporting='yes'"
5731         fi
5733         if test "x$mono_checked_build_test_enable_gc" = "xyes"; then
5734                 AC_DEFINE(ENABLE_CHECKED_BUILD_GC, 1, [Enable GC checked build])
5735         fi
5737         if test "x$mono_checked_build_test_enable_metadata" = "xyes"; then
5738                 AC_DEFINE(ENABLE_CHECKED_BUILD_METADATA, 1, [Enable metadata checked build])
5739         fi
5741         if test "x$mono_checked_build_test_enable_thread" = "xyes"; then
5742                 AC_DEFINE(ENABLE_CHECKED_BUILD_THREAD, 1, [Enable thread checked build])
5743         fi
5745         if test "x$mono_checked_build_test_enable_private_types" = "xyes"; then
5746                 AC_DEFINE(ENABLE_CHECKED_BUILD_PRIVATE_TYPES, 1, [Enable private types checked build])
5747         fi
5749         if test "x$mono_checked_build_test_enable_crash_reporting" = "xyes"; then
5750                 # Required
5751                 with_overridable_allocators=yes
5752                 AC_DEFINE(ENABLE_OVERRIDABLE_ALLOCATORS,1,[Overridable allocator support enabled])
5754                 AC_DEFINE(ENABLE_CHECKED_BUILD_CRASH_REPORTING, 1, [Enable private types checked build])
5755         fi
5756 ], [])
5758 dnl End of checked builds
5760 AM_CONDITIONAL(NEED_VASPRINTF, test x$ac_cv_func_vasprintf = xno || test x$with_overridable_allocators = xyes)
5762 AC_CHECK_HEADER([malloc.h], 
5763                 [AC_DEFINE([HAVE_USR_INCLUDE_MALLOC_H], [1], 
5764                         [Define to 1 if you have /usr/include/malloc.h.])],,)
5766 # When --disable-shared is used, libtool transforms libmono-2.0.la into libmono-2.0.so
5767 # instead of libmono-static.a
5768 if test "x$enable_shared" = "xno" -a "x$enable_executables" = "xyes"; then
5769    LIBMONO_LA=libmini-static.la
5770 else
5771    if test x$buildsgen = xyes; then
5772       LIBMONO_LA=libmonosgen-$API_VER.la
5773    else
5774       LIBMONO_LA=libmonoboehm-$API_VER.la
5775    fi
5777 AC_SUBST(LIBMONO_LA)
5779 dnl **************
5780 dnl ***  Btls  ***
5781 dnl **************
5783 AC_ARG_ENABLE(btls, [  --disable-btls             Disable the BoringTls provider], enable_btls=$enableval, enable_btls=$BTLS_SUPPORTED)
5784 AC_ARG_ENABLE(btls-lib, [  --disable-btls-lib             Disable building the BTLS native library], enable_btls_lib=$enableval, enable_btls_lib=$BTLS_SUPPORTED)
5785 AC_ARG_WITH(btls_android_ndk, [  --with-btls-android-ndk        Android NDK for BoringTls])
5786 AC_ARG_WITH(btls_android_api, [  --with-btls-android-api        Android NDK API level for BTLS build])
5787 AC_ARG_WITH(btls_android_cmake_toolchain, [  --with-btls-android-cmake-toolchain        Path to the cmake toolchain file for Android])
5788 AC_ARG_WITH(btls_android_ndk_asm_workaround, [  --with-btls-android-ndk-asm-workaround        Work around a problem with NDK r18+ clang compiler when compiling some AES assembly for ARM])
5790 if test "x$with_btls_android_api" = "x" ; then
5791         case "$BTLS_PLATFORM" in
5792                 android-armv5)
5793                         with_btls_android_api=16" ;;
5794                 android-armv6)
5795                         with_btls_android_api=16" ;;
5796                 android-armv7)
5797                         with_btls_android_api=16 ;;
5798                 android-v8a)
5799                         with_btls_android_api=21 ;;
5800                 android-x86)
5801                         with_btls_android_api=16 ;;
5802                 android-x64)
5803                         with_btls_android_api=21 ;;
5804         esac
5807 if test "x$enable_btls" = "xno"; then
5808    enable_btls_lib=no
5811 AM_CONDITIONAL(BTLS, test x$enable_btls_lib = xyes)
5813 btls_android=no
5814 if test "x$enable_btls" = "xyes"; then
5815         AC_PATH_PROG(CMAKE, [cmake], [no], [$PATH:/Applications/CMake.app/Contents/bin:/usr/local/bin])
5816         if test "x$CMAKE" = "xno"; then
5817                 AC_MSG_ERROR("cmake not found")
5818         fi
5820         BTLS_ROOT=`cd $srcdir && pwd`/external/boringssl
5821         AC_SUBST(BTLS_ROOT)
5823         btls_arch=
5824         btls_cflags=
5825         BTLS_CMAKE_ARGS=
5827         if test "x$host_win32" = "xyes"; then
5828                 AC_CHECK_PROG(HAVE_YASM, yasm, yes, no)
5829         fi
5831         case "$BTLS_PLATFORM" in
5832         i386)
5833                 btls_arch=i386
5834                 btls_cflags="-m32"
5835                 case $host_os in
5836                         darwin*)
5837                                 btls_cflags="$btls_cflags -arch i386"
5838                                 ;;
5839                         mingw*|cygwin*)
5840                                 btls_cflags="-DNOCRYPT $WIN32_CPPFLAGS"
5841                                 if test "x$HAVE_YASM" != "xyes"; then
5842                                         BTLS_CMAKE_ARGS="-DOPENSSL_NO_ASM=1"
5843                                 fi
5844                                 ;;
5845                 esac
5846                 ;;
5847         x86_64)
5848                 btls_arch=x86_64
5849                 case $host_os in
5850                         mingw*|cygwin*)
5851                                 btls_cflags="-DNOCRYPT $WIN32_CPPFLAGS"
5852                                 if test "x$HAVE_YASM" != "xyes"; then
5853                                         BTLS_CMAKE_ARGS="-DOPENSSL_NO_ASM=1"
5854                                 fi
5855                                 ;;
5856                 esac
5857                 ;;
5858         arm)
5859                 btls_arch=arm
5860                 btls_cflags="-DOPENSSL_NO_ASM=1"
5861                 ;;
5862         armsoft)
5863                 btls_arch=arm
5864                 btls_cflags="-DOPENSSL_NO_ASM=1"
5865                 ;;
5866         aarch64)
5867                 btls_arch=aarch64
5868                 btls_cflags="-march=armv8-a+crypto"
5869                 ;;
5870         s390x)
5871                 btls_arch=s390x
5872                 ;;
5873         powerpc)
5874                 btls_arch=powerpc
5875                 case $host_os in
5876                         aix*|os400*)
5877                                 btls_cflags="$btls_cflags -maix64 -mminimal-toc -pthread -D_ALL_SOURCE -D_THREAD_SAFE -D_REENTRANT"
5878                                 BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DCMAKE_AR=/usr/bin/ar -DCMAKE_C_ARCHIVE_CREATE=\"<CMAKE_AR> -X64 cr <TARGET> <LINK_FLAGS> <OBJECTS>\""
5879                 esac
5880                 ;;
5881         android-armv5)
5882                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"armeabi\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5883                 ;;
5884         android-armv6)
5885                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"armeabi\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5886                 ;;
5887         android-armv7)
5888                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"armeabi-v7a\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5889                 ;;
5890         android-v8a)
5891                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"arm64-v8a\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5892                 ;;
5893         android-x86)
5894                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"x86\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5895                 ;;
5896         android-x64)
5897                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"x86_64\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5898                 ;;
5899         riscv32)
5900                 btls_arch=riscv32
5901                 ;;
5902         riscv64)
5903                 btls_arch=riscv64
5904                 ;;
5905         *)
5906                 AC_MSG_ERROR(Invalid BTLS platform)
5907         esac
5909         if test "x$platform_android" = "xyes"; then
5910                 if test "x$with_btls_android_cmake_toolchain" = "x"; then
5911                    with_btls_android_cmake_toolchain="$BTLS_ROOT/util/android-cmake/android.toolchain.cmake"
5912                 fi
5914                 if test "x$with_btls_android_ndk_asm_workaround" != "x"; then
5915                    BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DENABLE_NDK_ARM_WORKAROUND=ON"
5916                 fi
5918                 btls_android=yes
5919                 BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DCMAKE_TOOLCHAIN_FILE=$with_btls_android_cmake_toolchain"
5920                 if test "x$with_btls_android_ndk" != "x"; then
5921                         BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DANDROID_NDK=\"$with_btls_android_ndk\""
5922                 else
5923                         AC_MSG_ERROR([Need to pass the --with-btls-android-ndk argument when building with BTLS support on Android.])
5924                 fi
5925         fi
5927         if test "x$btls_arch" != "x"; then
5928                 BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DBTLS_ARCH=\"$btls_arch\""
5929         fi
5931         BTLS_CFLAGS="$CPPFLAGS_FOR_BTLS $btls_cflags"
5932         AC_SUBST(BTLS_ARCH)
5933         AC_SUBST(BTLS_CFLAGS)
5934         AC_SUBST(BTLS_PLATFORM)
5935         AC_SUBST(BTLS_CMAKE_ARGS)
5937         AC_DEFINE(HAVE_BTLS, 1, [BoringTls is supported])
5938 else
5939         enable_btls=no
5942 AM_CONDITIONAL(BTLS_ANDROID, test x$btls_android = xyes)
5944 if test x$DISABLE_MCS_DOCS = xyes; then
5945    docs_dir=""
5946 else
5947    docs_dir=docs
5949 AC_SUBST(docs_dir)
5951 ## Maybe should also disable if mcsdir is invalid.  Let's punt the issue for now.
5952 AM_CONDITIONAL(BUILD_MCS, [test x$cross_compiling = xno && test x$enable_mcs_build != xno])
5953 AM_CONDITIONAL(BUILD_SUPPORT, [test x$enable_support_build != xno])
5955 libmono_ldflags="$libmono_ldflags $LIBS"
5957 AM_CONDITIONAL(MIPS_GCC, test ${TARGET}${ac_cv_prog_gcc} = MIPSyes)
5958 AM_CONDITIONAL(MIPS_SGI, test ${TARGET}${ac_cv_prog_gcc} = MIPSno)
5959 AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
5960 AM_CONDITIONAL(SPARC64, test x$TARGET = xSPARC64)
5961 AM_CONDITIONAL(X86, test x$TARGET = xX86)
5962 AM_CONDITIONAL(AMD64, test x$TARGET = xAMD64)
5963 AM_CONDITIONAL(MIPS, test x$TARGET = xMIPS)
5964 AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
5965 AM_CONDITIONAL(POWERPC64, test x$TARGET = xPOWERPC64)
5966 AM_CONDITIONAL(ARM, test x$TARGET = xARM)
5967 AM_CONDITIONAL(ARM64, test x$TARGET = xARM64 -o x$TARGET = xARM6432)
5968 AM_CONDITIONAL(S390X, test x$TARGET = xS390X)
5969 AM_CONDITIONAL([RISCV], [test x$TARGET = xRISCV32 -o x$TARGET = xRISCV64])
5970 AM_CONDITIONAL([RISCV32], [test x$TARGET = xRISCV32])
5971 AM_CONDITIONAL([RISCV64], [test x$TARGET = xRISCV64])
5972 AM_CONDITIONAL(WASM, test x$TARGET = xWASM)
5973 AM_CONDITIONAL(HOST_X86, test x$HOST = xX86)
5974 AM_CONDITIONAL(HOST_AMD64, test x$HOST = xAMD64)
5975 AM_CONDITIONAL(HOST_ARM, test x$HOST = xARM)
5976 AM_CONDITIONAL(HOST_ARM64, test x$HOST = xARM64)
5977 AM_CONDITIONAL([HOST_RISCV], [test x$HOST = xRISCV32 -o x$HOST = xRISCV64])
5978 AM_CONDITIONAL([HOST_RISCV32], [test x$HOST = xRISCV32])
5979 AM_CONDITIONAL([HOST_RISCV64], [test x$HOST = xRISCV64])
5980 AM_CONDITIONAL(HOST_WASM, test x$HOST = xWASM)
5982 AM_CONDITIONAL(CROSS_COMPILE, test "x$host" != "x$target")
5984 AC_SUBST(LIBC)
5985 AC_SUBST(INTL)
5986 AC_SUBST(SQLITE)
5987 AC_SUBST(SQLITE3)
5988 AC_SUBST(ODBC)
5989 AC_SUBST(X11)
5990 AC_SUBST(GDKX11)
5991 AC_SUBST(GTKX11)
5992 AC_SUBST(XINERAMA)
5993 AC_DEFINE_UNQUOTED(MONO_ARCHITECTURE,"$arch_target",[The architecture this is running on])
5994 AC_SUBST(arch_target)
5996 #This must always be defined when building the runtime
5997 AC_DEFINE(MONO_INSIDE_RUNTIME,1, [Disable banned functions from being used by the runtime])
5999 mono_build_root=`pwd`
6000 AC_SUBST(mono_build_root)
6002 AC_ARG_ENABLE(msvc_only,[  --enable-msvc-only    Build only with Visual Studio (msvc) (defaults to no). Disable gcc build.], enable_msvc_only=$enableval, enable_msvc_only=no)
6003 if test x$host_win32 = xno; then
6004         if test x$enable_msvc_only = xyes; then
6005                 echo "Error, --enable-msvc-only only supported for Windows builds."
6006                 exit 1
6007         fi
6009 AM_CONDITIONAL(ENABLE_MSVC_ONLY, test x$enable_msvc_only = xyes)
6011 AC_ARG_ENABLE(msvc,[  --enable-msvc    Build with Visual Studio (msvc) (defaults to no)], enable_msvc=$enableval, enable_msvc=no)
6012 if test x$host_win32 = xno; then
6013         if test x$enable_msvc = xyes; then
6014                 echo "Error, --enable-msvc only supported for Windows builds."
6015                 exit 1
6016         fi
6018 if test x$enable_msvc_only = xyes; then
6019         enable_msvc=yes
6021 AM_CONDITIONAL(ENABLE_MSVC, test x$enable_msvc = xyes)
6023 if test "x$enable_msvc" = "xyes"; then
6024         if test "x$support_boehm" = "xyes"; then
6025                 echo "Error, Boehm GC is not supported when using --enable-msvc."
6026                 exit 1
6027         fi
6028         mono_msvc_build_dir='$(top_srcdir)'/msvc/build/sgen
6029         if test "x$host_cpu" = "xi686"; then
6030                 mono_msvc_build_lib_dir='$(mono_msvc_build_dir)'/Win32/lib/Release
6031                 mono_msvc_build_bin_dir='$(mono_msvc_build_dir)'/Win32/bin/Release
6032                 mono_runtime=msvc/build/sgen/Win32/bin/Release/mono-sgen.exe
6033                 mono_runtime_wrapper=$mono_runtime
6034         else
6035                 mono_msvc_build_lib_dir='$(mono_msvc_build_dir)'/x64/lib/Release
6036                 mono_msvc_build_bin_dir='$(mono_msvc_build_dir)'/x64/bin/Release
6037                 mono_runtime=msvc/build/sgen/x64/bin/Release/mono-sgen.exe
6038                 mono_runtime_wrapper=msvc/build/sgen/x64/bin/Release/mono-sgen-msvc.sh
6039         fi
6040         AC_SUBST(mono_msvc_build_dir)
6041         AC_SUBST(mono_msvc_build_lib_dir)
6042         AC_SUBST(mono_msvc_build_bin_dir)
6043 else
6044         mono_runtime=mono/mini/mono
6045         mono_runtime_wrapper=$mono_runtime
6048 AC_SUBST(mono_runtime)
6049 AC_SUBST(mono_runtime_wrapper)
6051 CSC_LOCATION=`cd $srcdir && pwd`/external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csc.exe
6052 VBCS_LOCATION=`cd $srcdir && pwd`/external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/VBCSCompiler.exe
6054 if test $csc_compiler = mcs; then
6055   CSC=$mcs_topdir/class/lib/build/mcs.exe
6056 else
6057   CSC=$CSC_LOCATION
6060 AM_CONDITIONAL([CSC_IS_ROSLYN], [test x$csc_compiler != xmcs])
6062 mono_cfg_root=$mono_build_root/runtime
6063 if test x$host_win32 = xyes; then
6064   if test "x$cross_compiling" = "xno"; then
6065     mono_cfg_dir=`cygpath -w -a $mono_cfg_root`\\etc
6066     CSC=`cygpath -m -a $CSC`
6067     CSC_LOCATION=`cygpath -m -a $CSC_LOCATION`
6068     VBCS_LOCATION=`cygpath -m -a $VBCS_LOCATION`
6069   else
6070     mono_cfg_dir=`echo $mono_cfg_root | tr '/' '\\'`\\etc
6071   fi
6072 else
6073   mono_cfg_dir=$mono_cfg_root/etc
6076 if test "x$platform_android" = "xyes"; then
6077   mono_cfg_dir=
6080 AC_SUBST(mono_cfg_dir)
6082 AC_SUBST(CSC)
6084 AC_CONFIG_FILES([po/mcs/Makefile.in])
6086 AC_CONFIG_FILES([acceptance-tests/microbench-perf.sh],[chmod +x acceptance-tests/microbench-perf.sh])
6087 AC_CONFIG_FILES([runtime/mono-wrapper],[chmod +x runtime/mono-wrapper])
6088 AC_CONFIG_FILES([runtime/monodis-wrapper],[chmod +x runtime/monodis-wrapper])
6089 AC_CONFIG_FILES([runtime/bin/mono-hang-watchdog],[chmod +x runtime/bin/mono-hang-watchdog])
6091 AC_CONFIG_COMMANDS([runtime/etc/mono/1.0/machine.config],
6092 [   depth=../../../..
6093     case $srcdir in
6094     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6095     .) reldir=$depth ;;
6096     *) reldir=$depth/$srcdir ;;
6097     esac
6098     $ac_aux_dir/install-sh -d runtime/etc/mono/1.0
6099     cd runtime/etc/mono/1.0
6100     rm -f machine.config
6101     $LN_S $reldir/data/net_1_1/machine.config machine.config
6102     cd $depth
6103 ],[LN_S='$LN_S'])
6105 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/machine.config],
6106 [   depth=../../../..
6107     case $srcdir in
6108     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6109     .) reldir=$depth ;;
6110     *) reldir=$depth/$srcdir ;;
6111     esac
6112     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
6113     cd runtime/etc/mono/2.0
6114     rm -f machine.config
6115     $LN_S $reldir/data/net_2_0/machine.config machine.config
6116     cd $depth
6117 ],[LN_S='$LN_S'])
6119 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/web.config],
6120 [   depth=../../../..
6121     case $srcdir in
6122     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6123     .) reldir=$depth ;;
6124     *) reldir=$depth/$srcdir ;;
6125     esac
6126     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
6127     cd runtime/etc/mono/2.0
6128     rm -f web.config
6129     $LN_S $reldir/data/net_2_0/web.config web.config
6130     cd $depth
6131 ],[LN_S='$LN_S'])
6133 AC_CONFIG_COMMANDS([runtime/etc/mono/browscap.ini],
6134 [   depth=../../..
6135     case $srcdir in
6136     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6137     .) reldir=$depth ;;
6138     *) reldir=$depth/$srcdir ;;
6139     esac
6140     $ac_aux_dir/install-sh -d runtime/etc/mono/
6141     cd runtime/etc/mono/
6142     rm -f browscap.ini
6143     $LN_S $reldir/data/browscap.ini browscap.ini
6144     cd $depth
6145 ],[LN_S='$LN_S'])
6147 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/Browsers/Compat.browser],
6148 [   depth=../../../../..
6149     case $srcdir in
6150     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6151     .) reldir=$depth ;;
6152     *) reldir=$depth/$srcdir ;;
6153     esac
6154     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0/Browsers/
6155     cd runtime/etc/mono/2.0/Browsers
6156     rm -f Compat.browser
6157     $LN_S $reldir/data/Browsers/Compat.browser Compat.browser
6158     cd $depth
6159 ],[LN_S='$LN_S'])
6161 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/Browsers/Compat.browser],
6162 [   depth=../../../../..
6163     case $srcdir in
6164     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6165     .) reldir=$depth ;;
6166     *) reldir=$depth/$srcdir ;;
6167     esac
6168     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0/Browsers/
6169     cd runtime/etc/mono/4.0/Browsers
6170     rm -f Compat.browser
6171     $LN_S $reldir/data/Browsers/Compat.browser Compat.browser
6172     cd $depth
6173 ],[LN_S='$LN_S'])
6175 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/Browsers/Compat.browser],
6176 [   depth=../../../../..
6177     case $srcdir in
6178     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6179     .) reldir=$depth ;;
6180     *) reldir=$depth/$srcdir ;;
6181     esac
6182     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5/Browsers/
6183     cd runtime/etc/mono/4.5/Browsers
6184     rm -f Compat.browser
6185     $LN_S $reldir/data/Browsers/Compat.browser Compat.browser
6186     cd $depth
6187 ],[LN_S='$LN_S'])
6189 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/machine.config],
6190 [   depth=../../../..
6191     case $srcdir in
6192     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6193     .) reldir=$depth ;;
6194     *) reldir=$depth/$srcdir ;;
6195     esac
6196     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0
6197     cd runtime/etc/mono/4.0
6198     rm -f machine.config
6199     $LN_S $reldir/data/net_4_0/machine.config machine.config
6200     cd $depth
6201 ],[LN_S='$LN_S'])
6203 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/web.config],
6204 [   depth=../../../..
6205     case $srcdir in
6206     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6207     .) reldir=$depth ;;
6208     *) reldir=$depth/$srcdir ;;
6209     esac
6210     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0
6211     cd runtime/etc/mono/4.0
6212     rm -f web.config
6213     $LN_S $reldir/data/net_4_0/web.config web.config
6214     cd $depth
6215 ],[LN_S='$LN_S'])
6217 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/machine.config],
6218 [   depth=../../../..
6219     case $srcdir in
6220     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6221     .) reldir=$depth ;;
6222     *) reldir=$depth/$srcdir ;;
6223     esac
6224     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5
6225     cd runtime/etc/mono/4.5
6226     rm -f machine.config
6227     $LN_S $reldir/data/net_4_5/machine.config machine.config
6228     cd $depth
6229 ],[LN_S='$LN_S'])
6231 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/web.config],
6232 [   depth=../../../..
6233     case $srcdir in
6234     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6235     .) reldir=$depth ;;
6236     *) reldir=$depth/$srcdir ;;
6237     esac
6238     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5
6239     cd runtime/etc/mono/4.5
6240     rm -f web.config
6241     $LN_S $reldir/data/net_4_5/web.config web.config
6242     cd $depth
6243 ],[LN_S='$LN_S'])
6245 AC_CONFIG_COMMANDS([quiet-libtool], [sed -e 's/echo "copying selected/# "copying selected/g' < libtool > libtool.tmp && mv libtool.tmp libtool && chmod a+x libtool; sed -e 's/$ECHO "copying selected/# "copying selected/g' < libtool > libtool.tmp && mv libtool.tmp libtool && chmod a+x libtool])
6246 AC_CONFIG_COMMANDS([nolock-libtool], [sed -e 's/lock_old_archive_extraction=yes/lock_old_archive_extraction=no/g' < libtool > libtool.tmp && mv libtool.tmp libtool && chmod a+x libtool])
6247 AC_CONFIG_COMMANDS([clean-llvm], [rm -f llvm/llvm_config.mk])
6250 # Mono.Native Support
6251 # -------------------
6252 # Mono.Native is the new name for both System.Native and System.Security.Cryptography.Apple.
6253 # It is built as a stand-alone shared library and not bundled with the runtime because we
6254 # may need to build two different versions of it.
6256 # Starting with macOS 10.12+ and iOS 10+, Apple introduced a new Unified API for some of the
6257 # crypto primitives that we're using as part of System.Security.Cryptography.Apple.
6259 # On Desktop, we can check at runtime whether the OS version is recent enough and switch
6260 # implementation accordingly.  We build a single `libmono-native` shared library.
6262 # However, on Mobile we cannot have any undefined symbols as this would break Bitcode.
6264 # During the mobile build, we are called with `CFLAGS` containing an explicit minium version flag,
6265 # which is eiter `-mmacosx-version-min=`, `-mios-simulator-version-min=` or `-miphoneos-version-min=`
6266 # depending on platform.
6268 # We build two versions of the shared library:
6269 # - `libmono-native-compat` is built with whichever minimum version is passed to us via `CFLAGS`.
6270 # - `libmono-native-unifed` is built with the minimum version set to macOS 10.12+ / iOS 10+.
6272 # For testing purpuses, there is a function called `mono_native_get_platform_type ()`
6273 # (see mono/native/mono-native-platform.c), which returns a `MonoNativePlatformType` enum value.
6274 # There is also `Mono.MonoNativePlatform.GetPlatformType ()` (see mcs/class/corlib/Test/Mono/MonoNativePlatform.cs).
6276 # This can be called by automated tests both to ensure that the library has been correctly installed and also
6277 # to verify that it's the correct version of it.
6280 AC_MSG_CHECKING([Mono.Native support])
6281 sed_version_pattern='[[0-9]]\{1,2\}\(\.[[0-9]]\{1,2\}\)'
6282 if test x$disable_mono_native = xyes; then
6283         mono_native=no
6284 elif test x$target_osx = xyes; then
6285         MONO_NATIVE_CC=$CC
6286         MONO_NATIVE_CXX=$CXX
6287         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6288         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6289         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6290         MONO_NATIVE_CFLAGS=$CFLAGS
6291         MONO_NATIVE_LDFLAGS=$LDFLAGS
6293         mono_native=yes
6294         MONO_NATIVE_PLATFORM=macos
6295         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_MACOS"
6297         if test x$enable_gss = xyes; then
6298                 MONO_NATIVE_LDFLAGS="$MONO_NATIVE_LDFLAGS -framework GSS"
6299         fi
6301         AC_MONO_APPLE_AVAILABLE(mono_native_compat, [whether we need the compatibility layer],
6302                 [!(MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_12)])
6304         if test x$mono_native_compat = xyes; then
6305                 mono_native_compat=yes
6306                 mono_native_text="Mac OSX (compat + unified v10.12)"
6307                 MONO_NATIVE_COMPAT_CCASFLAGS=$MONO_NATIVE_CCASFLAGS
6308                 MONO_NATIVE_COMPAT_CPPFLAGS=$MONO_NATIVE_CPPFLAGS
6309                 MONO_NATIVE_COMPAT_CXXFLAGS=$MONO_NATIVE_CXXFLAGS
6310                 MONO_NATIVE_COMPAT_CFLAGS=$MONO_NATIVE_CFLAGS
6311                 MONO_NATIVE_COMPAT_LDFLAGS=$MONO_NATIVE_LDFLAGS
6313                 sed_remove_mac_version_pattern="s/-mmacosx-version-min=$sed_version_pattern//g"
6314                 MONO_NATIVE_UNIFIED_CCASFLAGS="`echo $CCASFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6315                 MONO_NATIVE_UNIFIED_CPPFLAGS="`echo $CPPFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6316                 MONO_NATIVE_UNIFIED_CXXFLAGS="`echo $CXXFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6317                 MONO_NATIVE_UNIFIED_CFLAGS="`echo $CFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6318                 MONO_NATIVE_UNIFIED_LDFLAGS="`echo $LDFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6319         else
6320                 mono_native_compat=no
6321                 mono_native_text="Mac OSX"
6322         fi
6323 elif test x$mono_native_platform_ios = xyes; then
6324         AC_MONO_APPLE_TARGET(TARGET_OS_SIMULATOR, [mono_native_ios_sim=yes], [mono_native_ios_sim=no])
6326         AC_MONO_APPLE_TARGET(TARGET_OS_IOS, [
6327                 if test x$mono_native_ios_sim = xyes; then
6328                         mono_native_ios_target=ios-simulator
6329                         mono_native_text="iOS Simulator"
6330                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_IPHONE | MONO_NATIVE_PLATFORM_TYPE_SIMULATOR"
6331                 else
6332                         mono_native_ios_target=iphoneos
6333                         mono_native_text="iOS Device"
6334                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_IPHONE | MONO_NATIVE_PLATFORM_TYPE_DEVICE"
6335                 fi
6336                 mono_native_unified_version="10.0"
6337                 mono_native_compat_check="__IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_10_0"
6338         ], [
6339                 AC_MONO_APPLE_TARGET(TARGET_OS_TV, [
6340                         if test x$mono_native_ios_sim = xyes; then
6341                                 mono_native_ios_target=tvos-simulator
6342                                 mono_native_text="AppleTV Simulator"
6343                                 MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_TV | MONO_NATIVE_PLATFORM_TYPE_SIMULATOR"
6344                         else
6345                                 mono_native_ios_target=tvos
6346                                 mono_native_text="AppleTV Device"
6347                                 MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_TV | MONO_NATIVE_PLATFORM_TYPE_DEVICE"
6348                         fi
6349                         mono_native_unified_version="10.0"
6350                         mono_native_compat_check="__TV_OS_VERSION_MIN_REQUIRED >= __TVOS_10_0"
6351                 ], [
6352                         AC_MONO_APPLE_TARGET(TARGET_OS_WATCH, [
6353                                 if test x$mono_native_ios_sim = xyes; then
6354                                         mono_native_ios_target=watchos-simulator
6355                                         mono_native_text="Apple Watch Simulator"
6356                                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_WATCH | MONO_NATIVE_PLATFORM_TYPE_SIMULATOR"
6357                                 else
6358                                         mono_native_ios_target=watchos
6359                                         mono_native_text="Apple Watch Device"
6360                                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_WATCH | MONO_NATIVE_PLATFORM_TYPE_DEVICE"
6361                                 fi
6362                                 mono_native_unified_version="5.0"
6363                                 mono_native_compat_check="__WATCH_OS_VERSION_MIN_REQUIRED >= __WATCHOS_5_0"
6364                         ], [
6365                                 AC_MSG_ERROR([Unknown iOS Target])
6366                         ])
6367                 ])
6368         ])
6370         AC_MONO_APPLE_AVAILABLE(mono_native_compat, [whether we need the compatibility layer], [!($mono_native_compat_check)])
6372         if test x$with_bitcode = xyes; then
6373                 mono_native_ldflags="-framework CoreFoundation -framework Foundation -no-undefined -fatal_warnings"
6374                 MONO_NATIVE_LIBADD="../mini/$LIBMONO_LA"
6375         else
6376                 mono_native_ldflags="-framework CoreFoundation -framework Foundation -fatal_warnings"
6377         fi
6379         if test x$enable_gss = xyes; then
6380                 mono_native_ldflags="$mono_native_ldflags -framework GSS"
6381         fi
6383         MONO_NATIVE_CC=$CC
6384         MONO_NATIVE_CXX=$CXX
6385         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6386         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6387         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6388         MONO_NATIVE_CFLAGS=$CFLAGS
6389         MONO_NATIVE_LDFLAGS="$LDFLAGS $mono_native_ldflags"
6391         if test x$mono_native_compat = xyes; then
6392                 mono_native_text="$mono_native_text (compat + unified v$mono_native_unified_version)"
6393                 MONO_NATIVE_COMPAT_CCASFLAGS=$MONO_NATIVE_CCASFLAGS
6394                 MONO_NATIVE_COMPAT_CPPFLAGS=$MONO_NATIVE_CPPFLAGS
6395                 MONO_NATIVE_COMPAT_CXXFLAGS=$MONO_NATIVE_CXXFLAGS
6396                 MONO_NATIVE_COMPAT_CFLAGS=$MONO_NATIVE_CFLAGS
6397                 MONO_NATIVE_COMPAT_LDFLAGS=$MONO_NATIVE_LDFLAGS
6399                 sed_remove_ios_version_pattern="s/-m\(.*\)-version-min=$sed_version_pattern//g"
6400                 MONO_NATIVE_UNIFIED_CCASFLAGS="`echo $CCASFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6401                 MONO_NATIVE_UNIFIED_CPPFLAGS="`echo $CPPFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6402                 MONO_NATIVE_UNIFIED_CXXFLAGS="`echo $CXXFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6403                 MONO_NATIVE_UNIFIED_CFLAGS="`echo $CFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6404                 MONO_NATIVE_UNIFIED_LDFLAGS="`echo $LDFLAGS $mono_native_ldflags | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6405         fi
6407         mono_native=yes
6408         MONO_NATIVE_PLATFORM=ios
6409 elif test x$host_linux = xyes; then
6410         mono_native_text="Linux"
6411         MONO_NATIVE_CC=$CC
6412         MONO_NATIVE_CXX=$CXX
6413         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6414         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6415         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6416         MONO_NATIVE_CFLAGS=$CFLAGS
6417         MONO_NATIVE_LDFLAGS=$LDFLAGS
6419         mono_native=yes
6420         mono_native_compat=no
6421         MONO_NATIVE_PLATFORM=linux
6423         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_LINUX"
6424 elif test x$target_wasm = xyes; then
6425         mono_native_text="wasm"
6426         MONO_NATIVE_CC=$CC
6427         MONO_NATIVE_CXX=$CXX
6428         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6429         # The system.native code uses _WASM_ to check for wasm
6430         MONO_NATIVE_CPPFLAGS="$CPPFLAGS -D_WASM_"
6431         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6432         MONO_NATIVE_CFLAGS=$CFLAGS
6433         MONO_NATIVE_LDFLAGS=$LDFLAGS
6435         mono_native=yes
6436         mono_native_compat=no
6437         MONO_NATIVE_PLATFORM=linux
6439         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_LINUX"
6440 elif case $host_os in aix*|os400*) true;; *) false;; esac; then
6441         mono_native_text="AIX"
6442         MONO_NATIVE_CC=$CC
6443         MONO_NATIVE_CXX=$CXX
6444         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6445         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6446         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6447         MONO_NATIVE_CFLAGS=$CFLAGS
6448         dnl nosymbolic- is a hack in case -G for linking is used, as -G seems
6449         dnl to change the way unresolved symbols work on library load in an
6450         dnl incompatible manner. (as references to runtime functions are
6451         dnl resolved later) Default params otherwise are that, so seems OK.
6452         dnl Likewise, we don't seem to need to cover the entire runtime with
6453         dnl it either, on both AIX and PASE. -brtl from -G does seem to spew
6454         dnl Big Scary TOC Warnings (tm) from the linker, but it doesn't seem
6455         dnl problematic with gcc's -mminimal-toc.
6456         dnl ----
6457         dnl flock in AIX exists in libbsd (not the same as freedesktop.org
6458         dnl libbsd) which Mono.Native needs.
6459         dnl Because of the way that the library is built by default, unresolved
6460         dnl references are kept and resolved at runtime. Often, the dependency
6461         dnl chain means libbsd is loaded anyways, but not necessarily. It's
6462         dnl better to explicitly link it, even though it has it shadows libc's
6463         dnl ioctl with its own. (As for the other unresolved imports, those
6464         dnl should be provided by the Mono runtime loaded.)
6465         MONO_NATIVE_LDFLAGS="$LDFLAGS -lbsd -Wl,-bnosymbolic-"
6467         mono_native=yes
6468         mono_native_compat=no
6469         MONO_NATIVE_PLATFORM=aix
6471         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_AIX"
6472 elif case $host_os in freebsd*) true;; *) false;; esac; then
6473         mono_native_text="FreeBSD"
6474         MONO_NATIVE_CC=$CC
6475         MONO_NATIVE_CXX=$CXX
6476         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6477         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6478         MONO_NATIVE_CFLAGS=$CFLAGS
6479         MONO_NATIVE_LDFLAGS=$LDFLAGS
6481         mono_native=yes
6482         mono_native_compat=no
6483         MONO_NATIVE_PLATFORM=freebsd
6484         AC_MSG_CHECKING([Mono.Native support])
6485         AC_MSG_RESULT(freebsd)
6487         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_FREEBSD"
6488 elif case $host_os in netbsd*) true;; *) false;; esac; then
6489         mono_native_text="NetBSD"
6490         MONO_NATIVE_CC=$CC
6491         MONO_NATIVE_CXX=$CXX
6492         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6493         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6494         MONO_NATIVE_CFLAGS=$CFLAGS
6495         MONO_NATIVE_LDFLAGS=$LDFLAGS
6497         mono_native=yes
6498         mono_native_compat=no
6499         MONO_NATIVE_PLATFORM=netbsd
6500         AC_MSG_CHECKING([Mono.Native support])
6501         AC_MSG_RESULT(netbsd)
6503         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_NETBSD"
6504 elif case $host_os in haiku*) true;; *) false;; esac; then
6505         mono_native_text="Haiku"
6506         MONO_NATIVE_CC=$CC
6507         MONO_NATIVE_CXX=$CXX
6508         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6509         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6510         MONO_NATIVE_CFLAGS=$CFLAGS
6511         MONO_NATIVE_LDFLAGS=$LDFLAGS
6513         mono_native=yes
6514         mono_native_compat=no
6515         MONO_NATIVE_PLATFORM=haiku
6516         AC_MSG_CHECKING([Mono.Native support])
6517         AC_MSG_RESULT(haiku)
6519         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_HAIKU"
6520 elif test x$platform_android = xyes; then
6521         mono_native_text="Android"
6522         MONO_NATIVE_CC=$CC
6523         MONO_NATIVE_CXX=$CXX
6524         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6525         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6526         MONO_NATIVE_CFLAGS=$CFLAGS
6527         MONO_NATIVE_LDFLAGS=$LDFLAGS
6528         MONO_NATIVE_LIBADD="../mini/$LIBMONO_LA"
6530         mono_native=yes
6531         mono_native_compat=no
6532         MONO_NATIVE_PLATFORM=android
6534         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_ANDROID"
6535 else
6536         mono_native=no
6537         mono_native_text="no"
6540 AC_MSG_RESULT($mono_native_text)
6542 if test x$mono_native_compat = xyes; then
6543         MONO_NATIVE_LIBRARY_NAME=libmono-native-compat
6544 else
6545         MONO_NATIVE_LIBRARY_NAME=libmono-native
6548 AC_SUBST(MONO_NATIVE_PLATFORM)
6549 AC_SUBST(MONO_NATIVE_CC)
6550 AC_SUBST(MONO_NATIVE_CXX)
6551 AC_SUBST(MONO_NATIVE_CCASFLAGS)
6552 AC_SUBST(MONO_NATIVE_COMPAT_CCASFLAGS)
6553 AC_SUBST(MONO_NATIVE_UNIFIED_CCASFLAGS)
6554 AC_SUBST(MONO_NATIVE_CPPFLAGS)
6555 AC_SUBST(MONO_NATIVE_COMPAT_CPPFLAGS)
6556 AC_SUBST(MONO_NATIVE_UNIFIED_CPPFLAGS)
6557 AC_SUBST(MONO_NATIVE_CXXFLAGS)
6558 AC_SUBST(MONO_NATIVE_COMPAT_CXXFLAGS)
6559 AC_SUBST(MONO_NATIVE_UNIFIED_CXXFLAGS)
6560 AC_SUBST(MONO_NATIVE_CFLAGS)
6561 AC_SUBST(MONO_NATIVE_COMPAT_CFLAGS)
6562 AC_SUBST(MONO_NATIVE_UNIFIED_CFLAGS)
6563 AC_SUBST(MONO_NATIVE_LDFLAGS)
6564 AC_SUBST(MONO_NATIVE_COMPAT_LDFLAGS)
6565 AC_SUBST(MONO_NATIVE_UNIFIED_LDFLAGS)
6566 AC_SUBST(MONO_NATIVE_LIBRARY_NAME)
6567 AC_SUBST(MONO_NATIVE_LIBADD)
6569 AM_CONDITIONAL(MONO_NATIVE, test x$mono_native = xyes)
6570 AM_CONDITIONAL(MONO_NATIVE_COMPAT, test x$mono_native_compat = xyes)
6571 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_MACOS, test x$MONO_NATIVE_PLATFORM = xmacos)
6572 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_IOS, test x$MONO_NATIVE_PLATFORM = xios)
6573 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_LINUX, test x$MONO_NATIVE_PLATFORM = xlinux)
6574 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_AIX, test x$MONO_NATIVE_PLATFORM = xaix)
6575 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_ANDROID, test x$MONO_NATIVE_PLATFORM = xandroid)
6576 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_FREEBSD, test x$MONO_NATIVE_PLATFORM = xfreebsd)
6577 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_NETBSD, test x$MONO_NATIVE_PLATFORM = xnetbsd)
6578 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_HAIKU, test x$MONO_NATIVE_PLATFORM = xhaiku)
6580 MONO_NATIVE_PLATFORM_TYPE_COMPAT="$MONO_NATIVE_PLATFORM_TYPE | MONO_NATIVE_PLATFORM_TYPE_COMPAT"
6581 MONO_NATIVE_PLATFORM_TYPE_UNIFIED="$MONO_NATIVE_PLATFORM_TYPE | MONO_NATIVE_PLATFORM_TYPE_UNIFIED"
6582 AC_SUBST(MONO_NATIVE_PLATFORM_TYPE)
6583 AC_SUBST(MONO_NATIVE_PLATFORM_TYPE_COMPAT)
6584 AC_SUBST(MONO_NATIVE_PLATFORM_TYPE_UNIFIED)
6586 ### C++ Linker selection
6588 # We have to lie to autotools, sometimes.
6590 # If we're building with llvm compiled into Mono, set MONO_CXXLD to CXX,
6591 # otherwise to CC.  We want C linking even if we're compiling with C++ enabled
6592 # because we do not want to link inthe C++ runtime library (-lstdc++ or -lc++),
6593 # except if we're linking with LLVM which relies on it.
6595 # Explanation of the hack:
6597 # According to
6598 # https://www.gnu.org/software/automake/manual/html_node/How-the-Linker-is-Chosen.html,
6599 # automake chooses the linker that it used to compile a target based on the
6600 # _SOURCES for that target.  If the target is comprised of only C code, it
6601 # chooses the C linker (on Linux and OSX this is just gcc or clang called with
6602 # linker arguments and a -o).  If the target _SOURCES include at least one C++ file, 
6603 # then automake chooses the C++ linker (usually g++ or clang++ called with linker arguments and -o).
6605 # The problem for Mono is that we don't want the C++ runtime library (libstdc++
6606 # or libc++) linked in - even when Mono is written in C++, we take care not to
6607 # require the runtime library.  As a result, we don't want g++ or clang++ to do
6608 # the linking.  On the other hand if LLVM is enabled, then we _must_ use the
6609 # C++ linker - LLVM doesn't have the same restrictions.
6611 # So the trick is we set MONO_CXXLD here to $CXX or $CC and in
6612 #  mono/mini/Makefile.am.in we have CCLD=$MONO_CXXLD and CXXLD=$MONO_CXXLD which bypasses
6613 #  automake's autodetection and lets us use the linker that we want.
6615 if test "x$enable_llvm_runtime" = "xyes"; then
6616         AC_SUBST(MONO_CXXLD, [$CXX])
6617 else
6618         AC_SUBST(MONO_CXXLD, [$CC])
6621 ### Set -Werror options
6623 # Anything involving -Werror must be done late because autoconf depends on compiling with warnings to be success.
6625 if test x"$GCC" = xyes; then
6627         if test "x$with_jemalloc" != "xyes"; then
6629                 # incompatible-pointer-types requires gcc circa 5.x
6631                 ORIG_CFLAGS=$CFLAGS
6632                 CFLAGS="$CFLAGS -Wincompatible-pointer-types -Werror"
6633                 AC_MSG_CHECKING(for -Wincompatible-pointer-types option to gcc)
6634                 AC_TRY_COMPILE([],[
6635                 ], [
6636                         AC_MSG_RESULT(yes)
6637                         CFLAGS="$ORIG_CFLAGS -Werror=incompatible-pointer-types"
6638                 ], [
6639                         AC_MSG_RESULT(no)
6640                         CFLAGS=$ORIG_CFLAGS
6641                 ])
6643                 CFLAGS="$CFLAGS -Werror=return-type"
6644         fi
6646         # Implicit function declarations are not 64 bit safe
6647         # Do this late, since this causes lots of configure tests to fail
6648         CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
6649         # jay has a lot of implicit declarations
6650         JAY_CFLAGS="-Wno-implicit-function-declaration"
6653 # zlib/configure checks if this program compiles and if so
6654 # defines _LARGEFILE64_SOURCE on the compiler command line (not config.h).
6656 AC_MSG_CHECKING([for large file support])
6657 AC_COMPILE_IFELSE(
6658         [AC_LANG_SOURCE([
6659                 #include <sys/types.h>
6660                 off64_t dummy = 0;
6661         ])], [
6662                 AC_MSG_RESULT(yes)
6663                 # FIXME The ramifications of _LARGEFILE64_SOURCE are not understood.
6664                 # ZLIB_CFLAGS="$ZLIB_CFLAGS -D_LARGEFILE64_SOURCE=1"
6665         ], [
6666                 AC_MSG_RESULT(no)
6667         ])
6669 AC_SUBST(CFLAGS)
6670 AC_SUBST(CPPFLAGS)
6671 AC_SUBST(LDFLAGS)
6672 AC_SUBST(ZLIB_CFLAGS)
6674 # Update all submodules recursively to ensure everything is checked out
6675 if test "x$with_core" != "xonly"; then
6676         (cd $srcdir && scripts/update_submodules.sh)
6679 AC_OUTPUT([
6680 Makefile
6681 mono-uninstalled.pc
6682 acceptance-tests/Makefile
6683 llvm/Makefile
6684 scripts/mono-find-provides
6685 scripts/mono-find-requires
6686 mk/Makefile
6687 mono/Makefile
6688 mono/btls/Makefile
6689 mono/native/Makefile
6690 mono/utils/Makefile
6691 mono/utils/jemalloc/Makefile
6692 mono/metadata/Makefile
6693 mono/dis/Makefile
6694 mono/cil/Makefile
6695 mono/arch/Makefile
6696 mono/arch/x86/Makefile
6697 mono/arch/amd64/Makefile
6698 mono/arch/ppc/Makefile
6699 mono/arch/sparc/Makefile
6700 mono/arch/s390x/Makefile
6701 mono/arch/arm/Makefile
6702 mono/arch/arm64/Makefile
6703 mono/arch/mips/Makefile
6704 mono/arch/riscv/Makefile
6705 mono/sgen/Makefile
6706 mono/native/platform-type.c
6707 mono/native/platform-type-compat.c
6708 mono/native/platform-type-unified.c
6709 mono/tests/Makefile
6710 mono/tests/assembly-load-reference/Makefile
6711 mono/tests/tests-config
6712 mono/tests/gc-descriptors/Makefile
6713 mono/tests/testing_gac/Makefile
6714 mono/tests/fullaot-mixed/Makefile
6715 mono/tests/llvmonly-mixed/Makefile
6716 mono/unit-tests/Makefile
6717 mono/benchmark/Makefile
6718 mono/mini/Makefile
6719 mono/profiler/Makefile
6720 mono/eglib/Makefile
6721 mono/eglib/eglib-config.h
6722 mono/eglib/test/Makefile
6723 m4/Makefile
6724 ikvm-native/Makefile
6725 scripts/Makefile
6726 man/Makefile
6727 docs/Makefile
6728 data/Makefile
6729 data/net_2_0/Makefile
6730 data/net_4_0/Makefile
6731 data/net_4_5/Makefile
6732 data/net_2_0/Browsers/Makefile
6733 data/net_4_0/Browsers/Makefile
6734 data/net_4_5/Browsers/Makefile
6735 data/mint.pc
6736 data/mono-2.pc
6737 data/monosgen-2.pc
6738 data/mono.pc
6739 data/mono-cairo.pc
6740 data/mono-options.pc
6741 data/mono-lineeditor.pc
6742 data/monodoc.pc
6743 data/dotnet.pc
6744 data/dotnet35.pc
6745 data/wcf.pc
6746 data/cecil.pc
6747 data/system.web.extensions_1.0.pc
6748 data/system.web.extensions.design_1.0.pc
6749 data/system.web.mvc.pc
6750 data/system.web.mvc2.pc
6751 data/system.web.mvc3.pc
6752 data/aspnetwebstack.pc
6753 data/reactive.pc
6754 samples/Makefile
6755 support/Makefile
6756 data/config
6757 tools/Makefile
6758 tools/locale-builder/Makefile
6759 tools/sgen/Makefile
6760 tools/pedump/Makefile
6761 tools/mono-hang-watchdog/Makefile
6762 runtime/Makefile
6763 msvc/Makefile
6764 po/Makefile
6765 netcore/corerun/Makefile
6768 if test x$host_win32 = xyes; then
6769    # Get rid of 'cyg' prefixes in library names
6770    sed -e "s/\/cyg\//\/\//" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
6771    # libtool seems to inherit -mno-cygwin from our CFLAGS, and uses it to compile its executable
6772    # wrapper scripts which use exec(). gcc has no problem compiling+linking this, but the resulting
6773    # executable doesn't work...
6774    sed -e "s,-mno-cygwin,,g" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
6777 if test x$host_darwin = xyes; then
6778    # This doesn't seem to be required and it slows down parallel builds
6779    sed -e 's,lock_old_archive_extraction=yes,lock_old_archive_extraction=no,g' < libtool > libtool.new && mv libtool.new libtool && chmod +x libtool
6782 force_enable_compiler_server=no;
6784 AC_MSG_CHECKING([compiler server])
6785 AC_ARG_WITH(compiler-server, [  --with-compiler-server=yes,no,default,force      Enables or disables compiler server],[
6786    if test x$withval = xyes; then
6787        enable_compiler_server=yes;
6788    # force will bypass any automatic disables to allow you to test the compiler server
6789    #  in scenarios where it is disabled
6790    elif test x$withval = xforce; then
6791        enable_compiler_server=yes;
6792        force_enable_compiler_server=yes;
6793    elif test x$withval = xno; then
6794        enable_compiler_server=no;
6795    elif test x$withval = xdefault; then
6796        enable_compiler_server=yes;
6797    else
6798        AC_MSG_ERROR([You must supply one of "yes", "no", "default" or "force" to the --with-compiler-server option])
6799    fi
6800 ],[enable_compiler_server=yes])
6802 AC_MSG_RESULT($enable_compiler_server)
6804 if test x$enable_compiler_server = xyes; then
6805    if test x$force_enable_compiler_server = xyes; then
6806        AC_MSG_WARN([forcing compiler server to stay enabled])
6807    elif test x$host_darwin = xyes || test x$host_win32 = xyes; then
6808        AC_MSG_WARN([compiler server temporarily disabled on darwin and win32])
6809        enable_compiler_server=no;
6810    elif test x$csc_compiler = xmcs; then
6811        AC_MSG_WARN([mcs does not support the compiler server])
6812        enable_compiler_server=no;
6813    fi
6817   case $prefix in
6818   NONE) prefix=$ac_default_prefix ;;
6819   esac
6820   case $exec_prefix in
6821   NONE) exec_prefix='${prefix}' ;;
6822   esac
6824   #
6825   # If we are cross compiling, we don't build in the mcs/ tree.  Let us not clobber
6826   # any existing config.make.  This allows people to share the same source tree
6827   # with different build directories, one native and one cross
6828   #
6829   if test x$cross_compiling = xno && test x$enable_mcs_build != xno; then
6831     test -w $mcs_topdir/build || chmod +w $mcs_topdir/build
6833     echo "prefix=$prefix" > $mcs_topdir/build/config.make
6834     echo "exec_prefix=$exec_prefix" >> $mcs_topdir/build/config.make
6835     echo "sysconfdir=$sysconfdir" >> $mcs_topdir/build/config.make
6836     echo 'mono_libdir=${exec_prefix}/lib' >> $mcs_topdir/build/config.make
6837     echo "mono_build_root=$mono_build_root" >> $mcs_topdir/build/config.make
6838     echo "RUNTIME = $mono_build_root/runtime/mono-wrapper" >> $mcs_topdir/build/config.make
6839     echo "JAY_CFLAGS = $JAY_CFLAGS" >> $mcs_topdir/build/config.make
6840     echo "VERSION = $VERSION" >> $mcs_topdir/build/config.make
6842     case $INSTALL in
6843     [[\\/$]]* | ?:[[\\/]]* ) mcs_INSTALL=$INSTALL ;;
6844     *) mcs_INSTALL=$mono_build_root/$INSTALL ;;
6845     esac
6847     echo "INSTALL = $mcs_INSTALL" >> $mcs_topdir/build/config.make
6849     export VERSION
6850     [myver=$($AWK 'BEGIN {
6851       split (ENVIRON["VERSION"] ".0.0.0", vsplit, ".")
6852       if(length(vsplit [1]) > 4) {
6853         split (substr(ENVIRON["VERSION"], 0, 4) "." substr(ENVIRON["VERSION"], 5) ".0.0", vsplit, ".")
6854       }
6855       print vsplit [1] "." vsplit [2] "." vsplit [3] "." vsplit [4]
6856     }')]
6858     echo "MONO_VERSION = $myver" >> $mcs_topdir/build/config.make
6859     echo "MONO_CORLIB_VERSION = $MONO_CORLIB_VERSION" >> $mcs_topdir/build/config.make
6861     if test x$host_darwin = xyes; then
6862       echo "BUILD_PLATFORM = macos" >> $mcs_topdir/build/config.make
6863       echo "HOST_PLATFORM ?= macos" >> $mcs_topdir/build/config.make
6864       echo "XTEST_PLATFORM ?= osx" >> $mcs_topdir/build/config.make
6865     elif test x$host_win32 = xyes; then
6866       echo "BUILD_PLATFORM = win32" >> $mcs_topdir/build/config.make
6867       echo "HOST_PLATFORM ?= win32" >> $mcs_topdir/build/config.make
6868       echo "XTEST_PLATFORM ?= windows" >> $mcs_topdir/build/config.make
6869     elif test x$host_linux = xyes; then
6870       echo "BUILD_PLATFORM = linux" >> $mcs_topdir/build/config.make
6871       echo "HOST_PLATFORM ?= linux" >> $mcs_topdir/build/config.make
6872       echo "XTEST_PLATFORM ?= linux" >> $mcs_topdir/build/config.make
6873     else
6874       echo "BUILD_PLATFORM = unix" >> $mcs_topdir/build/config.make
6875       echo "HOST_PLATFORM ?= unix" >> $mcs_topdir/build/config.make
6876       echo "XTEST_PLATFORM ?= unix" >> $mcs_topdir/build/config.make
6877     fi
6879     echo "PLATFORM_AOT_PREFIX = $PLATFORM_AOT_PREFIX" >> $mcs_topdir/build/config.make
6880     if test "x$PLATFORM_AOT_SUFFIX" != "x"; then
6881       echo "PLATFORM_AOT_SUFFIX = $PLATFORM_AOT_SUFFIX" >> $mcs_topdir/build/config.make
6882     fi
6884         if test x$AOT_SUPPORTED = xyes -a x$enable_system_aot = xdefault; then
6885            enable_system_aot=yes
6886         fi
6888     if test x$host_win32 = xno -a x$enable_system_aot = xyes; then
6889       echo "ENABLE_AOT = 1" >> $mcs_topdir/build/config.make
6890     fi
6892     if test x$DISABLE_MCS_DOCS = xyes; then
6893       echo "DISABLE_MCS_DOCS = yes" >> $mcs_topdir/build/config.make
6894     fi
6896     if test x$has_extension_module != xno; then
6897         echo "EXTENSION_MODULE = 1" >> $srcdir/$mcsdir/build/config.make
6898     fi
6899     
6900     echo "DEFAULT_PROFILE = $default_profile" >> $srcdir/$mcsdir/build/config.make
6901     
6902     if test "x$test_bcl_opt" = "xyes"; then    
6903       echo "BCL_OPTIMIZE = 1" >> $srcdir/$mcsdir/build/config.make
6904     fi
6906     echo "STANDALONE_CSC_LOCATION=$CSC_LOCATION" >> $srcdir/$mcsdir/build/config.make
6907     echo "SERVER_CSC_LOCATION?=$CSC_LOCATION" >> $srcdir/$mcsdir/build/config.make
6908     echo "VBCS_LOCATION?=$VBCS_LOCATION" >> $srcdir/$mcsdir/build/config.make
6910     if test $csc_compiler = mcs; then
6911       echo "MCS_MODE = 1" >> $srcdir/$mcsdir/build/config.make
6912     fi
6914     if test "x$AOT_BUILD_FLAGS" != "x" ; then
6915       echo "AOT_RUN_FLAGS=$AOT_RUN_FLAGS" >> $srcdir/$mcsdir/build/config.make
6916       echo "AOT_BUILD_ATTRS=$AOT_BUILD_ATTRS" >> $srcdir/$mcsdir/build/config.make
6918       if test "x$internal_llvm" != "xno" && test "x$enable_llvm_msvc_only" = "xno"; then
6919         echo "AOT_BUILD_FLAGS=$AOT_BUILD_FLAGS,$MONO_LLVM_PATH_OPTION" >> $srcdir/$mcsdir/build/config.make
6920       else
6921         echo "AOT_BUILD_FLAGS=$AOT_BUILD_FLAGS" >> $srcdir/$mcsdir/build/config.make
6922       fi
6923     fi
6925     if test "x$AOT_MODE" != "x" ; then
6926       echo "AOT_MODE=$AOT_MODE" >> $srcdir/$mcsdir/build/config.make
6927     fi
6929     if test "x$enable_btls" = "xyes"; then
6930       echo "HAVE_BTLS=1" >> $srcdir/$mcsdir/build/config.make
6931     fi
6933     if test "x$mono_native" = "xyes"; then
6934       echo "MONO_NATIVE_SUPPORTED=true" >> $srcdir/$mcsdir/build/config.make
6935     else
6936       echo "MONO_NATIVE_SUPPORTED=false" >> $srcdir/$mcsdir/build/config.make
6937     fi
6939     if test x$mono_native_compat = xyes; then
6940       echo "MONO_NATIVE_USING_COMPAT=true" >> $srcdir/$mcsdir/build/config.make
6941     else
6942       echo "MONO_NATIVE_USING_COMPAT=false" >> $srcdir/$mcsdir/build/config.make
6943     fi
6945     echo "MONO_NATIVE_PLATFORM_TYPE=$MONO_NATIVE_PLATFORM_TYPE" >> $srcdir/$mcsdir/build/config.make
6946     echo "MONO_NATIVE_PLATFORM=$MONO_NATIVE_PLATFORM" >> $srcdir/$mcsdir/build/config.make
6947     if test x$enable_compiler_server = xyes; then
6948       echo "ENABLE_COMPILER_SERVER?=1" >> $srcdir/$mcsdir/build/config.make
6949     else
6950       echo "ENABLE_COMPILER_SERVER?=0" >> $srcdir/$mcsdir/build/config.make
6951     fi
6952     echo "COMPILER_SERVER_PIPENAME?=monomake" >> $srcdir/$mcsdir/build/config.make
6954         if test x$enable_msvc_only = xyes; then
6955                 echo "ENABLE_MSVC_ONLY=1" >> $srcdir/$mcsdir/build/config.make
6956         fi
6958   fi
6962 libgdiplus_msg=${libgdiplus_loc:-assumed to be installed}
6964 btls_platform_string=
6965 if test x$enable_btls = xyes; then
6966         if test x$btls_android = xyes; then
6967                 btls_platform_string=" (android:$BTLS_PLATFORM)"
6968         else
6969                 btls_platform_string=" ($BTLS_PLATFORM)"
6970         fi
6973 thread_suspend_msg=
6974 if test x$buildsgen = xyes; then
6975         if test x$enable_cooperative_suspend != xno; then
6976                 thread_suspend_msg="Suspend:       Cooperative"
6977         elif test x$enable_hybrid_suspend != xno; then
6978                 thread_suspend_msg="Suspend:       Hybrid"
6979         else
6980                 thread_suspend_msg="Suspend:       Preemptive"
6981         fi
6984 if test "x$with_core" = "xonly"; then
6985   if test ! -d netcore; then
6986     # Out of tree builds
6987     mkdir -p netcore
6988     echo "all:" > netcore/Makefile
6989   fi
6990   echo "VERSION = $VERSION" > netcore/config.make
6991   echo "RID = $RID" >> netcore/config.make
6992   echo "COREARCH = $COREARCH" >> netcore/config.make
6993   echo "CORETARGETS = $CORETARGETS" >> netcore/config.make
6994   echo "MONO_CORLIB_VERSION = $MONO_CORLIB_VERSION" >> netcore/config.make
6996   if test x$build_darwin = xyes; then
6997     echo "HOST_PLATFORM ?= macos" >> netcore/config.make
6998   elif test x$host_darwin = xyes; then
6999     echo "HOST_PLATFORM ?= macos" >> netcore/config.make
7000   elif test x$host_win32 = xyes; then
7001     echo "HOST_PLATFORM ?= win32" >> netcore/config.make
7002   elif test x$host_linux = xyes; then
7003     echo "HOST_PLATFORM ?= linux" >> netcore/config.make
7004   else
7005     echo "HOST_PLATFORM ?= unix" >> netcore/config.make
7006   fi
7009         
7010 echo "
7011         mcs source:    $mcsdir
7012         C# Compiler:   $csc_compiler
7013         CompilerServer:$enable_compiler_server
7015    Engine:
7016         Host:          $host
7017         Target:        $target
7018         GC:            $gc_msg 
7019         $thread_suspend_msg
7020         TLS:           $with_tls
7021         SIGALTSTACK:   $with_sigaltstack
7022         Engine:        $jit_status
7023         BigArrays:     $enable_big_arrays
7024         DTrace:        $enable_dtrace
7025         LLVM Back End: $enable_llvm (dynamically loaded: $enable_loadedllvm, built in-tree: $internal_llvm, assertions: $enable_llvm_asserts, msvc only: $enable_llvm_msvc_only)
7026         Spectre:       $spectre_mitigation_status
7027         Mono.Native:   $mono_native_text
7029    Libraries:
7030         .NET 4.x:        $with_profile4_x
7031         Xamarin.Android: $with_monodroid
7032         Xamarin.iOS:     $with_monotouch
7033         Xamarin.WatchOS: $with_monotouch_watch
7034         Xamarin.TVOS:    $with_monotouch_tv
7035         Xamarin.Mac:     $with_xammac
7036         Windows AOT:     $with_winaot
7037         Orbis:           $with_orbis
7038         Unreal:          $with_unreal
7039         WebAssembly:     $with_wasm
7040         Test profiles:   AOT Full ($with_testing_aot_full), AOT Hybrid ($with_testing_aot_hybrid), AOT Full Interp ($with_testing_aot_full_interp), Windows Full AOT Interp ($with_testing_winaot_interp)
7041         JNI support:     $jdk_headers_found
7042         libgdiplus:      $libgdiplus_msg
7043         zlib:            $zlib_msg
7044         BTLS:            $enable_btls$btls_platform_string
7045         jemalloc:        $with_jemalloc (always use: $with_jemalloc_always)
7046         crash reporting: $crash_reporting (private crashes: $with_crash_privacy)
7047         .NET Core:       $with_core
7048         $disabled
7050 if test x$with_static_mono = xno -a "x$host_win32" != "xyes"; then
7051    AC_MSG_WARN([Turning off static Mono is a risk, you might run into unexpected bugs])