Cleaning up the P/Invoke signatures for QPF and QPC to avoid marshalling and pinning...
[mono-project.git] / configure.ac
blob9422262de2c37ca5ce3b227aeb052dbea0c4bc4d
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.1.0],
8         [https://github.com/mono/mono/issues/new])
10 AC_CONFIG_SRCDIR([README.md])
11 AC_CONFIG_MACRO_DIR([m4])
12 AC_CANONICAL_SYSTEM
13 AC_CANONICAL_HOST
15 # Gross hack to enable 'make dist' on automake 1.9+tar 1.14.
16 # The extra brackets are to foil regex-based scans.
17 m4_ifdef([_A][M_PROG_TAR],[_A][M_SET_OPTION([tar-ustar])])
19 AM_INIT_AUTOMAKE([1.9 dist-bzip2 tar-ustar no-dist-gzip foreign subdir-objects]
20                  m4_esyscmd([case `automake --version | head -n 1` in    # parallel-tests is default in automake 1.13+, we need to explicitly enable it
21                              *1.11*|*1.12*) echo parallel-tests;;        # for 1.11 and 1.12 but not below as those versions don't recognize the flag
22                              esac]))                                     # TODO: remove this hack once we require automake 1.11+
24 AC_CONFIG_HEADERS([config.h])
25 AM_MAINTAINER_MODE
26 m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS], AM_EXTRA_RECURSIVE_TARGETS([test]))
27 m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS], AM_EXTRA_RECURSIVE_TARGETS([test-bundle]))
29 API_VER=2.0
30 AC_SUBST(API_VER)
32 AC_PROG_LN_S
34 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
36 MONO_VERSION_MAJOR=`echo $VERSION | cut -d . -f 1`
37 MONO_VERSION_MINOR=`echo $VERSION | cut -d . -f 2`
38 MONO_VERSION_BUILD=`echo $VERSION | cut -d . -f 3`
41 # This is the version of the corlib-runtime interface. When
42 # making changes to this interface (by changing the layout
43 # of classes the runtime knows about, changing icall signature or
44 # semantics etc), change this variable.
46 # This must be unique relative to corlib interface and semantics.
48 # If you change corlib such that a runtime change is required, or
49 # vice versa, change this string. Examples include removing icalls,
50 # adding icalls, changing icall signatures, and changing type layouts
51 # that both sides know.
53 # It is an arbitrary string and should be parsed as such.
54 # A guid works and is encouraged.
56 # Generate it with uuidgen. For example:
57 # perl -pi.bak -e "s/^MONO_CORLIB_VERSION=\S+/MONO_CORLIB_VERSION=`uuidgen`/" configure.ac
59 # This line is parsed by tools besides autoconf, such as msvc/mono.winconfig.targets.
60 # It should remain in the format they expect.
62 MONO_CORLIB_VERSION=92351299-EECB-4E61-A590-39382BA4F7A0
65 # Put a quoted #define in config.h.
66 # Substitute @MONO_CORLIB_VERSION@ unquoted.
68 AC_DEFINE_UNQUOTED(MONO_CORLIB_VERSION,"$MONO_CORLIB_VERSION",[Version of the corlib-runtime interface])
69 AC_SUBST(MONO_CORLIB_VERSION)
71 case $host_os in
72 *cygwin* )
73                  echo "Run configure using ./configure --host=i686-w64-mingw32 or --host=x86_64-w64-mingw32"
74                  exit 1
75 esac
77 # In case of cygwin, override LN_S, irrespective of what it determines.
78 # The build uses cygwin, but the actual runtime doesn't.
79 case $host_os in
80 *cygwin* ) LN_S='cp -p';;
81 esac
84 # libgc defaults
86 libgc_configure_args=
88 # These variables are the CPPFLAGS/CFLAGS passed to libgc's configure
89 # libgc should inherit the original CFLAGS/CPPFLAGS passed to configure, i.e. -O0
90 CPPFLAGS_FOR_LIBGC=$CPPFLAGS
91 CFLAGS_FOR_LIBGC=$CFLAGS
92 CPPFLAGS_FOR_BTLS=$CPPFLAGS
93 CFLAGS_FOR_BTLS=$CFLAGS
95 # libgc uses some deprecated APIs
96 CFLAGS_FOR_LIBGC="$CFLAGS -Wno-deprecated-declarations"
99 # These are the flags that need to be stored in the mono.pc file for 
100 # compiling code that will embed Mono
102 libmono_cflags=""
103 libmono_ldflags=""
104 AC_SUBST(libmono_cflags)
105 AC_SUBST(libmono_ldflags)
107 # Variable to have relocatable .pc files (lib, or lib64)
108 # realpath isn't always available, and requires that all but the tip of the provided
109 # path exists. Fall back to the old behaviour, but realpath allows depth >1
110 # e.g. Debian puts Mono in /usr/bin and libs in /usr/lib/x86_64-linux-gnu/ which is
111 # too deep for the old method to work
112 reloc_libdir=`realpath --relative-to=${prefix} ${libdir} 2> /dev/null || basename ${libdir}`
113 AC_SUBST(reloc_libdir)
115 # Set to yes if Unix sockets cannot be created in an anonymous namespace
116 need_link_unlink=no
118 #Set to extra linker flags to be passed to the runtime binaries (mono /mono-sgen)
119 extra_runtime_ldflags=""
121 # Thread configuration inspired by sleepycat's db
122 AC_MSG_CHECKING([host platform characteristics])
124 libgc_threads=no
125 has_dtrace=no
126 parallel_mark=yes
127 ikvm_native=yes
129 host_win32=no
130 target_win32=no
131 target_wasm=no
132 platform_android=no
133 platform_tizen=no
134 platform_ios=no
135 host_darwin=no
136 host_linux=no
138 case "$host" in
139         wasm32*)
140                 CFLAGS="$CFLAGS -D_REENTRANT -D_GNU_SOURCE -s WASM=1"
141                 CPPFLAGS="$CPPFLAGS -D_REENTRANT -DUSE_MMAP -s WASM=1"
142                 libdl="-ldl"
143                 libgc_threads=pthreads
144                 platform_wasm=yes
145                 ;;
146         *-mingw*|*-*-cygwin*)
147                 AC_DEFINE(DISABLE_PORTABILITY,1,[Disable the io-portability layer])
148                 AC_DEFINE(HOST_NO_SYMLINKS,1,[This platform does not support symlinks])
149                 host_win32=yes
150                 mono_cv_clang=no
151                 if test "x$cross_compiling" = "xno"; then
152                         if test "x$host" = "x$build" -a "x$host" = "x$target"; then
153                                 target_win32=yes
154                         fi
155                 else
156                         if test "x$host" = "x$target"; then
157                                 target_win32=yes
158                         fi
159                 fi
160                 HOST_CC="gcc"
162                 # Boehm not supported on 64-bit Windows.
163                 case "$host" in
164                 x86_64-*-* | amd64-*-*)
165                         support_boehm=no
166                         with_gc=sgen
167                         ;;
168                 esac
170                 # Windows 7 or later is required
171                 WIN32_CPPFLAGS="-DWINVER=0x0601 -D_WIN32_WINNT=0x0601 -D_WIN32_IE=0x0501 -D_UNICODE -DUNICODE -DWIN32_THREADS -DFD_SETSIZE=1024"
172                 CPPFLAGS="$CPPFLAGS $WIN32_CPPFLAGS"
173                 WIN32_LDFLAGS="-lbcrypt -lmswsock -lws2_32 -lole32 -loleaut32 -lpsapi -lversion -ladvapi32 -lwinmm -lkernel32 -liphlpapi"
174                 LDFLAGS="$LDFLAGS $WIN32_LDFLAGS"
175                 libmono_cflags="-mms-bitfields -mwindows"
176                 libmono_ldflags="-mms-bitfields -mwindows"
177                 libdl=
178                 libgc_threads=win32
179                 with_sigaltstack=no
180                 with_tls=pthread
181                 with_sgen_default_concurrent=yes
182                 LN_S=cp
184                 # This forces libgc to use the DllMain based thread registration code on win32
185                 libgc_configure_args="$libgc_configure_args --enable-win32-dllmain=yes"
186                 ;;
187         *-*-*netbsd*)
188                 CPPFLAGS="$CPPFLAGS -D_REENTRANT -DGC_NETBSD_THREADS -D_GNU_SOURCE"
189                 libmono_cflags="-D_REENTRANT"
190                 LDFLAGS="$LDFLAGS -pthread"
191                 CPPFLAGS="$CPPFLAGS -DHOST_BSD"
192                 libmono_ldflags="-pthread"
193                 need_link_unlink=yes
194                 libdl="-ldl"
195                 libgc_threads=pthreads
196                 with_sigaltstack=no
197                 use_sigposix=yes
198                 with_sgen_default_concurrent=yes
199                 ;;
200         *-*-kfreebsd*-gnu)
201                 CPPFLAGS="$CPPFLAGS -DGC_FREEBSD_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP -DUSE_MUNMAP -DTHREAD_LOCAL_ALLOC -pthread"
202                 libmono_cflags="-D_REENTRANT -DTHREAD_LOCAL_ALLOC -pthread"
203                 libmono_ldflags="-lpthread -pthread"
204                 libdl="-ldl"
205                 libgc_threads=pthreads
206                 need_link_unlink=yes
207                 with_sigaltstack=no
208                 use_sigposix=yes
209                 with_sgen_default_concurrent=yes
210                 ;;
211         *-*-*freebsd*)
212                 dnl For close_my_fds
213                 LDFLAGS="$LDFLAGS -lutil"
214                 if test "x$PTHREAD_CFLAGS" = "x"; then
215                         CPPFLAGS="$CPPFLAGS -DGC_FREEBSD_THREADS"
216                         libmono_cflags=
217                 else
218                         CPPFLAGS="$CPPFLAGS $PTHREAD_CFLAGS -DGC_FREEBSD_THREADS"
219                         libmono_cflags="$PTHREAD_CFLAGS"
220                 fi
221                 if test "x$PTHREAD_LIBS" = "x"; then
222                         LDFLAGS="$LDFLAGS -pthread -L/usr/local/lib"
223                         libmono_ldflags="-pthread"
224                 else
225                         LDFLAGS="$LDFLAGS $PTHREAD_LIBS -L/usr/local/lib"
226                         libmono_ldflags="$PTHREAD_LIBS"
227                 fi
228                 CPPFLAGS="$CPPFLAGS -DHOST_BSD -D_WITH_GETLINE"
229                 need_link_unlink=yes
230                 AC_DEFINE(PTHREAD_POINTER_ID, 1, [pthread is a pointer])
231                 libdl=
232                 libgc_threads=pthreads
233                 use_sigposix=yes
234                 has_dtrace=yes
235                 case "$host" in
236                 aarch64-*)
237                         support_boehm=no
238                         with_gc=sgen
239                         ;;
240                 riscv*)
241                         support_boehm=no
242                         with_gc=sgen
243                         ;;
244                 esac
245                 with_sgen_default_concurrent=yes
246                 ;;
247         *-*-*openbsd*)
248                 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_OPENBSD_THREADS -DHOST_BSD -D_REENTRANT -DUSE_MMAP"
249                 LDFLAGS="${LDFLAGS} -Wl,-zwxneeded"
250                 if test "x$disable_munmap" != "xyes"; then
251                 CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
252                 fi
253                 libmono_cflags="-D_THREAD_SAFE -D_REENTRANT"
254                 LDFLAGS="$LDFLAGS -pthread"
255                 need_link_unlink=yes
256                 AC_DEFINE(PTHREAD_POINTER_ID)
257                 libdl=
258                 libgc_threads=pthreads
259                 with_tls=pthread
260                 with_sigaltstack=no
261                 use_sigposix=yes
262                 with_sgen_default_concurrent=yes
263                 ;;
264         *-*-linux-android*)
265                 platform_android=yes
266                 AC_DEFINE(HOST_ANDROID,1,[Targeting the Android platform])
267                 AC_DEFINE(TARGET_ANDROID,1,[Targeting the Android platform])
269                 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP"
270                 if test "x$disable_munmap" != "xyes"; then
271                         CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
272                 fi
273                 libmono_cflags="-D_REENTRANT"
274                 libdl="-ldl"
275                 libgc_threads=pthreads
276                 use_sigposix=yes
278                 with_tls=pthread
279                 with_sigaltstack=no
280                 with_static_mono=no
282                 # Android doesn't support boehm, as it's missing <link.h>
283                 support_boehm=no
284                 with_gc=sgen
286                 # isinf(3) requires -lm
287                 LDFLAGS="$LDFLAGS -lm"
289                 # Bionic's <pthread.h> sets PTHREAD_STACK_MIN=2*PAGE_SIZE; doesn't define
290                 # PAGE_SIZE; breaks mono/io-layer/collection.c
291                 # Bionic doesn't provide S_IWRITE; breaks io-layer/io.c
292                 CFLAGS="$CFLAGS -DPAGE_SIZE=4096 -DS_IWRITE=S_IWUSR"
293                 CXXFLAGS="$CXXFLAGS -DPAGE_SIZE=4096 -DS_IWRITE=S_IWUSR"
295                 # to bypass the underscore linker check, can't work when cross-compiling
296                 mono_cv_uscore=yes
297                 mono_cv_clang=no
298                 ;;
299         *-*-linux*)
300                 host_linux=yes
301                 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP"
302                 if test "x$disable_munmap" != "xyes"; then
303                         CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
304                 fi
305                 libmono_cflags="-D_REENTRANT"
306                 libdl="-ldl"
307                 libgc_threads=pthreads
308                 use_sigposix=yes
309                 if test "x$cross_compiling" != "xno"; then
310                         # to bypass the underscore linker check, not
311                         # available during cross-compilation
312                         mono_cv_uscore=no
313                 fi
314                 case "$host" in
315                 *-tizen-linux-*)
316                         platform_tizen=yes
317                         ;;
318                 esac
319                 case "$host" in
320                 aarch64-*)
321                         support_boehm=no
322                         with_gc=sgen
323                         ;;
324                 powerpc*-*-linux*)
325                         # https://bugzilla.novell.com/show_bug.cgi?id=504411
326                         disable_munmap=yes
327                         ;;
328                 riscv*)
329                         support_boehm=no
330                         with_gc=sgen
331                         ;;
332                 esac
333                 with_sgen_default_concurrent=yes
334                 ;;
335         *-*-nacl*)
336                 echo "nacl no longer supported."
337                 exit 1
338                 ;;
339         *-*-hpux*)
340                 CPPFLAGS="$CPPFLAGS -DGC_HPUX_THREADS -D_HPUX_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_REENTRANT"
341                 # +ESdbgasm only valid on bundled cc on RISC
342                 # silently ignored for ia64
343                 if test $GCC != "yes"; then
344                         CFLAGS="$CFLAGS +ESdbgasm"
345                         # Arrange for run-time dereferencing of null
346                         # pointers to produce a SIGSEGV signal.
347                         LDFLAGS="$LDFLAGS -z"
348                 fi
349                 CFLAGS="$CFLAGS +ESdbgasm"
350                 LDFLAGS="$LDFLAGS -z"
351                 libmono_cflags="-D_REENTRANT"
352                 libmono_ldflags="-lpthread"
353                 libgc_threads=pthreads
354                 need_link_unlink=yes
355                 use_sigposix=yes
356                 ;;
357         *-*-solaris*)
358                 CPPFLAGS="$CPPFLAGS -DGC_SOLARIS_THREADS -DGC_SOLARIS_PTHREADS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -DUSE_MMAP -DUSE_MUNMAP -DHOST_SOLARIS"
359                 need_link_unlink=yes
360                 libmono_cflags="-D_REENTRANT"
361                 libgc_threads=pthreads
362                 has_dtrace=yes
363                 use_sigposix=yes
364                 enable_solaris_tar_check=yes
365                 ;;
366         *-*-darwin*)
367                 parallel_mark="Disabled_Currently_Hangs_On_MacOSX"
368                 host_darwin=yes
369                 target_mach=yes
370                 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_MACOSX_THREADS -DUSE_MMAP -DUSE_MUNMAP"
371                 libmono_cflags="-D_THREAD_SAFE"
372                 need_link_unlink=yes
373                 AC_DEFINE(PTHREAD_POINTER_ID)
374                 AC_DEFINE(USE_MACH_SEMA, 1, [...])
375                 libdl=
376                 libgc_threads=pthreads
377                 has_dtrace=yes
378                 if test "x$cross_compiling" = "xyes"; then
379                         has_broken_apple_cpp=yes
380                 fi
381                 dnl Snow Leopard is horribly broken -- it reports itself as i386-apple-darwin*, but
382                 dnl its gcc defaults to 64-bit mode.  They have also deprecated the usage of ucontext
383                 dnl we need to set some flags to build our 32-bit binaries on 10.6 properly
384                 case "$host" in
385                         dnl Snow Leopard and newer config.guess reports as this
386                         i*86-*-darwin*)
387                                 BROKEN_DARWIN_FLAGS="-arch i386"
388                                 BROKEN_DARWIN_CPPFLAGS=""
389                                 CPPFLAGS="$CPPFLAGS $BROKEN_DARWIN_CPPFLAGS"
390                                 CFLAGS="$CFLAGS $BROKEN_DARWIN_FLAGS"
391                                 CXXFLAGS="$CXXFLAGS $BROKEN_DARWIN_FLAGS"
392                                 CCASFLAGS="$CCASFLAGS $BROKEN_DARWIN_FLAGS"
393                                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC $BROKEN_DARWIN_CPPFLAGS"
394                                 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC $BROKEN_DARWIN_FLAGS"
395                                 with_sgen_default_concurrent=yes
396                                 ;;
397                         x*64-*-darwin*)
398                                 with_sgen_default_concurrent=yes
399                                 ;;
400                         arm*-darwin*)
401                                 platform_ios=yes
402                                 has_dtrace=no
403                                 ;;
404                         aarch64*-darwin*)
405                                 platform_ios=yes
406                                 ;;
407                 esac
408                 ;;
409         *-*-haiku*)
410                 dnl BSD_SOURCE is for getifaddrs
411                 CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE -D_REENTRANT -D_THREAD_SAFE"
412                 libmono_cflags="-D_REENTRANT -D_THREAD_SAFE"
413                 libdl=
414                 LIBS="$LIBS -lnetwork -ltextencoding"
415                 need_link_unlink=yes
416                 AC_DEFINE(PTHREAD_POINTER_ID)
417                 dnl Haiku does not support static TLS with __thread
418                 with_tls=pthread
419                 libgc_threads=pthreads
420                 use_sigposix=yes
421                 with_sigaltstack=no
422                 ;;
423         *-*-fuchsia*)
424                 AC_DEFINE(DISABLE_PORTABILITY,1,[Disable the io-portability layer])
425                 AC_DEFINE(HOST_FUCHSIA,1,[Targeting the Fuchsia platform])
426                 fuchsia=true
427                 with_tls=pthread
428                 with_sigaltstack=yes
429                 with_static_mono=no
430                 support_boehm=no
431                 with_gc=sgen
432                 mono_cv_uscore=yes
433                 mono_cv_clang=no
434                 ;;
435         *-*-aix*|*-*-os400*)
436                 dnl Set up a 64-bit build
437                 CPPFLAGS="$CPPFLAGS -maix64 -DGC_AIX_THREADS -D_ALL_SOURCE -D_THREAD_SAFE -D_LARGE_FILES -D_REENTRANT"
438                 LDFLAGS="-maix64"
439                 libmono_cflags="-D_THREAD_SAFE -D_REENTRANT"
440                 dnl Would you believe GNU nm doesn't know how to process AIX libraries?
441                 dnl Hardcode IBM binutils in case GNU ones end up on our path. Also
442                 dnl specifiy 64-bit mode for tools.
443                 AR="/usr/bin/ar -X64"
444                 NM="/usr/bin/nm -X64"
445                 dnl SGen is the future (changes to Boehm support code would be
446                 dnl required if you wish to re-enable Boehm)
447                 support_boehm=no
448                 with_gc=sgen
449                 need_link_unlink=yes
450                 use_sigposix=yes
451                 dnl the valloc call to alloc the guard page bombs out, even with extending the data area
452                 with_sigaltstack=no
453                 dnl use pthread TLS, __thread has issues with the compiler flags we use
454                 with_tls=pthread
455                 dnl ppc Linux is the same? test further
456                 disable_munmap=yes
457                 ;;
458         *)
459                 AC_MSG_WARN([*** Please add $host to configure.ac checks!])
460                 libdl="-ldl"
461                 ;;
462 esac
464 AC_MSG_RESULT(ok)
466 if test x$need_link_unlink = xyes; then
467    AC_DEFINE(NEED_LINK_UNLINK, 1, [Define if Unix sockets cannot be created in an anonymous namespace])
470 if test x$host_win32 = xyes; then
471    AC_DEFINE(HOST_WIN32, 1, [Host Platform is Win32])
474 if test x$target_win32 = xyes; then
475    AC_DEFINE(TARGET_WIN32, 1, [Target Platform is Win32])
478 if test x$host_darwin = xyes; then
479    AC_DEFINE(HOST_DARWIN, 1, [Host Platform is Darwin])
482 # Defined for all targets/platforms using classic Windows API support.
483 AC_DEFINE(HAVE_CLASSIC_WINAPI_SUPPORT, 1, [Use classic Windows API support])
484 AC_DEFINE(HAVE_UWP_WINAPI_SUPPORT, 0, [Don't use UWP Windows API support])
486 AC_SUBST(extra_runtime_ldflags)
487 AM_CONDITIONAL(HOST_WIN32, test x$host_win32 = xyes)
488 AM_CONDITIONAL(TARGET_WIN32, test x$target_win32 = xyes)
489 AM_CONDITIONAL(HOST_LINUX, echo x$target_os | grep -q linux)
490 AM_CONDITIONAL(HOST_DARWIN, test x$host_darwin = xyes)
491 AM_CONDITIONAL(HOST_SIGPOSIX, test x$use_sigposix = xyes)
492 AM_CONDITIONAL(HOST_ANDROID, test x$platform_android = xyes)
493 AM_CONDITIONAL(HOST_TIZEN, test x$platform_tizen = xyes)
494 AM_CONDITIONAL(HOST_IOS, test x$platform_ios = xyes)
495 AM_CONDITIONAL(HOST_WASM, test x$platform_wasm = xyes)
497 if test -z "$HOST_DARWIN_TRUE"; then :
498 PLATFORM_AOT_SUFFIX=.dylib
501 if test -z "$HOST_LINUX_TRUE"; then :
502 PLATFORM_AOT_SUFFIX=.so
505 if test -z "$HOST_WIN32_TRUE"; then :
506 PLATFORM_AOT_SUFFIX=.dll
509 AC_SUBST(PLATFORM_AOT_SUFFIX)
511 if test -z "$HOST_WASM_TRUE"; then :
512 AC_DEFINE(HAVE_UTIME)
513 AC_DEFINE(HAVE_UTIMES)
516 ## PLATFORM_AOT_SUFFIX not so simple for windows :-)
518 AC_CHECK_TOOL(CC, gcc, gcc)
519 AC_PROG_CC
520 AC_CHECK_TOOL(CXX, g++, g++)
521 AC_PROG_CXX
522 AM_PROG_AS
523 AC_PROG_INSTALL
524 AC_PROG_AWK
525 AM_PROG_CC_C_O
526 dnl We should use AM_PROG_AS, but it's not available on automake/aclocal 1.4
527 : ${CCAS='$(CC)'}
528 # Set ASFLAGS if not already set.
529 : ${CCASFLAGS='$(CFLAGS)'}
530 AC_SUBST(CCAS)
531 AC_SUBST(CCASFLAGS)
533 # AC_PROG_CXX helpfully sets CXX to g++ even if no c++ compiler is found so check
534 # GXX instead. See http://lists.gnu.org/archive/html/bug-autoconf/2002-04/msg00056.html
535 if test "x$CXX" = "xg++"; then
536         if test "x$GXX" != "xyes"; then
537                 # automake/libtool is so broken, it requires g++ even if the c++ sources
538                 # are inside automake conditionals
539                 AC_MSG_ERROR([You need to install g++])
540         fi
543 dnl may require a specific autoconf version
544 dnl AC_PROG_CC_FOR_BUILD
545 dnl CC_FOR_BUILD not automatically detected
546 CC_FOR_BUILD=$CC
547 CFLAGS_FOR_BUILD=$CFLAGS
548 BUILD_EXEEXT=
549 if test "x$cross_compiling" = "xyes"; then
550         CC_FOR_BUILD=cc
551         CFLAGS_FOR_BUILD=
552         BUILD_EXEEXT=""
554 AC_SUBST(CC_FOR_BUILD)
555 AC_SUBST(CFLAGS_FOR_BUILD)
556 AC_SUBST(HOST_CC)
557 AC_SUBST(BUILD_EXEEXT)
559 AM_CONDITIONAL(CROSS_COMPILING, [test x$cross_compiling = xyes])
560 AM_CONDITIONAL(USE_BATCH_FILES, [test x$host_win32 = xyes -a x$cross_compiling = xyes])
562 # Set STDC_HEADERS
563 AC_HEADER_STDC
564 AC_LIBTOOL_WIN32_DLL
565 # This causes monodis to not link correctly
566 #AC_DISABLE_FAST_INSTALL
568 #lookup makedev() header
569 AC_HEADER_MAJOR
571 AM_PROG_LIBTOOL
572 # Use dolt (http://dolt.freedesktop.org/) instead of libtool for building.
573 DOLT
575 export_ldflags=`(./libtool --config; echo eval echo \\$export_dynamic_flag_spec) | sh`
576 AC_SUBST(export_ldflags)
578 # Test whenever ld supports -version-script
579 AC_PROG_LD
580 AC_PROG_LD_GNU
582 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)
583 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)
584 AC_CHECK_HEADER(unistd.h, [HAVE_UNISTD_H=1], [HAVE_UNISTD_H=0])
585 AC_SUBST(HAVE_UNISTD_H)
586 AC_CHECK_HEADERS([linux/netlink.h linux/rtnetlink.h],
587                   [], [], [#include <stddef.h>
588                   #include <sys/socket.h>
589                   #include <linux/socket.h>])
591 AC_CHECK_HEADERS(sys/user.h, [], [],
593 #ifdef HAVE_SYS_PARAM_H
594 # include <sys/param.h>
595 #endif
598 AC_CHECK_HEADERS(linux/serial.h)
600 AC_CHECK_HEADER(zlib.h, [have_zlib=yes], [have_zlib=no])
601 if test x$have_zlib = xyes; then
602    AC_TRY_COMPILE([#include <zlib.h>], [
603    #if defined(ZLIB_VERNUM) && (ZLIB_VERNUM >= 0x1230)
604    #else
605    #error No good zlib found
606    #endif
607    ],[
608         AC_MSG_RESULT(Using system zlib)
609         zlib_msg="system zlib"
610         AC_DEFINE(HAVE_SYS_ZLIB,1,[Have system zlib])
611    ],[
612         AC_MSG_RESULT(Using embedded zlib)
613         have_zlib=no
614         zlib_msg="bundled zlib"
615    ])
618 AM_CONDITIONAL(HAVE_ZLIB, test x$have_zlib = xyes)
619 AC_DEFINE(HAVE_ZLIB,1,[Have system zlib])
621 # for mono/metadata/debug-symfile.c
622 AC_CHECK_HEADERS(elf.h)
624 # for support
625 AC_CHECK_HEADERS(poll.h)
626 AC_CHECK_HEADERS(sys/poll.h)
627 AC_CHECK_HEADERS(sys/wait.h)
628 AC_CHECK_HEADERS(grp.h)
629 AC_CHECK_HEADERS(syslog.h)
630 AC_CHECK_FUNCS(vsyslog)
632 # for mono/dis
633 AC_CHECK_HEADERS(wchar.h)
635 # for Linux statfs support
636 AC_CHECK_HEADERS(linux/magic.h)
638 # For Android NDK unified headers
639 if test x$platform_android = xyes; then
640         AC_CHECK_HEADERS(machine/endian.h sys/endian.h)
641         AC_CHECK_HEADERS(android/legacy_signal_inlines.h, [have_android_signal_inlines=yes], [have_android_signal_inlines=no])
642         AC_CHECK_HEADERS(android/ndk-version.h)
644         # Make sure SIGRT{MIN,MAX} work - they will fail to work with unified headers if building for
645         # API level < 21 *and* android/legacy_signal_inlines.h doesn't declare (and define) the required
646         # libc APIs to obtain values for SIGRT{MIN,MAX}. We perform the check only if android/legacy_signal_inlines.h
647         # is found because in other cases the macros will either work (for NDK < 14) or fail if the legacy header
648         # doesn't contain the required definitions (NDK 14)
649         if test x$have_android_signal_inlines = xyes; then
650                 AC_MSG_CHECKING([Whether Android SIGRTMIN/SGRTMAX macros are valid])
651                 AC_COMPILE_IFELSE([
652                         AC_LANG_PROGRAM([#include <signal.h>
653                                 #include <android/legacy_signal_inlines.h>],[
654                                 int i;
655                                 for (i = SIGRTMIN + 1; i < SIGRTMAX; ++i) {
656                                 }
657                         ])],[
658                                 AC_MSG_RESULT(yes)
659                                 android_sigrtminmax_work=yes
660                         ],[
661                                 AC_MSG_RESULT(no)
662                                 android_sigrtminmax_work=no
663                         ]
664                 )
666                 if test x$android_sigrtminmax_work = xno; then
667                         AC_MSG_ERROR([Android SIGRTMIN/SIGRTMAX macros don't work in this NDK])
668                 fi
669         fi
671         # Attempt to detect whether we're using Android NDK unified headers
672         AC_CHECK_HEADERS(android/api-level.h, [have_android_api_level=yes], [have_android_api_level=no])
673         AC_CHECK_HEADERS(android/versioning.h, [have_android_versioning=yes], [have_android_versioning=no])
675         android_unified_headers=no
676         if test x$have_android_api_level = xyes; then
677                 if test x$have_android_versioning = xyes; then
678                         AC_MSG_CHECKING([whether using Android NDK unified headers])
680                         # Both macros are defined only in the NDK unified headers
681                         AC_COMPILE_IFELSE([
682                                 AC_LANG_PROGRAM([
683                                         #include <android/api-level.h>
684                                         #include <android/versioning.h>
685                                 ],[
686                                         #if __ANDROID_API_O__ == 26 && defined(__INTRODUCED_IN)
687                                         #else
688                                                 #error __ANDROID_API_O__ != 26 or the __INTRODUCED_IN macro not defined
689                                         #endif
690                                 ])],[
691                                         AC_MSG_RESULT(yes)
692                                         android_unified_headers=yes
693                                 ],[
694                                         AC_MSG_RESULT(no)
695                                         android_unified_headers=no
696                                 ]
697                         )
698                 fi
699         fi
701         if test x$android_unified_headers = xyes; then
702                 AC_DEFINE(ANDROID_UNIFIED_HEADERS, 1, [Whether Android NDK unified headers are used])
703         fi
704 fi # Android
706 # not 64 bit clean in cross-compile
707 AC_CHECK_SIZEOF(void *)
708 AC_CHECK_SIZEOF(long)
710 AC_CHECK_SIZEOF(int)
711 AC_CHECK_SIZEOF(long long)
713 AC_CACHE_CHECK([for clang],
714         mono_cv_clang,[
715         AC_TRY_COMPILE([], [
716                 #ifdef __clang__
717                 #else
718                 #error "FAILED"
719                 #endif
720         ],
721         [mono_cv_clang=yes],
722         [mono_cv_clang=no],
723         [])
726 AC_ARG_ENABLE(visibility-hidden,
727 [  --disable-visibility-hidden    disable usage of -fvisiblity=hidden],
728    disable_visibility_hidden=yes, disable_visibility_hidden=no)
730 WARN=''
731 if test x"$GCC" = xyes; then
732                 WARN='-Wall -Wunused -Wmissing-declarations -Wpointer-arith -Wno-cast-qual -Wwrite-strings -Wno-switch -Wno-switch-enum -Wno-unused-value -Wno-attributes'
733                 CFLAGS="$CFLAGS -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs -Wno-format-zero-length"
735                 # We require C99 with some GNU extensions, e.g. `linux` macro
736                 CFLAGS="$CFLAGS -std=gnu99"
738                 # The runtime code does not respect ANSI C strict aliasing rules
739                 CFLAGS="$CFLAGS -fno-strict-aliasing"
741                 # We rely on signed overflow to behave
742                 CFLAGS="$CFLAGS -fwrapv"
744                 CFLAGS="$CFLAGS -DMONO_DLL_EXPORT"
745                 if test x"$disable_visibility_hidden" = xno; then
746                    # Don't export any symbols by default
747                    SHARED_CFLAGS="-fvisibility=hidden"
748                    CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
749                 fi
751                 ORIG_CFLAGS=$CFLAGS
752                 # Check for the normal version, since gcc ignores unknown -Wno options
753                 CFLAGS="$CFLAGS -Wunused-but-set-variable -Werror"
754                 AC_MSG_CHECKING(for -Wno-unused-but-set-variable option to gcc)
755                 AC_TRY_COMPILE([],[
756                 ], [
757                    AC_MSG_RESULT(yes)
758                    CFLAGS="$ORIG_CFLAGS -Wno-unused-but-set-variable"
759                 ], [
760                    AC_MSG_RESULT(no)
761                    CFLAGS=$ORIG_CFLAGS
762                 ])
764                 if test "x$mono_cv_clang" = "xyes"; then
765                    # https://bugzilla.samba.org/show_bug.cgi?id=8118
766                    WARN="$WARN -Qunused-arguments"
767                    WARN="$WARN -Wno-unused-function -Wno-tautological-compare -Wno-parentheses-equality -Wno-self-assign -Wno-return-stack-address -Wno-constant-logical-operand"
768                    # We rely on zero length arrays in structs
769                    WARN="$WARN -Wno-zero-length-array"
770                 fi
771 else
772         # The Sun Forte compiler complains about inline functions that access static variables
773         # so disable all inlining.
774         case "$host" in
775         *-*-solaris*)
776                 CFLAGS="$CFLAGS -Dinline="
777                 ;;
778         esac
780 CFLAGS="$WARN $CFLAGS -g"
781 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -g"
782 CPPFLAGS="$WARN $CPPFLAGS -g"
784 # Where's the 'mcs' source tree?
785 if test -d $srcdir/mcs; then
786   mcsdir=mcs
787 else
788   mcsdir=../mcs
791 AC_ARG_WITH(mcs-path, [  --with-mcs-path=/path/to/mcs      Specify an alternate mcs source tree],
792         if test x$with_mcs_path != "x" -a -d $with_mcs_path ; then
793                 mcsdir=$with_mcs_path
794         fi
797 AC_ARG_WITH(jumptables, [  --with-jumptables=yes,no      enable/disable support for jumptables (ARM-only for now) (defaults to no)],[],[with_jumptables=no])
799 AC_ARG_WITH(core,       [  --with-core=only       controls whether to build Mono as a .NET Core runtime (defaults to no)],[],[with_core=no])
800 if test x$with_core = xonly; then
801     AC_DEFINE(ENABLE_NETCORE,1,[Enables the support for .NET Core Features in the MonoVM])
802     with_runtime_preset=netcore
804 AM_CONDITIONAL(ENABLE_NETCORE, test x$with_core = xonly)
807 # A sanity check to catch cases where the package was unpacked
808 # with an ancient tar program (Solaris)
810 AC_ARG_ENABLE(solaris-tar-check,
811 [  --disable-solaris-tar-check    disable solaris tar check],
812    do_solaris_tar_check=no, do_solaris_tar_check=yes)
814 if test x"$do_solaris_tar_check" = xyes -a x"$enable_solaris_tar_check" = xyes; then
815         AC_MSG_CHECKING(integrity of package)
816         if test -f $mcsdir/class/System.Runtime.Serialization.Formatters.Soap/System.Runtime.Serialization.Formatters.Soap/SoapTypeMapper.cs
817         then
818                 AC_MSG_RESULT(ok)
819         else
820                 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"
821                 AC_MSG_ERROR([$errorm])
822         fi
825 if test "x$with_mcs_path" != "x"; then
826 mcs_topdir=$(cd "$mcsdir" && pwd)
827 mcs_topdir_from_srcdir=$mcs_topdir
828 else
829 mcs_topdir=$(cd "$srcdir/$mcsdir" && pwd)
830 mcs_topdir_from_srcdir='$(top_builddir)'/$mcsdir
833 # Convert mcs_topdir* paths to Windows syntax.
834 if test x$cross_compiling$host_win32 = xnoyes; then
835   mcs_topdir=$(cygpath -m $mcs_topdir)
836   case $mcs_topdir_from_srcdir in
837     /cygdrive/*)
838         mcs_topdir_from_srcdir=$(cygpath -m $mcs_topdir_from_srcdir)
839         ;;
840   esac
843 AC_SUBST([mcs_topdir])
844 AC_SUBST([mcs_topdir_from_srcdir])
846 # gettext: prepare the translation directories. 
847 # we do not configure the full gettext, as we consume it dynamically from C#
848 AM_PO_SUBDIRS
850 if test "x$USE_NLS" = "xyes"; then
851    AC_CHECK_PROG(HAVE_MSGFMT, msgfmt,yes,no)
853    if test "x$HAVE_MSGFMT" = "xno"; then
854           AC_MSG_ERROR([msgfmt not found. You need to install the 'gettext' package, or pass --enable-nls=no to configure.])
855    fi
858 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
860 pkg_config_path=
861 AC_ARG_WITH(crosspkgdir, [  --with-crosspkgdir=/path/to/pkg-config/dir      Change pkg-config dir to custom dir],
862         if test x$with_crosspkgdir = "x"; then
863                 if test -s $PKG_CONFIG_PATH; then
864                         pkg_config_path=$PKG_CONFIG_PATH
865                 fi
866         else
867                 pkg_config_path=$with_crosspkgdir
868                 PKG_CONFIG_PATH=$pkg_config_path
869                 export PKG_CONFIG_PATH
870         fi
873 AC_ARG_ENABLE(ninja,[  --enable-ninja    Enable using ninja where available], enable_ninja=$enableval)
874 AC_CHECK_PROG(HAVE_NINJA, ninja, yes, no)
875 AM_CONDITIONAL(NINJA, test x$enable_ninja = xyes -a x$HAVE_NINJA != xno)
877 AC_ARG_ENABLE(werror, [  --enable-werror Pass -Werror to the C compiler], werror_flag=$enableval, werror_flag=no)
878 if test x$werror_flag = xyes; then
879         WERROR_CFLAGS="-Werror"
881 AC_SUBST([WERROR_CFLAGS])
882 AC_SUBST([SHARED_CFLAGS])
884 GLIB_CFLAGS='-I$(top_srcdir)/mono/eglib -I$(top_builddir)/mono/eglib'
885   
886 AC_SUBST(GLIB_CFLAGS)
888 # Enable support for fast thread-local storage
889 # Some systems have broken support, so we allow to disable it.
890 AC_ARG_WITH(tls, [  --with-tls=__thread,pthread    select Thread Local Storage implementation (defaults to __thread)],[],[with_tls=__thread])
892 # Enable support for using sigaltstack for SIGSEGV and stack overflow handling
893 # This does not work on some platforms (bug #55253)
894 AC_ARG_WITH(sigaltstack, [  --with-sigaltstack=yes,no      enable/disable support for sigaltstack (defaults to yes)],[],[with_sigaltstack=yes])
896 AC_ARG_WITH(static_mono, [  --with-static_mono=yes,no      link mono statically to libmono (faster) (defaults to yes)],[],[with_static_mono=yes])
897 AC_ARG_WITH(shared_mono, [  --with-shared_mono=yes,no      build a shared libmono library (defaults to yes)],[],[with_shared_mono=yes])
898 # Same as --with-shared_mono=no
899 AC_ARG_ENABLE(libraries, [  --disable-libraries disable the build of libmono], enable_libraries=$enableval, enable_libraries=yes)
901 if test "x$enable_static" = "xno"; then
902    with_static_mono=no
905 if test "x$enable_shared" = "xno"; then
906    with_shared_mono=no
909 if test "x$enable_libraries" = "xno"; then
910    with_shared_mono=no
913 AM_CONDITIONAL(DISABLE_LIBRARIES, test x$enable_libraries = xno)
915 if test "x$host_win32" = "xyes"; then
916    # Boehm GC requires the runtime to be in its own dll
917    with_static_mono=no
920 AM_CONDITIONAL(STATIC_MONO, test x$with_static_mono != xno)
921 AM_CONDITIONAL(SHARED_MONO, test x$with_shared_mono != xno)
922 AC_ARG_ENABLE(mcs-build, [  --disable-mcs-build disable the build of the mcs directory], try_mcs_build=$enableval, enable_mcs_build=yes)
923 AC_ARG_ENABLE(support-build, [  --disable-support-build disable the build of the support directory], try_support_build=$enableval, enable_support_build=yes)
925 AC_ARG_WITH(xen_opt,   [  --with-xen_opt=yes,no          Enable Xen-specific behaviour (defaults to yes)],[],[with_xen_opt=yes])
926 if test "x$with_xen_opt" = "xyes" -a "x$mono_cv_clang" = "xno"; then
927         AC_DEFINE(MONO_XEN_OPT, 1, [Xen-specific behaviour])
928         ORIG_CFLAGS=$CFLAGS
929         CFLAGS="$CFLAGS -mno-tls-direct-seg-refs"
930         AC_MSG_CHECKING(for -mno-tls-direct-seg-refs option to gcc)
931         AC_TRY_COMPILE([], [
932         ], [
933            AC_MSG_RESULT(yes)
934            # Pass it to libgc as well
935            CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -mno-tls-direct-seg-refs"
936         ], [
937            AC_MSG_RESULT(no)
938            CFLAGS=$ORIG_CFLAGS
939         ])
942 AC_ARG_ENABLE(small-config, [  --enable-small-config Enable tweaks to reduce requirements (and capabilities)], enable_small_config=$enableval, enable_small_config=no)
944 if test x$enable_small_config = xyes; then
945         AC_DEFINE(MONO_SMALL_CONFIG,1,[Reduce runtime requirements (and capabilities)])
946         CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DSMALL_CONFIG"
949 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)
951 DISABLED_FEATURES=none
952 csc_compiler=default
953 endian=unknown
954 AC_C_BIGENDIAN([endian=big],[endian=little],[endian=unknown])
955 AC_MSG_CHECKING([CSharp compiler to use])
956 AC_ARG_WITH(csc, [  --with-csc=mcs,roslyn,default      Configures the CSharp compiler to use],[
957    if test x$withval = xmcs; then
958        csc_compiler=mcs
959    elif test x$withval = xroslyn; then
960        csc_compiler=roslyn
961    elif test x$withval = xdefault; then
962        :
963    else
964        AC_MSG_ERROR([You must supply one of "mcs", "roslyn" or "default" to the --with-csc option])
965    fi
966 ],[csc_compiler=default])
968 if test $csc_compiler = default; then
969    if test $endian = big; then
970       csc_compiler=mcs
971    elif test $endian = little; then
972       case "$host" in
973         powerpc*) csc_compiler=mcs ;;
974         *) csc_compiler=roslyn ;;
975       esac
976    else
977       csc_compiler=mcs
978    fi
980 AC_MSG_RESULT($csc_compiler)
982 AC_ARG_WITH(jemalloc,             [  --with-jemalloc=yes,no               If jemalloc is enabled (defaults to no)],                                     [], [with_jemalloc=no])
983 AC_ARG_WITH(jemalloc-always,      [  --with-jemalloc_always=yes,no        If jemalloc is enabled and always used (defaults to yes)],                    [], [with_jemalloc_always=no])
984 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])
987 if test x$target_win32 = xyes; then
988 with_jemalloc=no
989 with_jemalloc_assert=no
990 with_jemalloc_always=no
993 AM_CONDITIONAL(MONO_JEMALLOC_ASSERT, [test "x$with_jemalloc_assert" = "xyes"])
994 if test "x$with_jemalloc_assert" = "xyes"; then
995 JEMALLOC_CFLAGS+=" -DMONO_JEMALLOC_ASSERT"
996 AC_DEFINE(MONO_JEMALLOC_ASSERT, 1, [Make jemalloc assert for mono])
997 AC_SUBST(MONO_JEMALLOC_ASSERT, 1)
1000 AM_CONDITIONAL(MONO_JEMALLOC_DEFAULT, [test "x$with_jemalloc_always" = "xyes"])
1001 if test "x$with_jemalloc_always" = "xyes"; then
1002 with_jemalloc=yes
1003 JEMALLOC_CFLAGS+=" -DMONO_JEMALLOC_DEFAULT"
1004 AC_DEFINE(MONO_JEMALLOC_DEFAULT, 1, [Make jemalloc default for mono])
1005 AC_SUBST(MONO_JEMALLOC_DEFAULT, 1)
1008 AM_CONDITIONAL(MONO_JEMALLOC_ENABLED, [test "x$with_jemalloc" = "xyes"])
1009 if test "x$with_jemalloc" = "xyes"; then
1010 JEMALLOC_LDFLAGS="-L`pwd`/mono/utils/jemalloc/jemalloc/lib -ljemalloc_pic"
1011 JEMALLOC_CFLAGS+=" -DMONO_JEMALLOC_ENABLED -I `pwd`/mono/utils/jemalloc/jemalloc/include"
1012 JEMALLOC_AUTOCONF_FLAGS=" --build=$target --host=$host"
1014 if test "x$target_mach" = "xyes"; then
1015         JEMALLOC_CPPFLAGS=" -stdlib=libc++ "
1018 AC_DEFINE(MONO_JEMALLOC_ENABLED, 1, [Enable jemalloc usage for mono])
1019 AC_SUBST(MONO_JEMALLOC_ENABLED, 1)
1021 AC_SUBST(JEMALLOC_CFLAGS)
1022 AC_SUBST(JEMALLOC_CPPFLAGS)
1023 AC_SUBST(JEMALLOC_LDFLAGS)
1024 AC_SUBST(JEMALLOC_AUTOCONF_FLAGS)
1027 # Terminology:
1028 # Crash privacy - Attempts to not send identifying information in the crash dump / to protect the obscurity of the program control flow
1029 # MERP - The MS telemetry profile. Not for general use.
1030 # Structured crashes - crashes at runtime that trigger a stack walk by mono that happens cooperatively
1032 # 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.
1034 #--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.
1035 #--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.
1036 #--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.
1037 #--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.
1039 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])
1040 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])
1041 AC_ARG_ENABLE(crash-reporting,  [  --disable-crash-reporting            Enable or Disable crash reporting subsystem],        [crash_reporting=$enableval], [crash_reporting=yes])
1043 if test "x$with_crash_privacy" = "xyes"; then
1044 AC_DEFINE(MONO_PRIVATE_CRASHES,1,[Do not include names of unmanaged functions in the crash dump])
1047 if test "x$with_structured_crashes" = "xno"; then
1048 AC_DEFINE(DISABLE_STRUCTURED_CRASH,1,[Do not create structured crash files during unmanaged crashes])
1051 case "$host" in
1052         *-mingw*|*-*-cygwin*|*-*-aix*|*-*-os400*)
1053                 crash_reporting=no
1054                 ;;
1055 esac
1057 if test "x$crash_reporting" != "xyes"; then
1058 CFLAGS="$CFLAGS -DDISABLE_CRASH_REPORTING=1"
1059 CXXFLAGS="$CXXFLAGS -DDISABLE_CRASH_REPORTING=1"
1062 AC_ARG_ENABLE(monodroid, [ --enable-monodroid Enable runtime support for Monodroid (Xamarin.Android)], enable_monodroid=$enableval, enable_monodroid=no)
1063 AM_CONDITIONAL(ENABLE_MONODROID, test x$enable_monodroid = xyes)
1065 AC_ARG_ENABLE(monotouch, [ --enable-monotouch Enable runtime support for Monotouch (Xamarin.iOS and Xamarin.Mac)], enable_monotouch=$enableval, enable_monotouch=no)
1066 AM_CONDITIONAL(ENABLE_MONOTOUCH, test x$enable_monotouch = xyes)
1068 if test x$enable_monodroid = xyes; then
1069         AC_DEFINE(ENABLE_MONODROID, 1, [Enable runtime support for Monodroid (Xamarin.Android)])
1072 if test x$enable_monotouch = xyes; then
1073         AC_DEFINE(ENABLE_MONOTOUCH, 1, [Enable runtime support for Monotouch (Xamarin.iOS and Xamarin.Mac)])
1076 AC_ARG_ENABLE(cxx, [  --enable-cxx   compile some code as C++])
1078 # mono/corefx/native has a lot of invalid C++98 in its headers
1079 # dotnet/corefx/native looks a lot better, i.e. 44e5bdafb8d989a220c9cf1b94f31a64a6e4f052
1080 #CXXFLAGS_COMMON=' -std=gnu++98 -fno-exceptions -fno-rtti '
1081 CXXFLAGS_COMMON=' -std=gnu++0x -fno-exceptions -fno-rtti '
1082 # "c++0x" instead of C++11, for compat with Centos6/gcc4.4
1084 # -stdlib=libc++ is needed by clang for iOS 6.0 (-miphoneos-version-min=6.0)
1085 # to support C++11 headers but it does not seem to harm elsewhere, so over-approximate
1086 # and add it whenever we're running clang on Darwin.
1087 if test "x$mono_cv_clang" = xyes -a x$host_darwin = xyes; then
1088         CXXFLAGS_COMMON="$CXXFLAGS_COMMON -stdlib=libc++"
1091 AC_SUBST(CXXFLAGS_COMMON)
1093 if test "x$enable_cxx" = "xyes"; then
1095         CXX_ADD_CFLAGS=" -xc++ $CXXFLAGS_COMMON "
1097         # -std=gnu99 -xc++ is not allowed and errors.
1098         CXX_REMOVE_CFLAGS=-std=gnu99
1099         # These give warnings and should be removed. They are C-only.
1100         # i.e. C++ never allows these, they are always errors and their warningness is not controllable.
1101         CXX_REMOVE_CFLAGS="$CXX_REMOVE_CFLAGS -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs"
1102         # Likewise with CentOS 6 gcc 4.4.
1103         CXX_REMOVE_CFLAGS="$CXX_REMOVE_CFLAGS -Werror-implicit-function-declaration"
1105         # The C-only-ness of -Wno-format-zero-length varies with gcc version.
1106         # It is C-only prior to 4.7. Using it with C++ prior to 4.7
1107         # generates a warning every time we run gcc which is very unsightly.
1108         # The warning is for e.g. sprintf(foo, "") which can just be
1109         # foo[0] = 0 but Mono's use is more elaborate, not as easy to "fix",
1110         # and completely legal and valid.
1111         # We have to switch to C++ and not just use -xc++ because of -std=gnu99 (error when combined with -xc++).
1112         # Alternatively, just run $CXX -xc++ -c /dev/null.
1113         AC_LANG_PUSH(C++)
1114         ORIG_CXXFLAGS=$CXXFLAGS
1115         CXXFLAGS="$CXXFLAGS -Werror -Wno-format-zero-length -xc++ "
1116         AC_MSG_CHECKING(or C-only-ness of -Wno-format-zero-length)
1117         AC_TRY_COMPILE([ ], [ ], [ AC_MSG_RESULT(yes) ],
1118                                  [ AC_MSG_RESULT(no)
1119                                    CXX_REMOVE_CFLAGS="$CXX_REMOVE_CFLAGS -Wno-format-zero-length" ])
1120         CXXFLAGS=$ORIG_CXXFLAGS
1121         AC_LANG_POP(C++)
1123 AC_SUBST(CXX_ADD_CFLAGS)
1124 AC_SUBST(CXX_REMOVE_CFLAGS)
1127 # Set the build profiles and options before things which use them
1130 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])
1131 AC_ARG_WITH(monodroid,           [  --with-monodroid=yes,no             If you want to build the MonoDroid assemblies (defaults to no)],            [], [with_monodroid=default])
1132 AC_ARG_WITH(monotouch,           [  --with-monotouch=yes,no             If you want to build the Xamarin.iOS assemblies (defaults to no)],          [], [with_monotouch=default])
1133 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])
1134 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])
1135 AC_ARG_WITH(bitcode,             [  --with-bitcode=yes,no               If bitcode is enabled (defaults to no)],                                    [], [with_bitcode=default])
1136 AC_ARG_WITH(xammac,              [  --with-xammac=yes,no                If you want to build the Xamarin.Mac assemblies (defaults to no)],          [], [with_xammac=default])
1137 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])
1138 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])
1139 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])
1140 AC_ARG_WITH(winaot,              [  --with-winaot=yes,no                If you want to build the Windows friendly AOT assemblies (defaults to no)], [], [with_winaot=default])
1141 AC_ARG_WITH(orbis,               [  --with-orbis=yes,no                 If you want to build the Orbis assemblies (defaults to no)], [], [with_orbis=default])
1142 AC_ARG_WITH(unreal,              [  --with-unreal=yes,no                If you want to build the Unreal assemblies (defaults to no)], [], [with_unreal=default])
1143 AC_ARG_WITH(wasm,                [  --with-wasm=yes,no                  If you want to build the WebAssembly (defaults to no)], [], [with_wasm=default])
1146 AC_ARG_WITH(runtime-preset, [  --with-runtime-preset=net_4_x,all,aot,aot_llvm,hybridaot,hybridaot_llvm,fullaot,fullaot_llvm,winaot,winaot_llvm,bitcode,bitcodeinterp,unreal,fullaotinterp,fullaotinterp_llvm  Which default profile to build (defaults to net_4_x)],  [], [with_runtime_preset=net_4_x])
1147 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])
1148 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])
1149 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])
1152 dnl Spectre compiler mitigation flag checks
1154 if test "x$with_spectre_mitigation" = "xyes"; then
1155    AC_MSG_NOTICE([Compiler Spectre mitigation support checks])
1156    SPECTRE_CFLAGS=
1157    SPECTRE_INDIRECT_BRANCH_KIND=
1158    case "x$with_spectre_indirect_branch_choice" in
1159        xkeep) SPECTRE_INDIRECT_BRANCH_KIND=keep ;;
1160        xthunk) SPECTRE_INDIRECT_BRANCH_KIND=thunk ;;
1161        xinline) SPECTRE_INDIRECT_BRANCH_KIND=thunk-inline ;;
1162        xextern) SPECTRE_INDIRECT_BRANCH_KIND=thunk-extern ;;
1163        *) AC_MSG_ERROR([Invalid indirect jump thunk kind ($with_spectre_indirect_branch_choice)]) ;;
1164    esac
1166    SPECTRE_FUNCTION_RETURN_KIND=""
1167    case "x$with_spectre_function_return_choice" in
1168        xkeep) SPECTRE_FUNCTION_RETURN_KIND=keep ;;
1169        xthunk) SPECTRE_FUNCTION_RETURN_KIND=thunk ;;
1170        xinline) SPECTRE_FUNCTION_RETURN_KIND=thunk-inline ;;
1171        xextern) SPECTRE_FUNCTION_RETURN_KIND=thunk-extern ;;
1172        *) AC_MSG_ERROR([Invalid function return thunk kind ($with_spectre_function_return_choice)]) ;;
1173    esac
1175    AX_CHECK_COMPILE_FLAG(
1176         [ -mindirect-branch=$SPECTRE_INDIRECT_BRANCH_KIND ],
1177         [ SPECTRE_CFLAGS="$SPECTRE_CFLAGS -mindirect-branch=$SPECTRE_INDIRECT_BRANCH_KIND" ]
1178    )
1180    AX_CHECK_COMPILE_FLAG(
1181         [ -mfunction-return=$SPECTRE_FUNCTION_RETURN_KIND ],
1182         [ SPECTRE_CFLAGS="$SPECTRE_CFLAGS -mfunction-return=$SPECTRE_FUNCTION_RETURN_KIND" ]
1183    )
1185    if test "x$SPECTRE_CFLAGS" != "x" ; then
1186         CFLAGS="$CFLAGS $SPECTRE_CFLAGS"
1187         CXXFLAGS="$CXXFLAGS $SPECTRE_CFLAGS"
1188         spectre_mitigation_status="mitigation enabled"
1189    fi
1190 else
1191         spectre_mitigation_status="no mitigation"
1195 dnl Profile defaults
1197 TEST_PROFILE=default
1198 enable_llvm_default=no
1200 with_profile4_x_default=no
1201 with_monodroid_default=no
1202 with_monotouch_default=no
1203 with_monotouch_watch_default=no
1204 with_monotouch_tv_default=no
1205 with_xammac_default=no
1206 with_testing_aot_full_interp_default=no
1207 with_testing_aot_hybrid_default=no
1208 with_testing_aot_full_default=no
1209 with_winaot_default=no
1210 with_orbis_default=no
1211 with_unreal_default=no
1212 with_wasm_default=no
1214 with_bitcode_default=no
1215 enable_cooperative_suspend_default=no
1216 enable_hybrid_suspend_default=no
1218 INVARIANT_AOT_OPTIONS=nimt-trampolines=2000,ntrampolines=10000,nrgctx-fetch-trampolines=256,ngsharedvt-trampolines=4000,nftnptr-arg-trampolines=4000
1220 AOT_BUILD_ATTRS=$INVARIANT_AOT_OPTIONS
1222 if test x$cross_compiling = xyes -o x$enable_mcs_build = xno; then
1223    DISABLE_MCS_DOCS_default=yes
1224 elif test x$with_runtime_preset = xnetcore; then
1225    DISABLE_MCS_DOCS_default=yes
1227    mono_feature_disable_remoting='yes'
1228    mono_feature_disable_reflection_emit_save='yes'
1229    mono_feature_disable_appdomains='yes'
1230    mono_feature_disable_cleanup='yes'
1231    mono_feature_disable_assembly_remapping='yes'
1232    disable_mono_native=yes
1233    support_boehm=no
1234 elif test x$with_runtime_preset = xnet_4_x; then
1235    with_profile4_x_default=yes
1236    TEST_PROFILE=net_4_x
1237 elif test x$with_runtime_preset = xall; then
1238    with_profile4_x_default=yes
1239    with_monodroid_default=yes
1240    with_monotouch_default=yes
1241    with_monotouch_watch_default=yes
1242    with_monotouch_tv_default=yes
1243    with_xammac_default=yes
1244    with_winaot_default=yes
1245    with_orbis_default=yes
1246    with_unreal_default=yes
1247    with_wasm_default=yes
1248    with_testing_aot_full_interp_default=yes
1249    with_testing_aot_hybrid_default=yes
1250    with_testing_aot_full_default=yes
1251    TEST_PROFILE=net_4_x
1252 elif test x$with_runtime_preset = xbitcode; then
1253    DISABLE_MCS_DOCS_default=yes
1254    with_testing_aot_full_default=yes
1255    with_bitcode_default=yes
1256    enable_cooperative_suspend_default=yes
1257    # FIXME: use TEST_PROFILE=testing_aot_full
1258    TEST_PROFILE=testing_aot_bitcode
1259    PLATFORM_TEST_HARNESS_EXCLUDES=BitcodeNotSupported
1260    enable_llvm_default=yes
1262    mono_feature_disable_com='yes'
1263    mono_feature_disable_remoting='yes'
1264    mono_feature_disable_reflection_emit_save='yes'
1265    mono_feature_disable_reflection_emit='yes'
1266    mono_feature_disable_appdomains='yes'
1268    # We need at least clang++-6.0 to read the LLVM IR produced by the runtime
1269    AOT_BUILD_FLAGS="--runtime=mobile --aot=llvmonly,clangxx=clang++-6.0,$INVARIANT_AOT_OPTIONS"
1270    AOT_RUN_FLAGS="--runtime=mobile --llvmonly"
1271    AOT_MODE="llvmonly"
1272 elif test x$with_runtime_preset = xbitcodeinterp; then
1273    with_testing_aot_full_interp_default=yes
1274    with_bitcode_default=yes
1275    enable_cooperative_suspend_default=yes
1276    # FIXME: use TEST_PROFILE=testing_aot_full_interp
1277    TEST_PROFILE=testing_aot_bitcode_interp
1278    PLATFORM_TEST_HARNESS_EXCLUDES=BitcodeNotSupported
1279    enable_llvm_default=yes
1281    # mscorlib.dll aot compilation crashes
1282    mono_feature_disable_com='yes'
1284    # We need at least clang++-6.0 to read the LLVM IR produced by the runtime
1285    AOT_BUILD_FLAGS="--aot=llvmonly,interp,clangxx=clang++-6.0,$INVARIANT_AOT_OPTIONS"
1286    AOT_RUN_FLAGS="--llvmonly-interp"
1287 elif test x$with_runtime_preset = xfullaot; then
1288    DISABLE_MCS_DOCS_default=yes
1289    with_testing_aot_full_default=yes
1290    TEST_PROFILE=testing_aot_full
1292    mono_feature_disable_com='yes'
1293    mono_feature_disable_remoting='yes'
1294    mono_feature_disable_reflection_emit_save='yes'
1295    mono_feature_disable_reflection_emit='yes'
1296    mono_feature_disable_appdomains='yes'
1298    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --aot=full,$INVARIANT_AOT_OPTIONS"
1299    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1300    AOT_MODE="full"
1301 elif test x$with_runtime_preset = xfullaot_llvm; then
1302    DISABLE_MCS_DOCS_default=yes
1303    with_testing_aot_full_default=yes
1304    TEST_PROFILE=testing_aot_full
1306    mono_feature_disable_com='yes'
1307    mono_feature_disable_remoting='yes'
1308    mono_feature_disable_reflection_emit_save='yes'
1309    mono_feature_disable_reflection_emit='yes'
1310    mono_feature_disable_appdomains='yes'
1312    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --llvm --aot=full,$INVARIANT_AOT_OPTIONS"
1313    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1314    AOT_MODE="full"
1315 elif test x$with_runtime_preset = xhybridaot; then
1316    DISABLE_MCS_DOCS_default=yes
1317    with_testing_aot_hybrid_default=yes
1318    TEST_PROFILE=testing_aot_hybrid 
1320    AOT_BUILD_FLAGS="--runtime=mobile --aot=hybrid,$INVARIANT_AOT_OPTIONS"
1321    AOT_RUN_FLAGS="--runtime=mobile --hybrid-aot"
1322 elif test x$with_runtime_preset = xhybridaot_llvm; then
1323    DISABLE_MCS_DOCS_default=yes
1324    with_testing_aot_hybrid_default=yes
1325    TEST_PROFILE=testing_aot_hybrid
1327    AOT_BUILD_FLAGS="--runtime=mobile --llvm --aot=hybrid,$INVARIANT_AOT_OPTIONS"
1328    AOT_RUN_FLAGS="--runtime=mobile --hybrid-aot"
1329 elif test x$with_runtime_preset = xfullaotinterp; then
1330    with_testing_aot_full_interp_default=yes
1331    TEST_PROFILE=testing_aot_full_interp
1333    # mscorlib.dll aot compilation crashes
1334    mono_feature_disable_com='yes'
1336    AOT_BUILD_FLAGS="--aot=full,interp,$INVARIANT_AOT_OPTIONS"
1337    AOT_RUN_FLAGS="--full-aot-interp"
1338 elif test x$with_runtime_preset = xfullaotinterp_llvm; then
1339    with_testing_aot_full_interp_default=yes
1340    TEST_PROFILE=testing_aot_full_interp
1342    # mscorlib.dll aot compilation crashes
1343    mono_feature_disable_com='yes'
1345    AOT_BUILD_FLAGS="-O=gsharedvt --llvm --aot=full,interp,$INVARIANT_AOT_OPTIONS"
1346    AOT_RUN_FLAGS="--full-aot-interp"
1347 elif test x$with_runtime_preset = xaot; then
1348    with_profile4_x_default=yes
1350    AOT_BUILD_FLAGS="--aot=$INVARIANT_AOT_OPTIONS"
1351    AOT_RUN_FLAGS=""
1353    DISABLE_MCS_DOCS_default=yes
1354 elif test x$with_runtime_preset = xaot_llvm; then
1355    with_profile4_x_default=yes
1357    AOT_BUILD_FLAGS="--llvm --aot=$INVARIANT_AOT_OPTIONS"
1358    AOT_RUN_FLAGS=""
1360    DISABLE_MCS_DOCS_default=yes
1361 elif test x$with_runtime_preset = xwinaot; then
1362    DISABLE_MCS_DOCS_default=yes
1363    with_winaot_default=yes
1364    TEST_PROFILE=winaot
1366    mono_feature_disable_com='yes'
1367    mono_feature_disable_remoting='yes'
1368    mono_feature_disable_reflection_emit_save='yes'
1369    mono_feature_disable_reflection_emit='yes'
1370    mono_feature_disable_appdomains='yes'
1372    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --aot=full,$INVARIANT_AOT_OPTIONS"
1373    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1374    AOT_MODE="full"
1375 elif test x$with_runtime_preset = xwinaot_llvm; then
1376    DISABLE_MCS_DOCS_default=yes
1377    with_winaot_default=yes
1378    TEST_PROFILE=winaot
1380    mono_feature_disable_com='yes'
1381    mono_feature_disable_remoting='yes'
1382    mono_feature_disable_reflection_emit_save='yes'
1383    mono_feature_disable_reflection_emit='yes'
1384    mono_feature_disable_appdomains='yes'
1386    INVARIANT_AOT_OPTIONS="llcopts=-mattr=sse4.1,$INVARIANT_AOT_OPTIONS"
1387    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --llvm --aot=full,$INVARIANT_AOT_OPTIONS"
1388    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1389    AOT_MODE="full"
1390 elif test x$with_runtime_preset = xorbis; then
1391    DISABLE_MCS_DOCS_default=yes
1392    with_orbis_default=yes
1393    TEST_PROFILE=orbis
1395    mono_feature_disable_com='yes'
1396    mono_feature_disable_remoting='yes'
1397    mono_feature_disable_reflection_emit_save='yes'
1398    mono_feature_disable_reflection_emit='yes'
1399    mono_feature_disable_appdomains='yes'
1401    AOT_BUILD_FLAGS="--runtime=mobile --aot=full,$INVARIANT_AOT_OPTIONS"
1402    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1403    AOT_MODE="full"
1404 elif test x$with_runtime_preset = xunreal; then
1405    DISABLE_MCS_DOCS_default=yes
1406    with_unreal_default=yes
1407    TEST_PROFILE=unreal
1409    mono_feature_disable_com='yes'
1410    mono_feature_disable_remoting='yes'
1411    mono_feature_disable_appdomains='no'
1413    AOT_BUILD_FLAGS="--runtime=mobile --aot=hybrid,$INVARIANT_AOT_OPTIONS"
1414    AOT_RUN_FLAGS="--runtime=mobile --hybrid-aot"
1415 elif test x$with_runtime_preset = xwasm; then
1416    DISABLE_MCS_DOCS_default=yes
1417    with_wasm_default=yes
1418    TEST_PROFILE=wasm
1420    mono_feature_disable_com='yes'
1421    mono_feature_disable_remoting='yes'
1422    mono_feature_disable_reflection_emit_save='yes'
1423    mono_feature_disable_reflection_emit='yes'
1424    mono_feature_disable_appdomains='yes'
1426    AOT_BUILD_FLAGS="--runtime=mobile --aot=full,$INVARIANT_AOT_OPTIONS"
1427    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1428 else
1429    TEST_PROFILE=net_4_x
1430    with_profile4_x_default=yes
1433 if test "x$AOT_BUILD_FLAGS" != "x"; then :
1434    AC_SUBST(AOT_BUILD_FLAGS)
1435    AC_SUBST(AOT_RUN_FLAGS)
1436    # For llvmonlycheck + fullaotcheck
1437    AC_SUBST(INVARIANT_AOT_OPTIONS)
1440 AC_SUBST(TEST_PROFILE)
1442 if test "x$with_profile4_x" = "xdefault"; then
1443    with_profile4_x=$with_profile4_x_default
1445 if test "x$with_monodroid" = "xdefault"; then
1446    with_monodroid=$with_monodroid_default
1448 if test "x$with_monotouch" = "xdefault"; then
1449    with_monotouch=$with_monotouch_default
1451 if test "x$with_monotouch_watch" = "xdefault"; then
1452    with_monotouch_watch=$with_monotouch_watch_default
1454 if test "x$with_monotouch_tv" = "xdefault"; then
1455    with_monotouch_tv=$with_monotouch_tv_default
1457 if test "x$with_bitcode" = "xdefault"; then
1458    with_bitcode=$with_bitcode_default
1460 if test "x$with_xammac" = "xdefault"; then
1461    with_xammac=$with_xammac_default
1463 if test "x$with_testing_aot_full_interp" = "xdefault"; then
1464    with_testing_aot_full_interp=$with_testing_aot_full_interp_default
1466 if test "x$with_testing_aot_hybrid" = "xdefault"; then
1467    with_testing_aot_hybrid=$with_testing_aot_hybrid_default
1469 if test "x$with_testing_aot_full" = "xdefault"; then
1470    with_testing_aot_full=$with_testing_aot_full_default
1472 if test "x$with_winaot" = "xdefault"; then
1473    with_winaot=$with_winaot_default
1475 if test "x$with_orbis" = "xdefault"; then
1476    with_orbis=$with_orbis_default
1478 if test "x$with_unreal" = "xdefault"; then
1479    with_unreal=$with_unreal_default
1481 if test "x$with_wasm" = "xdefault"; then
1482    with_wasm=$with_wasm_default
1486 AM_CONDITIONAL(INSTALL_4_x, [test "x$with_profile4_x" = "xyes"])
1487 AM_CONDITIONAL(INSTALL_MONODROID, [test "x$with_monodroid" != "xno"])
1488 AM_CONDITIONAL(INSTALL_MONOTOUCH, [test "x$with_monotouch" != "xno"])
1489 AM_CONDITIONAL(INSTALL_MONOTOUCH_WATCH, [test "x$with_monotouch_watch" != "xno"])
1490 AM_CONDITIONAL(INSTALL_MONOTOUCH_TV, [test "x$with_monotouch_tv" != "xno"])
1491 AM_CONDITIONAL(BITCODE, test "x$with_bitcode" = "xyes")
1492 AM_CONDITIONAL(INSTALL_XAMMAC, [test "x$with_xammac" != "xno"])
1493 AM_CONDITIONAL(INSTALL_TESTING_AOT_FULL_INTERP, [test "x$with_testing_aot_full_interp" != "xno"])
1494 AM_CONDITIONAL(INSTALL_TESTING_AOT_HYBRID, [test "x$with_testing_aot_hybrid" != "xno"])
1495 AM_CONDITIONAL(INSTALL_TESTING_AOT_FULL, [test "x$with_testing_aot_full" != "xno"])
1496 AM_CONDITIONAL(INSTALL_WINAOT, [test "x$with_winaot" != "xno"])
1497 AM_CONDITIONAL(INSTALL_ORBIS, [test "x$with_orbis" != "xno"])
1498 AM_CONDITIONAL(INSTALL_UNREAL, [test "x$with_unreal" != "xno"])
1499 AM_CONDITIONAL(INSTALL_WASM, [test "x$with_wasm" != "xno"])
1500 AM_CONDITIONAL(INSTALL_NETCORE, [test "x$with_core" != "xno"])
1502 AM_CONDITIONAL(HYBRID_AOT_TESTS, [test "x$TEST_PROFILE" = "xtesting_aot_hybrid"] || [test "x$TEST_PROFILE" = "xunreal"])
1503 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"])
1504 AM_CONDITIONAL(FULL_AOT_INTERP_TESTS, [test "x$TEST_PROFILE" = "xtesting_aot_full_interp"] || [test "x$TEST_PROFILE" = "xtesting_aot_bitcode_interp"])
1505 AM_CONDITIONAL(DEFAULT_TESTS, [test "x$TEST_PROFILE" = "xnet_4_x"])
1507 default_profile=net_4_x
1508 if test -z "$INSTALL_MONODROID_TRUE"; then :
1509    default_profile=monodroid
1511 if test -z "$INSTALL_MONOTOUCH_TRUE"; then :
1512    default_profile=monotouch
1514 if test -z "$INSTALL_XAMMAC_TRUE"; then :
1515    default_profile=xammac
1517 if test -z "$INSTALL_TESTING_AOT_FULL_INTERP_TRUE"; then :
1518    default_profile=testing_aot_full_interp
1520 if test -z "$INSTALL_TESTING_AOT_HYBRID_TRUE"; then :
1521    default_profile=testing_aot_hybrid
1523 if test -z "$INSTALL_TESTING_AOT_FULL_TRUE"; then :
1524    default_profile=testing_aot_full
1526 if test -z "$INSTALL_WINAOT_TRUE"; then :
1527    default_profile=winaot
1529 if test -z "$INSTALL_ORBIS_TRUE"; then :
1530    default_profile=orbis
1532 if test -z "$INSTALL_UNREAL_TRUE"; then :
1533    default_profile=unreal
1535 if test -z "$INSTALL_WASM_TRUE"; then :
1536    default_profile=wasm
1538 if test -z "$INSTALL_4_x_TRUE"; then :
1539    default_profile=net_4_x
1541 DEFAULT_PROFILE=$default_profile
1542 AC_SUBST(DEFAULT_PROFILE)
1545 # End build profile configuration
1548 if test x$USE_NLS = xprofile_default; then
1550         AC_MSG_CHECKING([NLS used])
1552         # We make the default value for USE_NLS
1553         # "no" on OSX because it isn't available on most
1554         # default OSX installs. The most common configurations will
1555         # all disable it, so this saves us typing.
1556         if test x$host_darwin = xyes; then
1557                 USE_NLS=no;
1558         else
1559                 USE_NLS=yes;
1560         fi
1562         AC_SUBST([USE_NLS])
1563         AC_MSG_RESULT([$USE_NLS])
1566 AC_ARG_ENABLE(minimal, [  --enable-minimal=LIST      drop support for LIST subsystems.
1567      LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug, appdomains, verifier, 
1568      reflection_emit, reflection_emit_save, large_code, logging, com, ssa, generics, attach, jit, interpreter, simd, soft_debug, perfcounters, normalization, desktop_loader, shared_perfcounters, remoting,
1569          security, lldb, mdb, assert_messages, cleanup, sgen_marksweep_conc, sgen_split_nursery, sgen_gc_bridge, sgen_debug_helpers, sockets.],
1571         for feature in `echo "$enable_minimal" | sed -e "s/,/ /g"`; do
1572                 eval "mono_feature_disable_$feature='yes'"
1573         done
1574         DISABLED_FEATURES=$enable_minimal
1575         disabled="Disabled:      $enable_minimal"
1576 ],[])
1578 AC_DEFINE_UNQUOTED(DISABLED_FEATURES, "$DISABLED_FEATURES", [String of disabled features])
1580 if test "x$mono_feature_disable_aot" = "xyes"; then
1581         AC_DEFINE(DISABLE_AOT, 1, [Disable AOT Compiler])
1582         enable_system_aot=no
1583         AC_MSG_NOTICE([Disabled AOT compiler])
1586 if test "x$mono_feature_disable_profiler" = "xyes"; then
1587         AC_DEFINE(DISABLE_PROFILER, 1, [Disable default profiler support])
1588         AC_MSG_NOTICE([Disabled support for the profiler])
1590 AM_CONDITIONAL(DISABLE_PROFILER, test x$mono_feature_disable_profiler = xyes)
1592 if test "x$mono_feature_disable_decimal" = "xyes"; then
1593         AC_DEFINE(DISABLE_DECIMAL, 1, [Disable System.Decimal support])
1594         AC_MSG_NOTICE([Disabled support for decimal])
1597 if test "x$mono_feature_disable_pinvoke" = "xyes"; then
1598         AC_DEFINE(DISABLE_PINVOKE, 1, [Disable P/Invoke support])
1599         AC_MSG_NOTICE([Disabled support for P/Invoke])
1602 if test "x$mono_feature_disable_debug" = "xyes"; then
1603         AC_DEFINE(DISABLE_DEBUG, 1, [Disable runtime debugging support])
1604         AC_MSG_NOTICE([Disabled support for runtime debugging])
1607 if test "x$mono_feature_disable_reflection_emit" = "xyes"; then
1608         AC_DEFINE(DISABLE_REFLECTION_EMIT, 1, [Disable reflection emit support])
1609         mono_feature_disable_reflection_emit_save=yes
1610         AC_MSG_NOTICE([Disabled support for Reflection.Emit])
1613 if test "x$mono_feature_disable_reflection_emit_save" = "xyes"; then
1614         AC_DEFINE(DISABLE_REFLECTION_EMIT_SAVE, 1, [Disable assembly saving support in reflection emit])
1615         AC_MSG_NOTICE([Disabled support for Reflection.Emit.Save])
1618 if test "x$mono_feature_disable_large_code" = "xyes"; then
1619         AC_DEFINE(DISABLE_LARGE_CODE, 1, [Disable support for huge assemblies])
1620         AC_MSG_NOTICE([Disabled support for large assemblies])
1623 if test "x$mono_feature_disable_logging" = "xyes"; then
1624         AC_DEFINE(DISABLE_LOGGING, 1, [Disable support debug logging])
1625         AC_MSG_NOTICE([Disabled support for logging])
1628 if test "x$mono_feature_disable_com" = "xyes"; then
1629         AC_DEFINE(DISABLE_COM, 1, [Disable COM support])
1630         AC_MSG_NOTICE([Disabled COM support])
1633 if test "x$mono_feature_disable_ssa" = "xyes"; then
1634         AC_DEFINE(DISABLE_SSA, 1, [Disable advanced SSA JIT optimizations])
1635         AC_MSG_NOTICE([Disabled SSA JIT optimizations])
1638 if test "x$mono_feature_disable_generics" = "xyes"; then
1639         AC_DEFINE(DISABLE_GENERICS, 1, [Disable generics support])
1640         AC_MSG_NOTICE([Disabled Generics Support])
1643 if test "x$mono_feature_disable_shadowcopy" = "xyes"; then
1644         AC_DEFINE(DISABLE_SHADOW_COPY, 1, [Disable Shadow Copy for AppDomains])
1645         AC_MSG_NOTICE([Disabled Shadow copy for AppDomains])
1648 if test "x$mono_feature_disable_portability" = "xyes"; then
1649         AC_DEFINE(DISABLE_PORTABILITY, 1, [Disables the IO portability layer])
1650         AC_MSG_NOTICE([Disabled IO Portability layer])
1653 if test "x$mono_feature_disable_attach" = "xyes"; then
1654         AC_DEFINE(DISABLE_ATTACH, 1, [Disable agent attach support])
1655         AC_MSG_NOTICE([Disabled agent attach])
1658 if test "x$mono_feature_disable_verifier" = "xyes"; then
1659         AC_DEFINE(DISABLE_VERIFIER, 1, [Disables the verifier])
1660         AC_MSG_NOTICE([Disabled the metadata and IL verifiers])
1663 if test "x$mono_feature_disable_jit" = "xyes"; then
1664         AC_DEFINE(DISABLE_JIT, 1, [Disable the JIT, only full-aot mode or interpreter will be supported by the runtime.])
1665         AC_MSG_NOTICE([Disabled the JIT engine, only full AOT or interpreter will be supported])
1668 AM_CONDITIONAL(DISABLE_JIT, test x$mono_feature_disable_jit = xyes)
1670 if test "x$mono_feature_disable_interpreter" = "xyes"; then
1671         AC_DEFINE(DISABLE_INTERPRETER, 1, [Disable the interpreter.])
1672         AC_MSG_NOTICE([Disabled the interpreter])
1675 AM_CONDITIONAL(DISABLE_INTERPRETER, test x$mono_feature_disable_interpreter = xyes)
1677 if test "x$mono_feature_disable_interpreter" != "xyes" -o "x$mono_feature_disable_jit" != "xyes"; then
1678         AC_DEFINE(ENABLE_ILGEN, 1, [Some VES is available at runtime])
1681 AM_CONDITIONAL(ENABLE_ILGEN, test x$mono_feature_disable_interpreter != xyes -o x$mono_feature_disable_jit != xyes)
1683 if test "x$mono_feature_disable_simd" = "xyes"; then
1684         AC_DEFINE(DISABLE_SIMD, 1, [Disable SIMD intrinsics related optimizations.])
1685         AC_MSG_NOTICE([Disabled SIMD support])
1688 if test "x$mono_feature_disable_soft_debug" = "xyes"; then
1689         AC_DEFINE(DISABLE_DEBUGGER_AGENT, 1, [Disable Soft Debugger Agent.])
1690         AC_MSG_NOTICE([Disabled Soft Debugger.])
1693 AM_CONDITIONAL(DISABLE_DEBUGGER_AGENT, test x$mono_feature_disable_debugger_agent = xyes)
1695 if test "x$mono_feature_disable_perfcounters" = "xyes"; then
1696         AC_DEFINE(DISABLE_PERFCOUNTERS, 1, [Disable Performance Counters.])
1697         AC_MSG_NOTICE([Disabled Performance Counters.])
1699 if test "x$mono_feature_disable_normalization" = "xyes"; then
1700         AC_DEFINE(DISABLE_NORMALIZATION, 1, [Disable String normalization support.])
1701         AC_MSG_NOTICE([Disabled String normalization support.])
1704 #TODO: remove assembly_remapping feature name once everyone is using desktop_loader
1705 if test "x$mono_feature_disable_assembly_remapping" = "xyes" || test "x$mono_feature_disable_desktop_loader" = "xyes"; then
1706         AC_DEFINE(DISABLE_DESKTOP_LOADER, 1, [Disable desktop assembly loader semantics.])
1707         AC_MSG_NOTICE([Disabled desktop assembly loader semantics.])
1710 if test "x$mono_feature_disable_shared_perfcounters" = "xyes"; then
1711         AC_DEFINE(DISABLE_SHARED_PERFCOUNTERS, 1, [Disable shared perfcounters.])
1712         AC_MSG_NOTICE([Disabled Shared perfcounters.])
1715 if test "x$mono_feature_disable_appdomains" = "xyes"; then
1716         AC_DEFINE(DISABLE_APPDOMAINS, 1, [Disable support for multiple appdomains.])
1717         AC_MSG_NOTICE([Disabled support for multiple appdomains.])
1720 if test "x$mono_feature_disable_remoting" = "xyes"; then
1721         AC_DEFINE(DISABLE_REMOTING, 1, [Disable remoting support (This disables type proxies and make com non-functional)])
1722         AC_MSG_NOTICE([Disabled remoting])
1725 if test "x$mono_feature_disable_security" = "xyes"; then
1726         AC_DEFINE(DISABLE_SECURITY, 1, [Disable CAS/CoreCLR security])
1727         AC_MSG_NOTICE([Disabled CAS/CoreCLR security manager (used e.g. for Moonlight)])
1730 if test "x$mono_feature_disable_lldb" = "xyes"; then
1731         AC_DEFINE(DISABLE_LLDB, 1, [Disable support code for the LLDB plugin.])
1732         AC_MSG_NOTICE([Disabled LLDB plugin support code.])
1735 if test "x$mono_feature_disable_mdb" = "xyes"; then
1736         AC_DEFINE(DISABLE_MDB, 1, [Disable support for .mdb symbol files.])
1737         AC_MSG_NOTICE([Disabled support for .mdb symbol files.])
1740 if test "x$mono_feature_disable_assert_messages" = "xyes"; then
1741         AC_DEFINE(DISABLE_ASSERT_MESSAGES, 1, [Disable assertion messages.])
1742         AC_MSG_NOTICE([Disabled assertion messages.])
1745 if test "x$mono_feature_disable_cleanup" = "xyes"; then
1746         AC_DEFINE(DISABLE_CLEANUP, 1, [Disable runtime cleanup.])
1747         AC_MSG_NOTICE([Disabled runtime cleanup.])
1750 if test "x$mono_feature_disable_sgen_marksweep_conc" = "xyes"; then
1751         AC_DEFINE(DISABLE_SGEN_MAJOR_MARKSWEEP_CONC, 1, [Disable concurrent gc support in SGEN.])
1752         AC_MSG_NOTICE([Disabled concurrent gc support in SGEN.])
1756 if test "x$mono_feature_disable_sgen_split_nursery" = "xyes"; then
1757         AC_DEFINE(DISABLE_SGEN_SPLIT_NURSERY, 1, [Disable minor=split support in SGEN.])
1758         AC_MSG_NOTICE([Disabled minor=split support in SGEN.])
1761 if test "x$mono_feature_disable_sgen_gc_bridge" = "xyes"; then
1762         AC_DEFINE(DISABLE_SGEN_GC_BRIDGE, 1, [Disable gc bridge support in SGEN.])
1763         AC_MSG_NOTICE([Disabled gc bridge support in SGEN.])
1766 if test "x$mono_feature_disable_sgen_debug_helpers" = "xyes"; then
1767         AC_DEFINE(DISABLE_SGEN_DEBUG_HELPERS, 1, [Disable debug helpers in SGEN.])
1768         AC_MSG_NOTICE([Disabled debug helpers in SGEN.])
1771 if test "x$mono_feature_disable_sockets" = "xyes"; then
1772         AC_DEFINE(DISABLE_SOCKETS, 1, [Disable sockets])
1773         AC_MSG_NOTICE([Disabled sockets])
1776 AC_ARG_ENABLE(executables, [  --disable-executables disable the build of the runtime executables], enable_executables=$enableval, enable_executables=yes)
1777 AM_CONDITIONAL(DISABLE_EXECUTABLES, test x$enable_executables = xno)
1779 has_extension_module=no
1780 AC_ARG_ENABLE(extension-module, [  --enable-extension-module=LIST enable the core-extensions from LIST],
1782         for extension in `echo "$enable_extension_module" | sed -e "s/,/ /g"`; do
1783                 if test x$extension = xdefault ; then
1784                         has_extension_module=yes;
1785                 fi
1786         done
1787         if test x$enable_extension_module = xyes; then
1788                 has_extension_module=yes;
1789         fi
1790 ], [])
1792 AM_CONDITIONAL([HAS_EXTENSION_MODULE], [test x$has_extension_module != xno])
1794 if test x$has_extension_module != xno ; then
1795         AC_DEFINE([ENABLE_EXTENSION_MODULE], 1, [Extension module enabled])
1796         AC_MSG_NOTICE([Enabling mono extension module.])
1799 # Deprecated
1800 AC_ARG_ENABLE(gsharedvt, [  --enable-gsharedvt Enable generic valuetype sharing (Deprecated)], enable_gsharedvt=$enableval, enable_gsharedvt=no)
1802 AC_MSG_CHECKING(for visibility __attribute__)
1803 AC_COMPILE_IFELSE([
1804         AC_LANG_SOURCE([[
1805                 void __attribute__ ((visibility ("hidden"))) doit (void) {}
1806                 int main () { doit (); return 0; }
1807         ]])
1808 ], [
1809    have_visibility_hidden=yes
1810    AC_MSG_RESULT(yes)
1811 ], [
1812    have_visibility_hidden=no
1813    AC_MSG_RESULT(no)
1817 dnl Boehm GC configuration
1820 AC_ARG_WITH(libgc,   [  --with-libgc=included,none  Controls the Boehm GC config, default=included],[libgc=$with_libgc],[libgc=included])
1822 AC_ARG_ENABLE(boehm, [  --disable-boehm            Disable the Boehm GC.], support_boehm=$enableval,support_boehm=${support_boehm:-yes})
1823 AM_CONDITIONAL(SUPPORT_BOEHM, test x$support_boehm = xyes)
1825 if test "x$support_boehm" = "xyes"; then
1827         AC_ARG_ENABLE(parallel-mark, [  --enable-parallel-mark     Enables Boehm GC Parallel Marking], enable_parallel_mark=$enableval, enable_parallel_mark=$parallel_mark)
1828         if test x$enable_parallel_mark = xyes; then
1829                 libgc_configure_args="$libgc_configure_args --enable-parallel-mark"
1830         fi
1832         gc_msg=""
1833         LIBGC_CPPFLAGS=
1834         LIBGC_LIBS=
1835         LIBGC_STATIC_LIBS=
1836         libgc_dir=
1837         case "x$libgc" in
1838                 xincluded)
1839                         if test "x$support_boehm" = "xyes"; then
1840                                 libgc_dir=libgc
1841                         fi
1843                         LIBGC_CPPFLAGS='-I$(top_srcdir)/libgc/include'
1844                         LIBGC_LIBS='$(top_builddir)/libgc/libmonogc.la'
1845                         LIBGC_STATIC_LIBS='$(top_builddir)/libgc/libmonogc-static.la'
1847                         BOEHM_DEFINES="-DHAVE_BOEHM_GC"
1849                         if test x$target_win32 = xyes; then
1850                                 BOEHM_DEFINES="$BOEHM_DEFINES -DGC_NOT_DLL"
1851                                 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DGC_BUILD -DGC_NOT_DLL"
1852                         fi
1854                         gc_msg="Included Boehm GC with typed GC"
1855                         if test x$enable_parallel_mark = xyes; then
1856                                 AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "Included Boehm (with typed GC and Parallel Mark)", [GC description])
1857                                 gc_msg="$gc_msg and parallel mark"
1858                         else
1859                                 AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "Included Boehm (with typed GC)", [GC description])
1860                         fi
1861                         ;;
1863                 xboehm|xbohem|xyes)
1864                         AC_MSG_WARN("External Boehm is no longer supported")
1865                         ;;
1867                 xsgen)
1868                         AC_MSG_WARN("Use --with-sgen instead, --with-libgc= controls Boehm configuration")
1869                         ;;
1871                 xnone)
1872                         AC_MSG_WARN("Compiling mono without GC.")
1873                         AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "none", [GC description])
1874                         AC_DEFINE(HAVE_NULL_GC,1,[No GC support.])
1875                         gc_msg="none"
1876                         ;;
1877                 *)
1878                         AC_MSG_ERROR([Invalid argument $libgc to --with-libgc.])
1879                         ;;
1880         esac
1882         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])
1883         if test "x$large_heap" = "xyes"; then
1884            CPPFLAGS="$CPPFLAGS -DLARGE_CONFIG"
1885         fi
1887         AC_SUBST(LIBGC_CPPFLAGS)
1888         AC_SUBST(LIBGC_LIBS)
1889         AC_SUBST(LIBGC_STATIC_LIBS)
1890         AC_SUBST(libgc_dir)
1891         AC_SUBST(BOEHM_DEFINES)
1894 AM_CONDITIONAL(SUPPORT_NULLGC, test "x$libgc" = "xnone")
1897 dnl End of Boehm GC Configuration
1900 dnl *************************************
1901 dnl *** Checks for zero length arrays ***
1902 dnl *************************************
1903 AC_MSG_CHECKING(whether $CC supports zero length arrays)
1904 AC_TRY_COMPILE([
1905         struct s {
1906                 int  length;
1907                 char data [0];
1908         };
1909 ], [], [
1910         AC_MSG_RESULT(yes)
1911         AC_DEFINE_UNQUOTED(MONO_ZERO_LEN_ARRAY, 0, [Length of zero length arrays])
1912 ], [
1913         AC_MSG_RESULT(no)
1914         AC_DEFINE_UNQUOTED(MONO_ZERO_LEN_ARRAY, 1, [Length of zero length arrays])
1917 dnl ***********************************
1918 dnl *** Checks for signals
1919 dnl ***********************************
1920 AC_CHECK_HEADERS(signal.h)
1921 AC_CHECK_FUNCS(sigaction)
1922 AC_CHECK_FUNCS(kill)
1923 AC_CHECK_FUNCS(signal)
1925 # signal() is declared inline in Android headers
1926 # so we need to workaround it by overriding the check.
1927 if test x$platform_android = xyes; then
1928         AC_DEFINE(HAVE_SIGNAL,1)
1931 # `target_ios=yes` does not detect watch devices and fails when cross-compiling
1932 AC_MONO_APPLE_TARGET(TARGET_OS_IPHONE, [mono_native_platform_ios=yes])
1934 if test x$host_win32 = xno; then
1935         dnl *************************************
1936         dnl *** Checks for time capabilities ***
1937         dnl *************************************
1939         AC_MSG_CHECKING(for CLOCK_MONOTONIC)
1940         AC_TRY_COMPILE([#include <time.h>], [
1941                 const int foo = CLOCK_MONOTONIC;
1942         ],[
1943                 AC_MSG_RESULT(yes)
1944                 AC_DEFINE(HAVE_CLOCK_MONOTONIC, 1, [CLOCK_MONOTONIC])
1945         ], [
1946                 AC_MSG_RESULT(no)
1947         ])
1949         AC_MSG_CHECKING(for CLOCK_MONOTONIC_COARSE)
1950         AC_TRY_COMPILE([#include <time.h>], [
1951                 const int foo = CLOCK_MONOTONIC_COARSE;
1952         ],[
1953                 AC_MSG_RESULT(yes)
1954                 AC_DEFINE(HAVE_CLOCK_MONOTONIC_COARSE, 1, [CLOCK_MONOTONIC_COARSE])
1955         ], [
1956                 AC_MSG_RESULT(no)
1957         ])
1959         AC_MSG_CHECKING(for CLOCK_REALTIME)
1960         AC_TRY_COMPILE([#include <time.h>], [
1961                 const int foo = CLOCK_REALTIME;
1962         ],[
1963                 AC_MSG_RESULT(yes)
1964                 AC_DEFINE(HAVE_CLOCK_REALTIME, 1, [CLOCK_REALTIME])
1965         ], [
1966                 AC_MSG_RESULT(no)
1967         ])
1969         AC_CHECK_FUNC(mach_absolute_time, [AC_DEFINE(HAVE_MACH_ABSOLUTE_TIME, 1, [mach_absolute_time])])
1970         AC_CHECK_FUNC(gethrtime, [AC_DEFINE(HAVE_GETHRTIME, 1, [gethrtime])])
1971         AC_CHECK_FUNC(read_real_time, [AC_DEFINE(HAVE_READ_REAL_TIME, 1, [read_real_time])])
1972         AC_CHECK_FUNC(mach_timebase_info, [AC_DEFINE(HAVE_MACH_TIMEBASE_INFO, 1, [mach_timebase_info])])
1973         AC_CHECK_FUNC(futimes,            [AC_DEFINE(HAVE_FUTIMES, 1, [futimes])])
1974         AC_CHECK_FUNC(futimens,           [AC_DEFINE(HAVE_FUTIMENS, 1, [futimens])])
1976         dnl hires monotonic clock support
1977         AC_SEARCH_LIBS(clock_gettime, rt)
1978         AC_CHECK_FUNCS(clock_nanosleep)
1980         dnl dynamic loader support
1981         AC_CHECK_FUNC(dlopen, DL_LIB="",
1982                 AC_CHECK_LIB(dl, dlopen, DL_LIB="-ldl", dl_support=no)
1983         )
1984         if test x$dl_support = xno; then
1985                 AC_MSG_WARN([No dynamic loading support available])
1986         else
1987                 LIBS="$LIBS $DL_LIB"
1988                 AC_DEFINE(HAVE_DL_LOADER,1,[dlopen-based dynamic loader available])
1989                 dnl from glib's configure.ac
1990                 AC_CACHE_CHECK([for preceeding underscore in symbols],
1991                         mono_cv_uscore,[
1992                         AC_TRY_RUN([#include <dlfcn.h>
1993                         int mono_underscore_test (void) { return 42; }
1994                         int main() {
1995                           void *f1 = (void*)0, *f2 = (void*)0, *handle;
1996                           handle = dlopen ((void*)0, 0);
1997                           if (handle) {
1998                             f1 = dlsym (handle, "mono_underscore_test");
1999                             f2 = dlsym (handle, "_mono_underscore_test");
2000                           } return (!f2 || f1);
2001                         }],
2002                                 [mono_cv_uscore=yes],
2003                                 [mono_cv_uscore=no],
2004                         [])
2005                 ])
2006                 if test "x$mono_cv_uscore" = "xyes"; then
2007                         MONO_DL_NEED_USCORE=1
2008                 else
2009                         MONO_DL_NEED_USCORE=0
2010                 fi
2011                 AC_SUBST(MONO_DL_NEED_USCORE)
2012                 AC_CHECK_FUNC(dlerror)
2013         fi
2015         dnl ******************************************************************
2016         dnl *** Checks for the IKVM JNI interface library                  ***
2017         dnl ******************************************************************
2018         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])
2020         ikvm_native_dir=
2021         if test x$with_ikvm_native = xyes; then
2022                 ikvm_native_dir=ikvm-native
2023                 jdk_headers_found="IKVM Native"
2024         fi
2026         AC_SUBST(ikvm_native_dir)
2028         AC_CHECK_HEADERS(execinfo.h)
2030         AC_CHECK_HEADERS(sys/auxv.h sys/resource.h)
2032         AC_CHECK_FUNCS(getgrgid_r)
2033         AC_CHECK_FUNCS(getgrnam_r)
2034         AC_CHECK_FUNCS(getresuid)
2035         AC_CHECK_FUNCS(setresuid)
2036         AC_CHECK_FUNCS(kqueue)
2037         AC_CHECK_FUNCS(backtrace_symbols)
2038         AC_CHECK_FUNCS(mkstemp)
2039         AC_CHECK_FUNCS(mmap)
2040         AC_CHECK_FUNCS(madvise)
2041         AC_CHECK_FUNCS(getrusage)
2042         AC_CHECK_FUNCS(getpriority)
2043         AC_CHECK_FUNCS(setpriority)
2044         AC_CHECK_FUNCS(dl_iterate_phdr)
2045         AC_CHECK_FUNCS(dladdr)
2046         AC_CHECK_FUNCS(sysconf)
2047         AC_CHECK_FUNCS(getrlimit)
2048         AC_CHECK_FUNCS(prctl)
2049         AC_CHECK_FUNCS(arc4random)
2050         AC_CHECK_FUNCS(nl_langinfo)
2052         AC_CHECK_FUNCS(sched_getaffinity)
2053         AC_CHECK_FUNCS(sched_setaffinity)
2054         AC_CHECK_FUNCS(sched_getcpu)
2056         if test x$platform_android != xyes; then
2057                 AC_CHECK_FUNCS(getpwnam_r)
2058                 AC_CHECK_FUNCS(getpwuid_r)
2059         fi
2061         AC_CHECK_FUNCS(readlink)
2062         AC_CHECK_FUNCS(chmod)
2063         AC_CHECK_FUNCS(lstat)
2064         AC_CHECK_FUNCS(getdtablesize)
2066         AC_CHECK_FUNCS(ftruncate)
2067         AC_CHECK_FUNCS(msync)
2069         AC_CHECK_FUNCS(gethostname getpeername)
2070         AC_CHECK_FUNCS(utime utimes)
2072         AC_CHECK_FUNCS(openlog closelog)
2073         AC_CHECK_FUNCS(atexit)
2075         AC_FUNC_STRERROR_R()
2077         dnl ****************************************************************
2078         dnl *** Check for sched_setaffinity from glibc versions before   ***
2079         dnl *** 2.3.4. The older versions of the function only take 2    ***
2080         dnl *** parameters, not 3.                                       ***
2081         dnl ***                                                          ***
2082         dnl *** Because the interface change was not made in a minor     ***
2083         dnl *** version rev, the __GLIBC__ and __GLIBC_MINOR__ macros    ***
2084         dnl *** won't always indicate the interface sched_affinity has.  ***
2085         dnl ****************************************************************
2086         AC_MSG_CHECKING(for sched_setaffinity from glibc < 2.3.4)
2087         AC_TRY_COMPILE([#include <sched.h>], [
2088             int mask = 1; 
2089             sched_setaffinity(0, &mask);
2090         ], [
2091                 # Yes, we have it...
2092                 AC_MSG_RESULT(yes)
2093                 AC_DEFINE(GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY, 1, [Have GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY])
2094         ], [
2095                 # We have the new, three-parameter version
2096                 AC_MSG_RESULT(no)
2097         ])
2098         AC_TRY_COMPILE([#include <sched.h>], [
2099              CPU_COUNT((void *) 0);
2100         ], [
2101                 AC_MSG_RESULT(yes)
2102                 AC_DEFINE(GLIBC_HAS_CPU_COUNT, 1, [GLIBC has CPU_COUNT macro in sched.h])
2103         ], [
2104                 # We have the new, three-parameter version
2105                 AC_MSG_RESULT(no)
2106         ])
2108         dnl ******************************************************************
2109         dnl *** Check for large file support                               ***
2110         dnl *** (If we were using autoconf 2.50 we'd use AC_SYS_LARGEFILE) ***
2111         dnl ******************************************************************
2112         
2113         # Check that off_t can represent 2**63 - 1 correctly, working around
2114         # potential compiler bugs.  Defines LARGE_FILE_SUPPORT, adds $1 to
2115         # CPPFLAGS and sets $large_offt to yes if the test succeeds
2116         large_offt=no
2117         AC_DEFUN([LARGE_FILES], [
2118                 large_CPPFLAGS=$CPPFLAGS
2119                 CPPFLAGS="$CPPFLAGS $1"
2120                 AC_TRY_COMPILE([
2121                         #include <sys/types.h>
2122                         #include <limits.h>
2123                 ], [
2124                         /* Lifted this compile time assert method from: http://www.jaggersoft.com/pubs/CVu11_3.html */
2125                         #define COMPILE_TIME_ASSERT(pred) \
2126                                 switch(0){case 0:case pred:;}
2127                         COMPILE_TIME_ASSERT(sizeof(off_t) * CHAR_BIT == 64);
2128                 ], [
2129                         AC_MSG_RESULT(ok)
2130                         AC_DEFINE(HAVE_LARGE_FILE_SUPPORT, 1, [Have large file support])
2131                         large_CPPFLAGS="$large_CPPFLAGS $1"
2132                         large_offt=yes
2133                 ], [
2134                         AC_MSG_RESULT(no)
2135                 ])
2136                 CPPFLAGS=$large_CPPFLAGS
2137         ])
2139         AC_MSG_CHECKING(if off_t is 64 bits wide)
2140         LARGE_FILES("")
2141         if test $large_offt = no; then
2142                 AC_MSG_CHECKING(if _FILE_OFFSET_BITS=64 gives 64 bit off_t)
2143                 LARGE_FILES("-D_FILE_OFFSET_BITS=64")
2144         fi
2145         if test $large_offt = no; then
2146                 AC_MSG_WARN([No 64 bit file size support available])
2147         fi
2148         
2149         dnl *****************************
2150         dnl *** Checks for libsocket  ***
2151         dnl *****************************
2152         AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")
2154         case "$host" in
2155                 *-*-*freebsd*)
2156                         dnl *****************************
2157                         dnl *** Checks for libinotify ***
2158                         dnl *****************************
2159                         AC_CHECK_LIB(inotify, inotify_init, LIBS="$LIBS -linotify")
2160         esac
2162         dnl *******************************
2163         dnl *** Checks for MSG_NOSIGNAL ***
2164         dnl *******************************
2165         AC_MSG_CHECKING(for MSG_NOSIGNAL)
2166         AC_TRY_COMPILE([#include <sys/socket.h>], [
2167                 int f = MSG_NOSIGNAL;
2168         ], [
2169                 # Yes, we have it...
2170                 AC_MSG_RESULT(yes)
2171                 AC_DEFINE(HAVE_MSG_NOSIGNAL, 1, [Have MSG_NOSIGNAL])
2172         ], [
2173                 # We'll have to use signals
2174                 AC_MSG_RESULT(no)
2175         ])
2177         dnl *****************************
2178         dnl *** Checks for IPPROTO_IP ***
2179         dnl *****************************
2180         AC_MSG_CHECKING(for IPPROTO_IP)
2181         AC_TRY_COMPILE([#include <netinet/in.h>], [
2182                 int level = IPPROTO_IP;
2183         ], [
2184                 # Yes, we have it...
2185                 AC_MSG_RESULT(yes)
2186                 AC_DEFINE(HAVE_IPPROTO_IP, 1, [Have IPPROTO_IP])
2187         ], [
2188                 # We'll have to use getprotobyname
2189                 AC_MSG_RESULT(no)
2190         ])
2192         dnl *******************************
2193         dnl *** Checks for IPPROTO_IPV6 ***
2194         dnl *******************************
2195         AC_MSG_CHECKING(for IPPROTO_IPV6)
2196         AC_TRY_COMPILE([#include <netinet/in.h>], [
2197                 int level = IPPROTO_IPV6;
2198         ], [
2199                 # Yes, we have it...
2200                 AC_MSG_RESULT(yes)
2201                 AC_DEFINE(HAVE_IPPROTO_IPV6, 1, [Have IPPROTO_IPV6])
2202         ], [
2203                 # We'll have to use getprotobyname
2204                 AC_MSG_RESULT(no)
2205         ])
2207         dnl ******************************
2208         dnl *** Checks for IPPROTO_TCP ***
2209         dnl ******************************
2210         AC_MSG_CHECKING(for IPPROTO_TCP)
2211         AC_TRY_COMPILE([#include <netinet/in.h>], [
2212                 int level = IPPROTO_TCP;
2213         ], [
2214                 # Yes, we have it...
2215                 AC_MSG_RESULT(yes)
2216                 AC_DEFINE(HAVE_IPPROTO_TCP, 1, [Have IPPROTO_TCP])
2217         ], [
2218                 # We'll have to use getprotobyname
2219                 AC_MSG_RESULT(no)
2220         ])
2222         dnl *****************************
2223         dnl *** Checks for SOL_IP     ***
2224         dnl *****************************
2225         AC_MSG_CHECKING(for SOL_IP)
2226         AC_TRY_COMPILE([#include <netdb.h>], [
2227                 int level = SOL_IP;
2228         ], [
2229                 # Yes, we have it...
2230                 AC_MSG_RESULT(yes)
2231                 AC_DEFINE(HAVE_SOL_IP, 1, [Have SOL_IP])
2232         ], [
2233                 # We'll have to use getprotobyname
2234                 AC_MSG_RESULT(no)
2235         ])
2237         dnl *****************************
2238         dnl *** Checks for SOL_IPV6     ***
2239         dnl *****************************
2240         AC_MSG_CHECKING(for SOL_IPV6)
2241         AC_TRY_COMPILE([#include <netdb.h>], [
2242                 int level = SOL_IPV6;
2243         ], [
2244                 # Yes, we have it...
2245                 AC_MSG_RESULT(yes)
2246                 AC_DEFINE(HAVE_SOL_IPV6, 1, [Have SOL_IPV6])
2247         ], [
2248                 # We'll have to use getprotobyname
2249                 AC_MSG_RESULT(no)
2250         ])
2252         dnl *****************************
2253         dnl *** Checks for SOL_TCP    ***
2254         dnl *****************************
2255         AC_MSG_CHECKING(for SOL_TCP)
2256         AC_TRY_COMPILE([#include <netdb.h>], [
2257                 int level = SOL_TCP;
2258         ], [
2259                 # Yes, we have it...
2260                 AC_MSG_RESULT(yes)
2261                 AC_DEFINE(HAVE_SOL_TCP, 1, [Have SOL_TCP])
2262         ], [
2263                 # We'll have to use getprotobyname
2264                 AC_MSG_RESULT(no)
2265         ])
2267         dnl *****************************
2268         dnl *** Checks for IP_PKTINFO ***
2269         dnl *****************************
2270         AC_MSG_CHECKING(for IP_PKTINFO)
2271         AC_TRY_COMPILE([#include <linux/in.h>], [
2272                 int level = IP_PKTINFO;
2273         ], [
2274                 # Yes, we have it...
2275                 AC_MSG_RESULT(yes)
2276                 AC_DEFINE(HAVE_IP_PKTINFO, 1, [Have IP_PKTINFO])
2277         ], [
2278                 AC_MSG_RESULT(no)
2279         ])
2281         dnl *****************************
2282         dnl *** Checks for IPV6_PKTINFO ***
2283         dnl *****************************
2284         AC_MSG_CHECKING(for IPV6_PKTINFO)
2285         AC_TRY_COMPILE([#include <netdb.h>], [
2286                 int level = IPV6_PKTINFO;
2287         ], [
2288                 # Yes, we have it...
2289                 AC_MSG_RESULT(yes)
2290                 AC_DEFINE(HAVE_IPV6_PKTINFO, 1, [Have IPV6_PKTINFO])
2291         ], [
2292                 AC_MSG_RESULT(no)
2293         ])
2295         dnl **********************************
2296         dnl *** Checks for IP_DONTFRAG     ***
2297         dnl **********************************
2298         AC_MSG_CHECKING(for IP_DONTFRAG)
2299         AC_TRY_COMPILE([#include <netinet/in.h>], [
2300                 int level = IP_DONTFRAG;
2301         ], [
2302                 # Yes, we have it...
2303                 AC_MSG_RESULT(yes)
2304                 AC_DEFINE(HAVE_IP_DONTFRAG, 1, [Have IP_DONTFRAG])
2305         ], [
2306                 AC_MSG_RESULT(no)
2307         ])
2309         dnl **********************************
2310         dnl *** Checks for IP_DONTFRAGMENT ***
2311         dnl **********************************
2312         AC_MSG_CHECKING(for IP_DONTFRAGMENT)
2313         AC_TRY_COMPILE([#include <Ws2ipdef.h>], [
2314                 int level = IP_DONTFRAGMENT;
2315         ], [
2316                 # Yes, we have it...
2317                 AC_MSG_RESULT(yes)
2318                 AC_DEFINE(HAVE_IP_DONTFRAGMENT, 1, [Have IP_DONTFRAGMENT])
2319         ], [
2320                 AC_MSG_RESULT(no)
2321         ])
2323         dnl **********************************
2324         dnl *** Checks for IP_MTU_DISCOVER ***
2325         dnl **********************************
2326         AC_MSG_CHECKING(for IP_MTU_DISCOVER)
2327         AC_TRY_COMPILE([#include <linux/in.h>], [
2328                 int level = IP_MTU_DISCOVER;
2329         ], [
2330                 # Yes, we have it...
2331                 AC_MSG_RESULT(yes)
2332                 AC_DEFINE(HAVE_IP_MTU_DISCOVER, 1, [Have IP_MTU_DISCOVER])
2333         ], [
2334                 AC_MSG_RESULT(no)
2335         ])
2337         dnl **********************************
2338         dnl *** Checks for  IP_PMTUDISC_DO ***
2339         dnl **********************************
2340         AC_MSG_CHECKING(for IP_PMTUDISC_DO)
2341         AC_TRY_COMPILE([#include <linux/in.h>], [
2342                 int level = IP_PMTUDISC_DO;
2343         ], [
2344                 # Yes, we have it...
2345                 AC_MSG_RESULT(yes)
2346                 AC_DEFINE(HAVE_IP_PMTUDISC_DO, 1, [Have IP_PMTUDISC_DO])
2347         ], [
2348                 AC_MSG_RESULT(no)
2349         ])
2351         dnl *********************************
2352         dnl *** Check for struct ip_mreqn ***
2353         dnl *********************************
2354         AC_MSG_CHECKING(for struct ip_mreqn)
2355         AC_TRY_COMPILE([#include <netinet/in.h>], [
2356                 struct ip_mreqn mreq;
2357                 mreq.imr_address.s_addr = 0;
2358         ], [
2359                 # Yes, we have it...
2360                 AC_MSG_RESULT(yes)
2361                 AC_DEFINE(HAVE_STRUCT_IP_MREQN, 1, [Have struct ip_mreqn])
2362         ], [
2363                 # We'll just have to try and use struct ip_mreq
2364                 AC_MSG_RESULT(no)
2365                 AC_MSG_CHECKING(for struct ip_mreq)
2366                 AC_TRY_COMPILE([#include <netinet/in.h>], [
2367                         struct ip_mreq mreq;
2368                         mreq.imr_interface.s_addr = 0;
2369                 ], [
2370                         # Yes, we have it...
2371                         AC_MSG_RESULT(yes)
2372                         AC_DEFINE(HAVE_STRUCT_IP_MREQ, 1, [Have struct ip_mreq])
2373                 ], [
2374                         # No multicast support
2375                         AC_MSG_RESULT(no)
2376                 ])
2377         ])
2378         
2379         dnl **********************************
2380         dnl *** Check for getaddrinfo ***
2381         dnl **********************************
2382         AC_MSG_CHECKING(for getaddrinfo)
2383                 AC_TRY_LINK([
2384                 #include <stdio.h>
2385                 #include <netdb.h>
2386         ], [
2387                 getaddrinfo(NULL,NULL,NULL,NULL);
2388         ], [
2389                 # Yes, we have it...
2390                 AC_MSG_RESULT(yes)
2391                 AC_DEFINE(HAVE_GETADDRINFO, 1, [Have getaddrinfo])
2392         ], [
2393                 AC_MSG_RESULT(no)
2394         ])
2396         dnl **********************************
2397         dnl *** Check for gethostbyname2_r ***
2398         dnl **********************************
2399         AC_MSG_CHECKING(for gethostbyname2_r)
2400                 AC_TRY_LINK([
2401                 #include <stdio.h>
2402                 #include <netdb.h>
2403         ], [
2405                 gethostbyname2_r(NULL,0,NULL,NULL,0,NULL,NULL);
2406         ], [
2407                 # Yes, we have it...
2408                 AC_MSG_RESULT(yes)
2409                 AC_DEFINE(HAVE_GETHOSTBYNAME2_R, 1, [Have gethostbyname2_r])
2410         ], [
2411                 AC_MSG_RESULT(no)
2412         ])
2414         dnl **********************************
2415         dnl *** Check for gethostbyname2 ***
2416         dnl **********************************
2417         AC_MSG_CHECKING(for gethostbyname2)
2418                 AC_TRY_LINK([
2419                 #include <stdio.h>
2420                 #include <netdb.h>
2421         ], [
2422                 gethostbyname2(NULL,0);
2423         ], [
2424                 # Yes, we have it...
2425                 AC_MSG_RESULT(yes)
2426                 AC_DEFINE(HAVE_GETHOSTBYNAME2, 1, [Have gethostbyname2])
2427         ], [
2428                 AC_MSG_RESULT(no)
2429         ])
2431         dnl **********************************
2432         dnl *** Check for gethostbyname ***
2433         dnl **********************************
2434         AC_MSG_CHECKING(for gethostbyname)
2435                 AC_TRY_LINK([
2436                 #include <stdio.h>
2437                 #include <netdb.h>
2438         ], [
2439                 gethostbyname(NULL);
2440         ], [
2441                 # Yes, we have it...
2442                 AC_MSG_RESULT(yes)
2443                 AC_DEFINE(HAVE_GETHOSTBYNAME, 1, [Have gethostbyname])
2444         ], [
2445                 AC_MSG_RESULT(no)
2446         ])
2448         dnl **********************************
2449         dnl *** Check for getprotobyname ***
2450         dnl **********************************
2451         AC_MSG_CHECKING(for getprotobyname)
2452                 AC_TRY_LINK([
2453                 #include <stdio.h>
2454                 #include <netdb.h>
2455         ], [
2456                 getprotobyname(NULL);
2457         ], [
2458                 # Yes, we have it...
2459                 AC_MSG_RESULT(yes)
2460                 AC_DEFINE(HAVE_GETPROTOBYNAME, 1, [Have getprotobyname])
2461         ], [
2462                 AC_MSG_RESULT(no)
2463         ])
2465         dnl **********************************
2466         dnl *** Check for getprotobyname_r ***
2467         dnl **********************************
2468         AC_MSG_CHECKING(for getprotobyname_r)
2469                 AC_TRY_LINK([
2470                 #include <stdio.h>
2471                 #include <netdb.h>
2472         ], [
2473                 getprotobyname_r(NULL, NULL, NULL, 0, NULL);
2474         ], [
2475                 # Yes, we have it...
2476                 AC_MSG_RESULT(yes)
2477                 AC_DEFINE(HAVE_GETPROTOBYNAME_R, 1, [Have getprotobyname_r])
2478         ], [
2479                 AC_MSG_RESULT(no)
2480         ])
2482         dnl **********************************
2483         dnl *** Check for getnameinfo ***
2484         dnl **********************************
2485         AC_MSG_CHECKING(for getnameinfo)
2486                 AC_TRY_LINK([
2487                 #include <stdio.h>
2488                 #include <netdb.h>
2489         ], [
2490                 getnameinfo (NULL, 0, NULL, 0, NULL, 0, 0);
2491         ], [
2492                 # Yes, we have it...
2493                 AC_MSG_RESULT(yes)
2494                 AC_DEFINE(HAVE_GETNAMEINFO, 1, [Have getnameinfo])
2495         ], [
2496                 AC_MSG_RESULT(no)
2497         ])
2500         dnl **********************************
2501         dnl *** Check for inet_ntop ***
2502         dnl **********************************
2503         AC_MSG_CHECKING(for inet_ntop)
2504                 AC_TRY_LINK([
2505                 #include <stdio.h>
2506                 #include <arpa/inet.h>
2507         ], [
2508                 inet_ntop (0, NULL, NULL, 0);
2509         ], [
2510                 # Yes, we have it...
2511                 AC_MSG_RESULT(yes)
2512                 AC_DEFINE(HAVE_INET_NTOP, 1, [Have inet_ntop])
2513         ], [
2514                 AC_MSG_RESULT(no)
2515         ])
2517         dnl *****************************
2518         dnl *** Checks for libnsl     ***
2519         dnl *****************************
2520         AC_CHECK_FUNC(gethostbyaddr, , AC_CHECK_LIB(nsl, gethostbyaddr, LIBS="$LIBS -lnsl"))
2522         AC_CHECK_FUNCS(inet_pton inet_aton)
2524         dnl *****************************
2525         dnl *** Checks for libxnet    ***
2526         dnl *****************************
2527         case "${host}" in
2528                 *solaris* )
2529                         AC_MSG_CHECKING(for Solaris XPG4 support)
2530                         if test -f /usr/lib/libxnet.so; then
2531                                 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=500"
2532                                 CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
2533                                 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED=1"
2534                                 LIBS="$LIBS -lxnet"
2535                                 AC_MSG_RESULT(yes)
2536                         else
2537                                 AC_MSG_RESULT(no)
2538                         fi
2540                         if test "$GCC" = "yes"; then
2541                                 CFLAGS="$CFLAGS -Wno-char-subscripts"
2542                         fi
2543                 ;;
2544         esac
2546         dnl *****************************
2547         dnl *** Checks for libpthread ***
2548         dnl *****************************
2549 # on FreeBSD -STABLE, the pthreads functions all reside in libc_r
2550 # and libpthread does not exist
2552         case "${host}" in
2553                 *-*-*haiku*)
2554                         dnl Haiku has pthread in libroot (libc equiv)
2555                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS")
2556                 ;;
2557                 *-*-*freebsd*)
2558                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
2559                 ;;
2560                 *-*-*openbsd*)
2561                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
2562                 ;;
2563                 *)
2564                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -lpthread")
2565                 ;;
2566         esac
2567         AC_CHECK_HEADERS(pthread.h)
2568         AC_CHECK_HEADERS(pthread_np.h)
2569         AC_CHECK_FUNCS(pthread_mutex_timedlock)
2570         AC_CHECK_FUNCS(pthread_getattr_np pthread_attr_get_np pthread_getname_np pthread_setname_np pthread_cond_timedwait_relative_np)
2571         AC_CHECK_FUNCS(pthread_kill)
2572         AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE)
2573         AC_TRY_COMPILE([ #include <pthread.h>], [
2574                 pthread_mutexattr_t attr;
2575                 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
2576         ], [
2577                 AC_MSG_RESULT(ok)
2578         ], [
2579                 AC_MSG_RESULT(no)
2580                 AC_ERROR(Posix system lacks support for recursive mutexes)
2581         ])
2582         AC_CHECK_FUNCS(pthread_attr_setstacksize)
2583         AC_CHECK_FUNCS(pthread_attr_getstack pthread_attr_getstacksize)
2584         AC_CHECK_FUNCS(pthread_get_stacksize_np pthread_get_stackaddr_np)
2585         AC_CHECK_FUNCS(mincore mlock munlock)
2587         dnl ***********************************
2588         dnl *** Checks for working __thread ***
2589         dnl ***********************************
2590         AC_MSG_CHECKING(for working __thread)
2591         if test "x$with_tls" != "x__thread"; then
2592                 AC_MSG_RESULT(disabled)
2593         elif test "x$cross_compiling" = "xyes"; then
2594                 AC_MSG_RESULT(cross compiling, assuming yes)
2595         else
2596                 AC_TRY_RUN([
2597                         #if defined(__APPLE__) && defined(__clang__)
2598                         #error "__thread does not currently work with clang on Mac OS X"
2599                         #endif
2600                         
2601                         #include <unistd.h>
2602                         #include <pthread.h>
2603                         __thread int i;
2604                         static int res1, res2;
2606                         void thread_main (void *arg)
2607                         {
2608                                 i = arg;
2609                                 sleep (1);
2610                                 if (arg == 1)
2611                                         res1 = (i == arg);
2612                                 else
2613                                         res2 = (i == arg);
2614                         }
2616                         int main () {
2617                                 pthread_t t1, t2;
2619                                 i = 5;
2621                                 pthread_create (&t1, NULL, thread_main, 1);
2622                                 pthread_create (&t2, NULL, thread_main, 2);
2624                                 pthread_join (t1, NULL);
2625                                 pthread_join (t2, NULL);
2627                                 return !(res1 + res2 == 2);
2628                         }
2629                 ], [
2630                                 AC_MSG_RESULT(yes)
2631                 ], [
2632                                 AC_MSG_RESULT(no)
2633                                 with_tls=pthread
2634                 ])
2635         fi
2637         dnl **************************************
2638         dnl *** Checks for working sigaltstack ***
2639         dnl **************************************
2640         AC_MSG_CHECKING(for working sigaltstack)
2641         if test "x$with_sigaltstack" != "xyes"; then
2642                 AC_MSG_RESULT(disabled)
2643         elif test "x$cross_compiling" = "xyes"; then
2644                 AC_MSG_RESULT(cross compiling, assuming no)
2645                 with_sigaltstack=no
2646         else
2647                 AC_TRY_RUN([
2648                         #include <stdio.h>
2649                         #include <stdlib.h>
2650                         #include <unistd.h>
2651                         #include <signal.h>
2652                         #include <pthread.h>
2653                         #include <sys/wait.h>
2654                         #if defined(__FreeBSD__) || defined(__NetBSD__)
2655                         #define SA_STACK SA_ONSTACK
2656                         #endif
2657                         static void
2658                         sigsegv_signal_handler (int _dummy, siginfo_t *info, void *context)
2659                         {
2660                                 exit (0);
2661                         }
2663                         volatile char*__ptr = NULL;
2664                         static void *
2665                         loop (void *ignored)
2666                         {
2667                                 *__ptr = 0;
2668                                 return NULL;
2669                         }
2671                         static void
2672                         child ()
2673                         {
2674                                 struct sigaction sa;
2675                                 stack_t sas;
2676                                 pthread_t id;
2677                                 pthread_attr_t attr;
2679                                 sa.sa_sigaction = sigsegv_signal_handler;
2680                                 sigemptyset (&sa.sa_mask);
2681                                 sa.sa_flags = SA_SIGINFO | SA_ONSTACK;
2682                                 if (sigaction (SIGSEGV, &sa, NULL) == -1) {
2683                                         perror ("sigaction");
2684                                         return;
2685                                 }
2687                                 /* x86 darwin deliver segfaults using SIGBUS */
2688                                 if (sigaction (SIGBUS, &sa, NULL) == -1) {
2689                                         perror ("sigaction");
2690                                         return;
2691                                 }
2692                                 sas.ss_sp = malloc (SIGSTKSZ);
2693                                 sas.ss_size = SIGSTKSZ;
2694                                 sas.ss_flags = 0;
2695                                 if (sigaltstack (&sas, NULL) == -1) {
2696                                         perror ("sigaltstack");
2697                                         return;
2698                                 }
2700                                 pthread_attr_init (&attr);
2701                                 if (pthread_create(&id, &attr, loop, &attr) != 0) {
2702                                         printf ("pthread_create\n");
2703                                         return;
2704                                 }
2706                                 sleep (100);
2707                         }
2709                         int
2710                         main ()
2711                         {
2712                                 pid_t son;
2713                                 int status;
2714                                 int i;
2716                                 son = fork ();
2717                                 if (son == -1) {
2718                                         return 1;
2719                                 }
2721                                 if (son == 0) {
2722                                         child ();
2723                                         return 0;
2724                                 }
2726                                 for (i = 0; i < 300; ++i) {
2727                                         waitpid (son, &status, WNOHANG);
2728                                         if (WIFEXITED (status) && WEXITSTATUS (status) == 0)
2729                                                 return 0;
2730                                         usleep (10000);
2731                                 }
2733                                 kill (son, SIGKILL);
2734                                 return 1;
2735                         }
2737                 ], [
2738                                 AC_MSG_RESULT(yes)
2739                                 AC_DEFINE(HAVE_WORKING_SIGALTSTACK, 1, [Have a working sigaltstack])
2740                 ], [
2741                                 with_sigaltstack=no
2742                                 AC_MSG_RESULT(no)
2743                 ])
2744         fi
2746         dnl ********************************
2747         dnl *** Checks for semaphore lib ***
2748         dnl ********************************
2749         # 'Real Time' functions on Solaris
2750         # posix4 on Solaris 2.6
2751         # pthread (first!) on Linux
2752         AC_SEARCH_LIBS(sem_init, pthread rt posix4) 
2754         AC_SEARCH_LIBS(shm_open, pthread rt posix4) 
2755         AC_CHECK_FUNCS(shm_open)
2757         dnl ********************************
2758         dnl *** Checks for timezone stuff **
2759         dnl ********************************
2760         AC_CACHE_CHECK(for tm_gmtoff in struct tm, ac_cv_struct_tm_gmtoff,
2761                 AC_TRY_COMPILE([
2762                         #include <time.h>
2763                         ], [
2764                         struct tm tm;
2765                         tm.tm_gmtoff = 1;
2766                         ], ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no))
2767         if test $ac_cv_struct_tm_gmtoff = yes; then
2768                 AC_DEFINE(HAVE_TM_GMTOFF, 1, [Have tm_gmtoff])
2769         else
2770                 AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone,
2771                         AC_TRY_COMPILE([
2772                                 #include <time.h>
2773                         ], [
2774                                 timezone = 1;
2775                         ], ac_cv_var_timezone=yes, ac_cv_var_timezone=no))
2776                 if test $ac_cv_var_timezone = yes; then
2777                         AC_DEFINE(HAVE_TIMEZONE, 1, [Have timezone variable])
2778                 else
2779                         AC_ERROR(unable to find a way to determine timezone)
2780                 fi
2781         fi
2783         dnl *********************************
2784         dnl *** Checks for math functions ***
2785         dnl *********************************
2786         AC_SEARCH_LIBS(sqrtf, m)
2788         dnl ****************************************************************
2789         dnl *** Checks for working poll() (macosx defines it but doesn't ***
2790         dnl *** have it in the library (duh))                            ***
2791         dnl ****************************************************************
2792         AC_CHECK_FUNCS(poll)
2794         dnl **********************************
2795         dnl *** epoll                      ***
2796         dnl **********************************
2797         AC_CHECK_HEADERS(sys/epoll.h)
2798         haveepoll=no
2799         AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], )
2800         if test "x$haveepoll" = "xyes" -a "x$ac_cv_header_sys_epoll_h" = "xyes"; then
2801                 AC_DEFINE(HAVE_EPOLL, 1, [epoll supported])
2802         fi
2804         havekqueue=no
2806         AC_CHECK_HEADERS(sys/event.h)
2807         AC_CHECK_FUNCS(kqueue, [havekqueue=yes], )
2809         dnl **************************************
2810         dnl * Darwin has a race that prevents us from using reliably:
2811         dnl * http://lists.apple.com/archives/darwin-dev/2011/Jun/msg00016.html
2812         dnl * Since kqueue is mostly used for scaling large web servers, 
2813         dnl * and very few folks run Mono on large web servers on OSX, falling
2814         dnl * back 
2815         dnl **************************************
2816         if test "x$havekqueue" = "xyes" -a "x$ac_cv_header_sys_event_h" = "xyes"; then
2817                 if test "x$host_darwin" = "xno"; then
2818                         AC_DEFINE(USE_KQUEUE_FOR_THREADPOOL, 1, [Use kqueue for the threadpool])
2819                 fi
2820         fi
2822         dnl ******************************
2823         dnl *** Checks for SIOCGIFCONF ***
2824         dnl ******************************
2825         AC_CHECK_HEADERS(sys/ioctl.h)
2826         AC_CHECK_HEADERS(net/if.h, [], [],
2827            [
2828            #ifdef HAVE_SYS_TYPES_H
2829            # include <sys/types.h>
2830            #endif
2831            #ifdef HAVE_SYS_SOCKET_H
2832            # include <sys/socket.h>
2833            #endif
2834            ])
2835         AC_MSG_CHECKING(for ifreq)
2836         AC_TRY_COMPILE([
2837                 #include <stdio.h>
2838                 #include <sys/ioctl.h>
2839                 #include <net/if.h>
2840                 ], [
2841                 struct ifconf ifc;
2842                 struct ifreq *ifr;
2843                 void *x;
2844                 ifc.ifc_len = 0;
2845                 ifc.ifc_buf = NULL;
2846                 x = (void *) &ifr->ifr_addr;
2847                 ],[
2848                         AC_MSG_RESULT(yes)
2849                         AC_DEFINE(HAVE_SIOCGIFCONF, 1, [Can get interface list])
2850                 ], [
2851                         AC_MSG_RESULT(no)
2852                 ])
2853         dnl **********************************
2854         dnl ***     Checks for sin_len     ***
2855         dnl **********************************
2856         AC_MSG_CHECKING(for sockaddr_in.sin_len)
2857         AC_TRY_COMPILE([
2858                 #include <netinet/in.h>
2859                 ], [
2860                 struct sockaddr_in saddr;
2861                 saddr.sin_len = sizeof (saddr);
2862                 ],[
2863                         AC_MSG_RESULT(yes)
2864                         AC_DEFINE(HAVE_SOCKADDR_IN_SIN_LEN, 1, [sockaddr_in has sin_len])
2865                 ], [
2866                         AC_MSG_RESULT(no)
2867                 ])      
2868         dnl **********************************
2869         dnl ***    Checks for sin6_len     ***
2870         dnl **********************************
2871         AC_MSG_CHECKING(for sockaddr_in6.sin6_len)
2872         AC_TRY_COMPILE([
2873                 #include <netinet/in.h>
2874                 ], [
2875                 struct sockaddr_in6 saddr6;
2876                 saddr6.sin6_len = sizeof (saddr6);
2877                 ],[
2878                         AC_MSG_RESULT(yes)
2879                         AC_DEFINE(HAVE_SOCKADDR_IN6_SIN_LEN, 1, [sockaddr_in6 has sin6_len])
2880                 ], [
2881                         AC_MSG_RESULT(no)
2882                 ])
2883         dnl **********************************
2884         dnl *** Check for getifaddrs       ***
2885         dnl **********************************
2886         AC_MSG_CHECKING(for getifaddrs)
2887                 AC_TRY_LINK([
2888                 #include <stdio.h>
2889                 #include <sys/types.h>
2890                 #include <sys/socket.h>
2891                 #ifdef HAVE_NET_IF_H
2892                 #include <net/if.h>
2893                 #endif
2894                 #include <ifaddrs.h>
2895         ], [
2896                 getifaddrs(NULL);
2897         ], [
2898                 # Yes, we have it...
2899                 AC_MSG_RESULT(yes)
2900                 AC_DEFINE(HAVE_GETIFADDRS, 1, [Have getifaddrs])
2901         ], [
2902                 AC_MSG_RESULT(no)
2903         ])
2904         dnl **********************************
2905         dnl *** Check for if_nametoindex   ***
2906         dnl **********************************
2907         AC_MSG_CHECKING(for if_nametoindex)
2908                 AC_TRY_LINK([
2909                 #include <stdio.h>
2910                 #include <sys/types.h>
2911                 #include <sys/socket.h>
2912                 #include <net/if.h>
2913         ], [
2914                 if_nametoindex(NULL);
2915         ], [
2916                 # Yes, we have it...
2917                 AC_MSG_RESULT(yes)
2918                 AC_DEFINE(HAVE_IF_NAMETOINDEX, 1, [Have if_nametoindex])
2919         ], [
2920                 AC_MSG_RESULT(no)
2921         ])
2922         dnl **********************************
2923         dnl *** Check for access ***
2924         dnl **********************************
2925         AC_MSG_CHECKING(for access)
2926                 AC_TRY_LINK([
2927                 #include <unistd.h>
2928         ], [
2929                 access(NULL,0);
2930         ], [
2931                 # Yes, we have it...
2932                 AC_MSG_RESULT(yes)
2933                 AC_DEFINE(HAVE_ACCESS, 1, [Have access])
2934         ], [
2935                 AC_MSG_RESULT(no)
2936         ])
2937                         
2938         dnl **********************************
2939         dnl *** Checks for proclib         ***
2940         dnl **********************************
2941         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.)])
2942         dnl **********************************
2943         dnl *** Checks for MonoPosixHelper ***
2944         dnl **********************************
2945         AC_CHECK_HEADERS(checklist.h)
2946         AC_CHECK_HEADERS(pathconf.h)
2947         AC_CHECK_HEADERS(fstab.h)
2948         AC_CHECK_HEADERS(attr/xattr.h)
2949         AC_CHECK_HEADERS(sys/extattr.h)
2950         AC_CHECK_HEADERS(sys/sendfile.h)
2951         AC_CHECK_HEADERS(sys/statvfs.h)
2952         AC_CHECK_HEADERS(sys/statfs.h)
2953         AC_CHECK_HEADERS(sys/vfstab.h)
2954         AC_CHECK_HEADERS(sys/xattr.h)
2955         AC_CHECK_HEADERS(sys/mman.h)
2956         AC_CHECK_HEADERS(sys/param.h)
2957         AC_CHECK_HEADERS(sys/mount.h, [], [],
2958                 [
2959                 #ifdef HAVE_SYS_PARAM_H
2960                 # include <sys/param.h>
2961                 #endif
2962                 ])
2963         AC_CHECK_HEADERS(sys/mount.h)
2964         AC_CHECK_FUNCS(confstr)
2965         AC_CHECK_FUNCS(seekdir telldir)
2966         AC_CHECK_FUNCS(getdomainname)
2967         AC_CHECK_FUNCS(setdomainname)
2968         AC_CHECK_FUNCS(endgrent getgrent fgetgrent setgrent)
2969         AC_CHECK_FUNCS(setgroups)
2970         AC_CHECK_FUNCS(endpwent getpwent fgetpwent setpwent)
2971         AC_CHECK_FUNCS(getfsstat)
2972         AC_CHECK_FUNCS(lutimes futimes)
2973         AC_CHECK_FUNCS(mremap)
2974         AC_CHECK_FUNCS(remap_file_pages)
2975         AC_CHECK_FUNCS(posix_fadvise)
2976         AC_CHECK_FUNCS(posix_fallocate)
2977         AC_CHECK_FUNCS(posix_madvise)
2978         AC_CHECK_FUNCS(vsnprintf)
2979         AC_CHECK_FUNCS(sendfile)
2980         AC_CHECK_FUNCS(gethostid sethostid)
2981         AC_CHECK_FUNCS(sethostname)
2982         AC_CHECK_FUNCS(statfs)
2983         AC_CHECK_FUNCS(fstatfs)
2984         AC_CHECK_FUNCS(statvfs)
2985         AC_CHECK_FUNCS(fstatvfs)
2986         AC_CHECK_FUNCS(stime)
2987         AC_CHECK_FUNCS(ttyname_r)
2988         AC_CHECK_FUNCS(psignal)
2989         AC_CHECK_FUNCS(getlogin_r)
2990         AC_CHECK_FUNCS(lockf)
2991         AC_CHECK_FUNCS(swab)
2992         AC_CHECK_FUNCS(setusershell endusershell)
2993         AC_CHECK_FUNCS(futimens utimensat)
2994         AC_CHECK_FUNCS(fstatat mknodat readlinkat)
2995         AC_CHECK_FUNCS(readv writev preadv pwritev)
2996         AC_CHECK_FUNCS(setpgid)
2997         AC_CHECK_FUNCS(system)
2998         AC_CHECK_FUNCS(fork execv execve)
2999         AC_CHECK_FUNCS(waitpid)
3000         AC_CHECK_FUNCS(accept4)
3001         AC_CHECK_FUNCS(localtime_r)
3002         AC_CHECK_FUNCS(mkdtemp)
3003         AC_CHECK_SIZEOF(size_t)
3004         AC_CHECK_TYPES([blksize_t], [AC_DEFINE(HAVE_BLKSIZE_T)], , 
3005                 [#include <sys/types.h>
3006                  #include <sys/stat.h>
3007                  #include <unistd.h>])
3008         AC_CHECK_TYPES([blkcnt_t], [AC_DEFINE(HAVE_BLKCNT_T)], ,
3009                 [#include <sys/types.h>
3010                  #include <sys/stat.h>
3011                  #include <unistd.h>])
3012         AC_CHECK_TYPES([suseconds_t], [AC_DEFINE(HAVE_SUSECONDS_T)], ,
3013                 [#include <sys/time.h>])
3014         AC_CHECK_TYPES([struct cmsghdr], [AC_DEFINE(HAVE_STRUCT_CMSGHDR)], ,
3015                 [#include <sys/socket.h>])
3016         AC_CHECK_TYPES([struct flock], [AC_DEFINE(HAVE_STRUCT_FLOCK)], ,
3017                 [#include <unistd.h>
3018                  #include <fcntl.h>])
3019         AC_CHECK_TYPES([struct iovec], [AC_DEFINE(HAVE_STRUCT_IOVEC)], ,
3020                 [#include <sys/uio.h>])
3021         AC_CHECK_TYPES([struct linger], [AC_DEFINE(HAVE_STRUCT_LINGER)], ,
3022                 [#include <sys/socket.h>])
3023         AC_CHECK_TYPES([struct pollfd], [AC_DEFINE(HAVE_STRUCT_POLLFD)], ,
3024                 [#include <sys/poll.h>])
3025         AC_CHECK_TYPES([struct sockaddr], [AC_DEFINE(HAVE_STRUCT_SOCKADDR)], ,
3026                 [#include <sys/socket.h>])
3027         AC_CHECK_TYPES([struct sockaddr_storage], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)], ,
3028                 [#include <sys/socket.h>])
3029         AC_CHECK_TYPES([struct sockaddr_in], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN)], ,
3030                 [#include <netinet/in.h>])
3031         AC_CHECK_TYPES([struct sockaddr_in6], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)], ,
3032                 [#include <netinet/in.h>])
3033         AC_CHECK_TYPES([struct sockaddr_un], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_UN)], ,
3034                 [#include <sys/un.h>])
3035         AC_CHECK_TYPES([struct stat], [AC_DEFINE(HAVE_STRUCT_STAT)], ,
3036                 [#include <sys/types.h>
3037                  #include <sys/stat.h>
3038                  #include <unistd.h>])
3039         AC_CHECK_TYPES([struct timespec], [AC_DEFINE(HAVE_STRUCT_TIMESPEC)], ,
3040                 [#include <time.h>])
3041         AC_CHECK_TYPES([struct timeval], [AC_DEFINE(HAVE_STRUCT_TIMEVAL)], ,
3042                 [#include <sys/time.h>
3043                  #include <sys/types.h>
3044                  #include <utime.h>])
3045         AC_CHECK_TYPES([struct timezone], [AC_DEFINE(HAVE_STRUCT_TIMEZONE)], ,
3046                 [#include <sys/time.h>])
3047         AC_CHECK_TYPES([struct utimbuf], [AC_DEFINE(HAVE_STRUCT_UTIMBUF)], ,
3048                 [#include <sys/types.h>
3049                  #include <utime.h>])
3050         AC_CHECK_MEMBERS(
3051                 [struct dirent.d_off, struct dirent.d_reclen, struct dirent.d_type],,, 
3052                 [#include <sys/types.h>
3053                  #include <dirent.h>])
3054         AC_CHECK_MEMBERS(
3055                 [struct passwd.pw_gecos],,, 
3056                 [#include <sys/types.h>
3057                  #include <pwd.h>])
3058         AC_CHECK_MEMBERS(
3059                 [struct statfs.f_flags],,, 
3060                 [#include <sys/types.h>
3061                  #include <sys/vfs.h>])
3062         AC_CHECK_MEMBERS(
3063                 [struct stat.st_atim, struct stat.st_mtim, struct stat.st_atimespec, struct stat.st_ctim],,, 
3064                 [#include <sys/types.h>
3065                  #include <sys/stat.h>
3066                  #include <unistd.h>])
3068         dnl Favour xattr through glibc, but use libattr if we have to
3069         AC_CHECK_FUNC(lsetxattr, ,
3070                 AC_CHECK_LIB(attr, lsetxattr, XATTR_LIB="-lattr",)
3071         )
3072         AC_SUBST(XATTR_LIB)
3074         dnl kinfo_proc.kp_proc works on darwin but fails on other simil-bsds
3075         AC_CHECK_MEMBERS(
3076                 [struct kinfo_proc.kp_proc],,, 
3077                 [#include <sys/types.h>
3078                  #include <sys/param.h>
3079                  #include <sys/sysctl.h>
3080                  #include <sys/proc.h>
3081                  ])
3083         dnl *********************************
3084         dnl *** Checks for Windows compilation ***
3085         dnl *********************************
3086         AC_CHECK_HEADERS(sys/time.h)
3087         AC_CHECK_HEADERS(sys/param.h)
3088         AC_CHECK_HEADERS(dirent.h)
3090         dnl ******************************************
3091         dnl *** Checks for OSX and iOS compilation ***
3092         dnl ******************************************
3093         AC_CHECK_HEADERS(CommonCrypto/CommonDigest.h)
3095         dnl *********************************
3096         dnl *** Check for Console 2.0 I/O ***
3097         dnl *********************************
3098         AC_CHECK_HEADERS([curses.h])
3099         AC_CHECK_HEADERS([term.h], [], [],
3100         [#if HAVE_CURSES_H
3101          #include <curses.h>
3102          #endif
3103         ])
3104         AC_CHECK_HEADERS([termios.h])
3106         dnl *********************************
3107         dnl *** Checks for random         ***
3108         dnl *********************************
3109         if test x$host_darwin = xno; then
3110                 AC_CHECK_HEADERS(sys/random.h)
3111                 AC_CHECK_FUNCS(getrandom getentropy)
3112         fi
3114         dnl *********************************
3115         dnl *** Checks for Mono.Native    ***
3116         dnl *********************************
3118         # Translated from CMake in external/corefx/src/Native/Unix/configure.cmake, keep in sync!
3119         # Note: check_c_source_compiles in CMake is AC_TRY_LINK in autoconf
3121         AC_MSG_CHECKING(for linux/in.h)
3122         AC_TRY_COMPILE([
3123                 #include <sys/socket.h>
3124                 #include <linux/in.h>
3125         ], [
3126         ],[
3127                 AC_MSG_RESULT(yes)
3128                 AC_DEFINE(HAVE_LINUX_IN_H, 1, [linux/in.h])
3129         ], [
3130                 AC_MSG_RESULT(no)
3131         ])
3133         AC_CHECK_HEADERS([linux/if_packet.h])
3135         AC_MSG_CHECKING(for struct in_pktinfo)
3136         AC_TRY_COMPILE([
3137                 #ifdef HAVE_LINUX_IN_H
3138                 #include <sys/socket.h>
3139                 #include <linux/in.h>
3140                 #else
3141                 #include <netinet/in.h>
3142                 #endif
3143         ], [
3144                 struct in_pktinfo pktinfo;
3145         ],[
3146                 AC_MSG_RESULT(yes)
3147                 AC_DEFINE(HAVE_IN_PKTINFO, 1, [struct in_pktinfo])
3148         ], [
3149                 AC_MSG_RESULT(no)
3150         ])
3152         AC_MSG_CHECKING(for struct ip_mreqn)
3153         AC_TRY_COMPILE([
3154                 #if HAVE_LINUX_IN_H
3155                 #include <sys/socket.h>
3156                 #include <linux/in.h>
3157                 #else
3158                 #include <netinet/in.h>
3159                 #endif
3160         ], [
3161                 struct ip_mreqn mreqn;
3162         ],[
3163                 AC_MSG_RESULT(yes)
3164                 AC_DEFINE(HAVE_IP_MREQN, 1, struct ip_mreqn)
3165         ], [
3166                 AC_MSG_RESULT(no)
3167         ])
3169         if test x$host_darwin = xno; then
3170                 AC_CHECK_TYPES([struct flock64], [AC_DEFINE(HAVE_FLOCK64, 1, struct flock64)], , [#include <fcntl.h>])
3171         fi
3173         AC_CHECK_DECL(O_CLOEXEC,         [AC_DEFINE(HAVE_O_CLOEXEC, 1, [O_CLOEXEC])], [], [[#include <fcntl.h>]])
3174         AC_CHECK_DECL(F_DUPFD_CLOEXEC,   [AC_DEFINE(HAVE_F_DUPFD_CLOEXEC, 1, [F_DUPFD_CLOEXEC])], [], [[#include <fcntl.h>]])
3176         # AC_CHECK_FUNC(getifaddrs,           [AC_DEFINE(HAVE_GETIFADDRS, 1, [getifaddrs])]) # already done above
3178         AC_CHECK_FUNC(lseek64,           [AC_DEFINE(HAVE_LSEEK64, 1, [lseek64])])
3179         AC_CHECK_FUNC(mmap64,            [AC_DEFINE(HAVE_MMAP64, 1, [mmap64])])
3180         AC_CHECK_FUNC(ftruncate64,       [AC_DEFINE(HAVE_FTRUNCATE64, 1, [ftruncate64])])
3181         AC_CHECK_FUNC(posix_fadvise64,   [AC_DEFINE(HAVE_POSIX_FADVISE64, 1, [posix_fadvise64])])
3183         if test "x$mono_native_platform_ios" = "xno"; then
3184                 # On iOS, `stat64()` is deprecated and there is no `struct stat64` and `stat()`
3185                 # is either 32-bit or 64-bit based on the device / simulator that you're running on.
3186                 AC_CHECK_FUNC(stat64,            [AC_DEFINE(HAVE_STAT64, 1, [stat64])])
3187         fi
3189         AC_CHECK_DECL(pipe2,             [AC_DEFINE(HAVE_PIPE2, 1, [pipe2])])
3190         AC_CHECK_FUNC(getmntinfo,        [AC_DEFINE(HAVE_GETMNTINFO, 1, [getmntinfo])], [], [[#include <unistd.h>]])
3191         AC_CHECK_FUNC(strcpy_s,          [AC_DEFINE(HAVE_STRCPY_S, 1, [strcpy_s])])
3192         AC_CHECK_FUNC(strlcpy,           [AC_DEFINE(HAVE_STRLCPY, 1, [strlcpy])])
3193         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
3194         AC_CHECK_FUNC(ioctl,             [AC_DEFINE(HAVE_IOCTL, 1, [ioctl])])
3195         AC_CHECK_FUNC(sched_getaffinity, [AC_DEFINE(HAVE_SCHED_GETAFFINITY, 1, [sched_getaffinity])])
3196         AC_CHECK_FUNC(sched_setaffinity, [AC_DEFINE(HAVE_SCHED_SETAFFINITY, 1, [sched_setaffinity])])
3198         if test "x$platform_android" != "xyes"; then
3199                 AC_CHECK_FUNC(arc4random_buf,    [AC_DEFINE(HAVE_ARC4RANDOM_BUF, 1, [arc4random_buf])])
3200         fi
3202         AC_CHECK_DECL(TIOCGWINSZ,        [AC_DEFINE(HAVE_TIOCGWINSZ, 1, [TIOCGWINSZ])], [], [[#include <sys/ioctl.h>]])
3203         AC_CHECK_FUNC(tcgetattr,         [AC_DEFINE(HAVE_TCGETATTR, 1, [tcgetattr])])
3204         AC_CHECK_FUNC(tcsetattr,         [AC_DEFINE(HAVE_TCSETATTR, 1, [tcsetattr])])
3205         AC_CHECK_DECL(ECHO,              [AC_DEFINE(HAVE_ECHO, 1, [ECHO])], [], [[#include <termios.h>]])
3206         AC_CHECK_DECL(ICANON,            [AC_DEFINE(HAVE_ICANON, 1, [ICANON])], [], [[#include <termios.h>]])
3207         AC_CHECK_DECL(TCSANOW,           [AC_DEFINE(HAVE_TCSANOW, 1, [TCSANOW])], [], [[#include <termios.h>]])
3209         AC_CHECK_MEMBER(struct stat.st_birthtimespec, [AC_DEFINE(HAVE_STAT_BIRTHTIME, 1, [struct stat.st_birthtime])], [], [[#include <sys/types.h>], [#include <sys/stat.h>]])
3210         AC_CHECK_MEMBER(struct stat.st_atimespec,     [AC_DEFINE(HAVE_STAT_TIMESPEC, 1, [struct stat.st_atimespec])], [], [[#include <sys/types.h>], [#include <sys/stat.h>]])
3211         AC_CHECK_MEMBER(struct stat.st_atim,          [AC_DEFINE(HAVE_STAT_TIM, 1, [struct stat.st_atim])], [], [[#include <sys/types.h>], [#include <sys/stat.h>]])
3212         AC_CHECK_MEMBER(struct stat.st_atimensec,     [AC_DEFINE(HAVE_STAT_NSEC, 1, [struct stat.st_atimensec])], [], [[#include <sys/types.h>], [#include <sys/stat.h>]])
3213         AC_CHECK_MEMBER(struct dirent.d_namlen,       [AC_DEFINE(HAVE_DIRENT_NAME_LEN, 1, [struct dirent.d_namlen])], [], [[#include <dirent.h>]])
3214         AC_CHECK_MEMBER(struct statfs.f_fstypename,   [AC_DEFINE(HAVE_STATFS_FSTYPENAME, 1, [struct statfs.f_fstypename])], [], [[#include <sys/mount.h>]])
3215         AC_CHECK_MEMBER(struct statvfs.f_fstypename,  [AC_DEFINE(HAVE_STATVFS_FSTYPENAME, 1, [struct statvfs.f_fstypename])], [], [[#include <sys/mount.h>]])
3217         AC_MSG_CHECKING(for struct statfs)
3218         AC_TRY_COMPILE([
3219                 #if defined(HAVE_STATFS_FSTYPENAME) || defined(HAVE_STATVFS_FSTYPENAME)
3220                 #include <sys/mount.h>
3221                 #else
3222                 #include <sys/statfs.h>
3223                 #endif
3224         ], [
3225                 struct statfs;
3226         ],[
3227                 AC_MSG_RESULT(yes)
3228                 AC_DEFINE(HAVE_STATFS, 1, [struct statfs])
3229         ], [
3230                 AC_MSG_RESULT(no)
3231         ])
3233         if test "x$ac_cv_func_strerror_r_char_p" = "xyes" ; then
3234                 AC_DEFINE(HAVE_GNU_STRERROR_R, 1, [char* strerror(int errnum, char *buf, size_t buflen)])
3235         fi
3237         AC_MSG_CHECKING(for readdir_r)
3238         AC_TRY_LINK([
3239                 #include <dirent.h>
3240         ], [
3241                 DIR* dir;
3242                 struct dirent* entry;
3243                 struct dirent* result;
3244                 readdir_r(dir, entry, &result);
3245         ],[
3246                 AC_MSG_RESULT(yes)
3247                 AC_DEFINE(HAVE_READDIR_R, 1, [readdir_r])
3248         ], [
3249                 AC_MSG_RESULT(no)
3250         ])
3252         AC_MSG_CHECKING(for kevent with void *data)
3253         AC_TRY_LINK([
3254                 #include <sys/types.h>
3255                 #include <sys/event.h>
3256         ], [
3257                 struct kevent event;
3258                 void* data;
3259                 EV_SET(&event, 0, EVFILT_READ, 0, 0, 0, data);
3260         ],[
3261                 AC_MSG_RESULT(yes)
3262                 AC_DEFINE(KEVENT_HAS_VOID_UDATA, 1, [kevent with void *data])
3263         ], [
3264                 AC_MSG_RESULT(no)
3265         ])
3267         AC_CHECK_MEMBER(struct fd_set.fds_bits,   [AC_DEFINE(HAVE_FDS_BITS, 1, [struct fd_set.fds_bits])], [], [[#include <sys/select.h>]])
3268         AC_CHECK_MEMBER(struct fd_set.__fds_bits, [AC_DEFINE(HAVE_PRIVATE_FDS_BITS, 1, [struct fd_set.__fds_bits])], [], [[#include <sys/select.h>]])
3270         AC_MSG_CHECKING(for sendfile with 4 arguments)
3271         AC_TRY_LINK([
3272                 #include <sys/sendfile.h>
3273         ], [
3274                 #if defined(TARGET_ANDROID)
3275                 #if !defined(__ANDROID_API__)
3276                 #error No definition for __ANDROID_API__ even though we're targeting TARGET_ANDROID
3277                 #elif __ANDROID_API__ < 21
3278                 #error sendfile is not supported on this Android API level
3279                 #endif
3280                 #endif
3282                 int result = sendfile(0, 0, 0, 0);
3283         ],[
3284                 AC_MSG_RESULT(yes)
3285                 AC_DEFINE(HAVE_SENDFILE_4, 1, [sendfile with 4 arguments])
3286         ], [
3287                 AC_MSG_RESULT(no)
3288         ])
3290         ORIG_CFLAGS="$CFLAGS"
3291         CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
3293         AC_MSG_CHECKING(for sendfile with 6 arguments)
3294         AC_TRY_LINK([
3295                 #include <stdlib.h>
3296                 #include <sys/types.h>
3297                 #include <sys/socket.h>
3298                 #include <sys/uio.h>
3299         ], [
3300                 int result = sendfile(0, 0, 0, NULL, NULL, 0);
3301         ],[
3302                 AC_MSG_RESULT(yes)
3303                 AC_DEFINE(HAVE_SENDFILE_6, 1, [sendfile with 6 arguments])
3304         ], [
3305                 AC_MSG_RESULT(no)
3306         ])
3308         CFLAGS="$ORIG_CFLAGS"
3310         AC_CHECK_FUNC(fcopyfile,     [AC_DEFINE(HAVE_FCOPYFILE, 1, [fcopyfile])])
3311         AC_CHECK_FUNC(epoll_create1, [AC_DEFINE(HAVE_EPOLL, 1, [epoll_create1])])
3312         AC_CHECK_FUNC(accept4,       [AC_DEFINE(HAVE_ACCEPT4, 1, [accept4])])
3313         AC_CHECK_FUNC(kqueue,        [AC_DEFINE(HAVE_KQUEUE, 1, [kqueue])])
3315         ORIG_CFLAGS="$CFLAGS"
3316         CFLAGS="$CFLAGS -Werror=sign-conversion"
3318         AC_MSG_CHECKING(for getnameinfo with signed flags)
3319         AC_TRY_LINK([
3320                 #include <sys/types.h>
3321                 #include <netdb.h>
3322         ], [
3323                 const struct sockaddr *addr;
3324                 socklen_t addrlen;
3325                 char *host;
3326                 socklen_t hostlen;
3327                 char *serv;
3328                 socklen_t servlen;
3329                 int flags;
3330                 int result = getnameinfo(addr, addrlen, host, hostlen, serv, servlen, flags);
3331         ],[
3332                 AC_MSG_RESULT(yes)
3333                 AC_DEFINE(HAVE_GETNAMEINFO_SIGNED_FLAGS, 1, [getnameinfo with signed flags])
3334         ], [
3335                 AC_MSG_RESULT(no)
3336         ])
3338         CFLAGS="$ORIG_CFLAGS"
3340         if test "x$host_linux" = "xyes"; then
3341                 AC_DEFINE(HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO, 1, [HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO])
3342         else
3343                 AC_DEFINE(HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO, 0, [HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO])
3344         fi
3346         # HAVE_CLOCK_MONOTONIC check already done above
3347         # HAVE_CLOCK_REALTIME check already done above
3348         # HAVE_MACH_ABSOLUTE_TIME check already done above
3349         # HAVE_MACH_TIMEBASE_INFO check already done above
3350         # HAVE_FUTIMES check already done above
3351         # HAVE_FUTIMENS check already done above
3353         ORIG_CFLAGS="$CFLAGS"
3354         CFLAGS="$CFLAGS -Werror=sign-conversion"
3356         AC_MSG_CHECKING(for bind with unsigned addrlen)
3357         AC_TRY_LINK([
3358                 #include <sys/socket.h>
3359         ], [
3360                 int fd;
3361                 struct sockaddr* addr;
3362                 socklen_t addrLen;
3363                 bind(fd, addr, addrLen);
3364         ],[
3365                 AC_MSG_RESULT(yes)
3366                 AC_DEFINE(BIND_ADDRLEN_UNSIGNED, 1, [bind with unsigned addrlen])
3367         ], [
3368                 AC_MSG_RESULT(no)
3369         ])
3371         AC_MSG_CHECKING(for struct ipv6_mreq with unsigned ipv6mr_interface)
3372         AC_TRY_LINK([
3373                 #include <netinet/in.h>
3374                 #include <netinet/tcp.h>
3375         ], [
3376                 struct ipv6_mreq opt;
3377                 unsigned int index = 0;
3378                 opt.ipv6mr_interface = index;
3379         ],[
3380                 AC_MSG_RESULT(yes)
3381                 AC_DEFINE(IPV6MR_INTERFACE_UNSIGNED, 1, [struct ipv6_mreq with unsigned ipv6mr_interface])
3382         ], [
3383                 AC_MSG_RESULT(no)
3384         ])
3386         AC_MSG_CHECKING(for inotify_rm_watch with unsigned wd)
3387         AC_TRY_LINK([
3388                 #include <sys/inotify.h>
3389         ], [
3390                 intptr_t fd;
3391                 uint32_t wd;
3392                 int result = inotify_rm_watch(fd, wd);
3393         ],[
3394                 AC_MSG_RESULT(yes)
3395                 AC_DEFINE(INOTIFY_RM_WATCH_WD_UNSIGNED, 1, [inotify_rm_watch with unsigned wd])
3396         ], [
3397                 AC_MSG_RESULT(no)
3398         ])
3400         CFLAGS="$ORIG_CFLAGS"
3402         AC_MSG_CHECKING(for shm_open that works well enough with mmap)
3403         if test "x$ac_cv_func_shm_open" = "xno" -o "x$ac_cv_func_shm_open_working_with_mmap" = "xno" ; then
3404                 AC_MSG_RESULT(no)
3405         elif test "x$cross_compiling" = "xyes"; then
3406                 AC_MSG_RESULT(cross compiling, assuming yes)
3407                 AC_DEFINE(HAVE_SHM_OPEN_THAT_WORKS_WELL_ENOUGH_WITH_MMAP, 1, [shm_open that works well enough with mmap])
3408         else
3409                 AC_TRY_RUN([
3410                         #include <sys/mman.h>
3411                         #include <fcntl.h>
3412                         #include <unistd.h>
3414                         int main ()
3415                         {
3416                                 int fd = shm_open("/mono_configure_shm_open", O_CREAT | O_RDWR, 0777);
3417                                 if (fd == -1)
3418                                         return -1;
3420                                 shm_unlink("/mono_configure_shm_open");
3422                                 // NOTE: PROT_EXEC and MAP_PRIVATE don't work well with shm_open
3423                                 //       on at least the current version of Mac OS X
3425                                 if (mmap(NULL, 1, PROT_EXEC, MAP_PRIVATE, fd, 0) == MAP_FAILED)
3426                                         return -1;
3428                                 return 0;
3429                         }
3430                 ],[
3431                         AC_MSG_RESULT(yes)
3432                         AC_DEFINE(HAVE_SHM_OPEN_THAT_WORKS_WELL_ENOUGH_WITH_MMAP, 1, [shm_open that works well enough with mmap])
3433                 ], [
3434                         AC_MSG_RESULT(no)
3435                 ])
3436         fi
3438         AC_MSG_CHECKING(for getpriority with int who)
3439         AC_TRY_LINK([
3440                 #include <sys/resource.h>
3441         ], [
3442                 int which;
3443                 int who;
3444                 int result = getpriority(which, who);
3445         ],[
3446                 AC_MSG_RESULT(yes)
3447                 AC_DEFINE(PRIORITY_REQUIRES_INT_WHO, 1, [getpriority with int who])
3448         ], [
3449                 AC_MSG_RESULT(no)
3450         ])
3452         AC_MSG_CHECKING(for kevent with int parameters)
3453         AC_TRY_LINK([
3454                 #include <sys/types.h>
3455                 #include <sys/event.h>
3456         ], [
3457                 int kg;
3458                 const struct kevent* chagelist;
3459                 int nchanges;
3460                 struct kevent* eventlist;
3461                 int nevents;
3462                 const struct timespec* timeout;
3463                 int result = kevent(kg, chagelist, nchanges, eventlist, nevents, timeout);
3464         ],[
3465                 AC_MSG_RESULT(yes)
3466                 AC_DEFINE(KEVENT_REQUIRES_INT_PARAMS, 1, [kevent with int parameters])
3467         ], [
3468                 AC_MSG_RESULT(no)
3469         ])
3471         AC_CHECK_FUNCS(mkstemps)
3472         # AC_CHECK_FUNCS(mkstemp) # already done above
3474         if test "x$ac_cv_func_mkstemps" != "xyes" -a "x$ac_cv_func_mkstemp" != "xyes"; then
3475                 AC_MSG_ERROR([Cannot find mkstemps or mkstemp on this platform])
3476         fi
3478         AC_MSG_CHECKING(for tcp/var.h)
3479         AC_TRY_LINK([
3480                 #include <sys/types.h>
3481                 #include <sys/socketvar.h>
3482                 #include <netinet/ip.h>
3483                 #include <netinet/tcp.h>
3484                 #include <netinet/tcp_var.h>
3485         ], [
3486         ],[
3487                 AC_MSG_RESULT(yes)
3488                 AC_DEFINE(HAVE_TCP_VAR_H, 1, [tcp/var.h])
3489         ], [
3490                 AC_MSG_RESULT(no)
3491         ])
3493         AC_CHECK_HEADERS([sys/cdefs.h])
3495         AC_MSG_CHECKING(for TCPSTATE enum in netinet/tcp.h)
3496         AC_TRY_LINK([
3497                 #ifdef HAVE_SYS_CDEFS_H
3498                 #include <sys/cdefs.h>
3499                 #endif
3500                 #include <netinet/tcp.h>
3501         ], [
3502                 int result = TCP_ESTABLISHED;
3503         ],[
3504                 AC_MSG_RESULT(yes)
3505                 AC_DEFINE(HAVE_TCP_H_TCPSTATE_ENUM, 1, [TCPSTATE enum in netinet/tcp.h])
3506         ], [
3507                 AC_MSG_RESULT(no)
3508         ])
3510         AC_CHECK_DECL(TCPS_ESTABLISHED, [AC_DEFINE(HAVE_TCP_FSM_H, 1, [HAVE_TCP_FSM_H])], [], [[#include <netinet/tcp_fsm.h>]])
3512         AC_MSG_CHECKING(for struct rt_msghdr)
3513         AC_TRY_COMPILE([
3514                 #include <sys/types.h>
3515                 #include <net/route.h>
3516         ], [
3517                 struct rt_msghdr;
3518         ],[
3519                 AC_MSG_RESULT(yes)
3520                 AC_DEFINE(HAVE_RT_MSGHDR, 1, [struct rt_msghdr])
3521         ], [
3522                 AC_MSG_RESULT(no)
3523         ])
3525         AC_CHECK_HEADERS([sys/sysctl.h])
3526         AC_CHECK_HEADERS([linux/rtnetlink.h])
3528         AC_CHECK_FUNC(getpeereid,    [AC_DEFINE(HAVE_GETPEEREID, 1, [getpeereid])])
3529         #AC_CHECK_FUNC(getdomainname, [AC_DEFINE(HAVE_GETDOMAINNAME, 1, [getdomainname])]) # already done above
3530         AC_CHECK_FUNC(uname,         [AC_DEFINE(HAVE_UNAME, 1, [uname])])
3532         ORIG_CFLAGS="$CFLAGS"
3533         CFLAGS="$CFLAGS -Werror=shorten-64-to-32"
3535         AC_MSG_CHECKING(for getdomainname with size_t namelen)
3536         AC_TRY_LINK([
3537                 #include <unistd.h>
3538         ], [
3539                 size_t namelen = 20;
3540                 char name[20];
3541                 int result = getdomainname(name, namelen);
3542         ],[
3543                 AC_MSG_RESULT(yes)
3544                 AC_DEFINE(HAVE_GETDOMAINNAME_SIZET, 1, [getdomainname with size_t namelen])
3545         ], [
3546                 AC_MSG_RESULT(no)
3547         ])
3549         CFLAGS="$ORIG_CFLAGS"
3551         AC_CHECK_FUNC(inotify_init, [AC_DEFINE(HAVE_INOTIFY_INIT, 1, [inotify_init])])
3552         AC_CHECK_FUNC(inotify_add_watch, [AC_DEFINE(HAVE_INOTIFY_ADD_WATCH, 1, [inotify_add_watch])])
3553         AC_CHECK_FUNC(inotify_rm_watch, [AC_DEFINE(HAVE_INOTIFY_RM_WATCH, 1, [inotify_rm_watch])])
3555         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
3556                 AC_DEFINE(HAVE_INOTIFY, 1, [HAVE_INOTIFY])
3557         elif test "x$host_linux" = "xyes"; then
3558                 AC_MSG_ERROR([Cannot find inotify functions on a Linux platform.])
3559         fi
3561         # HAVE_CURLM_ADDED_ALREADY check skipped because we don't use libcurl in mono
3562         # HAVE_CURL_HTTP_VERSION_2TLS check skipped because we don't use libcurl in mono
3563         # HAVE_CURLPIPE_MULTIPLEX check skipped because we don't use libcurl in mono
3564         # HAVE_CURL_SSLVERSION_TLSv1_012 check skipped because we don't use libcurl in mono
3566         enable_gss=no;
3567         AC_MSG_CHECKING(for GSS/GSS.h)
3568         AC_TRY_COMPILE([
3569                         #include <GSS/GSS.h>
3570         ], [
3571         ],[
3572                         AC_MSG_RESULT(yes)
3573                         AC_DEFINE(HAVE_GSSFW_HEADERS, 1, [GSS/GSS.h])
3574                         AC_DEFINE(HAVE_GSS_SPNEGO_MECHANISM, 1, [GSS_SPNEGO_MECHANISM])
3575                         enable_gss=yes
3576         ], [
3577                         AC_MSG_RESULT(no)
3578         ])
3580         AC_MSG_CHECKING(for gssapi/gssapi_ext.h)
3581         AC_TRY_COMPILE([
3582                         #include <gssapi/gssapi_ext.h>
3583         ], [
3584         ],[
3585                         AC_MSG_RESULT(yes)
3586                         enable_gss=yes
3587         ], [
3588                         AC_MSG_RESULT(no)
3589         ])
3591         AC_MSG_CHECKING(for GSS_SPNEGO_MECHANISM)
3592         AC_TRY_COMPILE([
3593                         #include <gssapi/gssapi_ext.h>
3594                         #include <gssapi/gssapi_krb5.h>
3595                         gss_OID_set_desc gss_mech_spnego_OID_set_desc = {.count = 1, .elements = GSS_SPNEGO_MECHANISM};
3596         ], [
3597         ],[
3598                         AC_MSG_RESULT(yes)
3599                         AC_DEFINE(HAVE_GSS_SPNEGO_MECHANISM, 1, [GSS_SPNEGO_MECHANISM])
3600         ], [
3601                         AC_MSG_RESULT(no)
3602         ])
3604         AM_CONDITIONAL(ENABLE_GSS, test x$enable_gss = xyes)
3606         AC_CHECK_HEADERS([crt_externs.h])
3608         AC_MSG_CHECKING(for _NSGetEnviron)
3609         AC_TRY_LINK([
3610                 #include <crt_externs.h>
3611         ], [
3612                 char **result = *(_NSGetEnviron());
3613         ],[
3614                 AC_MSG_RESULT(yes)
3615                 AC_DEFINE(HAVE_NSGETENVIRON, 1, [_NSGetEnviron])
3616         ], [
3617                 AC_MSG_RESULT(no)
3618         ])
3620         AC_CHECK_DECL(IN_EXCL_UNLINK, [AC_DEFINE(HAVE_IN_EXCL_UNLINK, 1, [IN_EXCL_UNLINK])], [], [[#include <sys/inotify.h>]])
3622         # *** End of Mono.Native checks ***
3623 else
3624         AM_CONDITIONAL(ENABLE_GSS, false)
3626         dnl *********************************
3627         dnl *** Checks for Windows compilation ***
3628         dnl *********************************
3629         AC_CHECK_HEADERS(winternl.h)
3631         jdk_headers_found=no
3632         AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32", AC_ERROR(bad mingw install?))
3633         AC_CHECK_LIB(psapi, main, LIBS="$LIBS -lpsapi", AC_ERROR(bad mingw install?))
3634         AC_CHECK_LIB(ole32, main, LIBS="$LIBS -lole32", AC_ERROR(bad mingw install?))
3635         AC_CHECK_LIB(winmm, main, LIBS="$LIBS -lwinmm", AC_ERROR(bad mingw install?))
3636         AC_CHECK_LIB(oleaut32, main, LIBS="$LIBS -loleaut32", AC_ERROR(bad mingw install?))
3637         AC_CHECK_LIB(advapi32, main, LIBS="$LIBS -ladvapi32", AC_ERROR(bad mingw install?))
3638         AC_CHECK_LIB(version, main, LIBS="$LIBS -lversion", AC_ERROR(bad mingw install?))
3640         dnl *********************************
3641         dnl *** Check for struct ip_mreqn ***
3642         dnl *********************************
3643         AC_MSG_CHECKING(for struct ip_mreqn)
3644         AC_TRY_COMPILE([#include <ws2tcpip.h>], [
3645                 struct ip_mreqn mreq;
3646                 mreq.imr_address.s_addr = 0;
3647         ], [
3648                 # Yes, we have it...
3649                 AC_MSG_RESULT(yes)
3650                 AC_DEFINE(HAVE_STRUCT_IP_MREQN)
3651         ], [
3652                 # We'll just have to try and use struct ip_mreq
3653                 AC_MSG_RESULT(no)
3654                 AC_MSG_CHECKING(for struct ip_mreq)
3655                 AC_TRY_COMPILE([#include <ws2tcpip.h>], [
3656                         struct ip_mreq mreq;
3657                         mreq.imr_interface.s_addr = 0;
3658                 ], [
3659                         # Yes, we have it...
3660                         AC_MSG_RESULT(yes)
3661                         AC_DEFINE(HAVE_STRUCT_IP_MREQ)
3662                 ], [
3663                         # No multicast support
3664                         AC_MSG_RESULT(no)
3665                 ])
3666         ])
3668         dnl **********************************
3669         dnl *** Check for getaddrinfo ***
3670         dnl **********************************
3671         AC_MSG_CHECKING(for getaddrinfo)
3672                 AC_TRY_LINK([
3673                 #include <stdio.h>
3674                 #include <winsock2.h>
3675                 #include <ws2tcpip.h>
3676         ], [
3677                 getaddrinfo(NULL,NULL,NULL,NULL);
3678         ], [
3679                 # Yes, we have it...
3680                 AC_MSG_RESULT(yes)
3681                 AC_DEFINE(HAVE_GETADDRINFO, 1, [Have getaddrinfo])
3682         ], [
3683                 AC_MSG_RESULT(no)
3684         ])
3686         dnl **********************************
3687         dnl *** Check for gethostbyname ***
3688         dnl **********************************
3689         AC_MSG_CHECKING(for gethostbyname)
3690                 AC_TRY_LINK([
3691                 #include <stdio.h>
3692                 #include <winsock2.h>
3693                 #include <ws2tcpip.h>
3694         ], [
3695                 gethostbyname(NULL);
3696         ], [
3697                 # Yes, we have it...
3698                 AC_MSG_RESULT(yes)
3699                 AC_DEFINE(HAVE_GETHOSTBYNAME, 1, [Have gethostbyname])
3700         ], [
3701                 AC_MSG_RESULT(no)
3702         ])
3704         dnl **********************************
3705         dnl *** Check for getprotobyname ***
3706         dnl **********************************
3707         AC_MSG_CHECKING(for getprotobyname)
3708                 AC_TRY_LINK([
3709                 #include <stdio.h>
3710                 #include <winsock2.h>
3711                 #include <ws2tcpip.h>
3712         ], [
3713                 getprotobyname(NULL);
3714         ], [
3715                 # Yes, we have it...
3716                 AC_MSG_RESULT(yes)
3717                 AC_DEFINE(HAVE_GETPROTOBYNAME, 1, [Have getprotobyname])
3718         ], [
3719                 AC_MSG_RESULT(no)
3720         ])
3722         dnl **********************************
3723         dnl *** Check for getnameinfo ***
3724         dnl **********************************
3725         AC_MSG_CHECKING(for getnameinfo)
3726                 AC_TRY_LINK([
3727                 #include <stdio.h>
3728                 #include <winsock2.h>
3729                 #include <ws2tcpip.h>
3730         ], [
3731                 getnameinfo (NULL, 0, NULL, 0, NULL, 0, 0);
3732         ], [
3733                 # Yes, we have it...
3734                 AC_MSG_RESULT(yes)
3735                 AC_DEFINE(HAVE_GETNAMEINFO, 1, [Have getnameinfo])
3736         ], [
3737                 AC_MSG_RESULT(no)
3738         ])
3740         dnl **********************************
3741         dnl *** Check for inet_ntop ***
3742         dnl **********************************
3743         AC_MSG_CHECKING(for inet_ntop)
3744                 AC_TRY_LINK([
3745                 #include <stdio.h>
3746                 #include <winsock2.h>
3747                 #include <ws2tcpip.h>
3748         ], [
3749                 inet_ntop (0, NULL, NULL, 0);
3750         ], [
3751                 # Yes, we have it...
3752                 AC_MSG_RESULT(yes)
3753                 AC_DEFINE(HAVE_INET_NTOP, 1, [Have inet_ntop])
3754         ], [
3755                 AC_MSG_RESULT(no)
3756         ])
3758         dnl **********************************
3759         dnl *** Check for inet_pton ***
3760         dnl **********************************
3761         AC_MSG_CHECKING(for inet_pton)
3762                 AC_TRY_LINK([
3763                 #include <stdio.h>
3764                 #include <winsock2.h>
3765                 #include <ws2tcpip.h>
3766         ], [
3767                 #ifndef inet_pton
3768                 (void) inet_pton;
3769                 #endif
3770                 inet_pton (0, NULL, NULL);
3771         ], [
3772                 # Yes, we have it...
3773                 AC_MSG_RESULT(yes)
3774                 AC_DEFINE(HAVE_INET_PTON, 1, [Have inet_pton])
3775         ], [
3776                 AC_MSG_RESULT(no)
3777         ])
3779         AC_CHECK_DECLS(InterlockedExchange64, [], [], [[#include <windows.h>]])
3780         AC_CHECK_DECLS(InterlockedCompareExchange64, [], [], [[#include <windows.h>]])
3781         AC_CHECK_DECLS(InterlockedDecrement64, [], [], [[#include <windows.h>]])
3782         AC_CHECK_DECLS(InterlockedIncrement64, [], [], [[#include <windows.h>]])
3783         AC_CHECK_DECLS(InterlockedAdd, [], [], [[#include <windows.h>]])
3784         AC_CHECK_DECLS(InterlockedAdd64, [], [], [[#include <windows.h>]])
3785         AC_CHECK_DECLS(__readfsdword, [], [], [[#include <windows.h>]])
3788 dnl socklen_t check
3789 AC_MSG_CHECKING(for socklen_t)
3790 AC_TRY_COMPILE([
3791 #include <sys/types.h>
3792 #include <sys/socket.h>
3794   socklen_t foo;
3796 ac_cv_c_socklen_t=yes
3797         AC_DEFINE(HAVE_SOCKLEN_T, 1, [Have socklen_t])
3798         AC_MSG_RESULT(yes)
3800         AC_MSG_RESULT(no)
3803 AC_CHECK_FUNCS(execvp)
3805 dnl ****************************
3806 dnl *** Look for /dev/random ***
3807 dnl ****************************
3809 AC_MSG_CHECKING([if usage of random device is requested])
3810 AC_ARG_ENABLE(dev-random,
3811 [  --disable-dev-random    disable the use of the random device (enabled by default)],
3812 try_dev_random=$enableval, try_dev_random=yes)
3814 AC_MSG_RESULT($try_dev_random)
3816 case "{$build}" in
3818 dnl IBM i does not have /dev/random, use unblocking only
3820     *-*-os400*)
3821     NAME_DEV_RANDOM="/dev/urandom"
3822     ;;
3824 dnl Win32 does not have /dev/random, they have their own method...
3826     *-mingw*|*-*-cygwin*)
3827     ac_cv_have_dev_random=no
3828     ;;
3830 dnl Everywhere else, it's /dev/random
3832     *)
3833     NAME_DEV_RANDOM="/dev/random"
3834     ;;
3835 esac
3837 AC_DEFINE_UNQUOTED(NAME_DEV_RANDOM, "$NAME_DEV_RANDOM", [Name of /dev/random])
3839 dnl Now check if the device actually exists
3841 if test "x$try_dev_random" = "xyes"; then
3842     AC_CACHE_CHECK(for random device, ac_cv_have_dev_random,
3843     [if test -r "$NAME_DEV_RANDOM" ; then
3844         ac_cv_have_dev_random=yes; else ac_cv_have_dev_random=no; fi])
3845     if test "x$ac_cv_have_dev_random" = "xyes"; then
3846         AC_DEFINE(HAVE_CRYPT_RNG, 1, [Have /dev/random])
3847     fi
3848 else
3849     AC_MSG_CHECKING(for random device)
3850     ac_cv_have_dev_random=no
3851     AC_MSG_RESULT(has been disabled)
3854 if test "x$host_win32" = "xyes"; then
3855     AC_DEFINE(HAVE_CRYPT_RNG)
3858 if test "x$ac_cv_have_dev_random" = "xno" \
3859     && test "x$host_win32" = "xno"; then
3860     AC_MSG_WARN([[
3862 *** A system-provided entropy source was not found on this system.
3863 *** Because of this, the System.Security.Cryptography random number generator
3864 *** will throw a NotImplemented exception.
3866 *** If you are seeing this message, and you know your system DOES have an
3867 *** entropy collection in place, please report an issue on GitHub and
3868 *** provide information about the system and how to access the random device.
3870 *** Otherwise you can install either egd or prngd and set the environment
3871 *** variable MONO_EGD_SOCKET to point to the daemon's socket to use that.
3872 ***]])
3875 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)
3877 AC_MSG_CHECKING([if big-arrays are to be enabled])
3878 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)
3879 if test "x$enable_big_arrays" = "xyes" ; then
3880     if  test "x$ac_cv_sizeof_void_p" = "x8"; then
3881         AC_DEFINE(MONO_BIG_ARRAYS,1,[Enable the allocation and indexing of arrays greater than Int32.MaxValue])
3882     else
3883         AC_MSG_ERROR([The allocation and indexing of arrays greater than Int32.MaxValue is not supported on this platform.])
3884     fi
3886 AC_MSG_RESULT($enable_big_arrays)
3888 dnl **************
3889 dnl *** DTRACE ***
3890 dnl **************
3892 AC_ARG_ENABLE(dtrace,[  --enable-dtrace Enable DTrace probes], enable_dtrace=$enableval, enable_dtrace=$has_dtrace)
3894 if test "x$enable_dtrace" = "xyes"; then
3895    if test "x$has_dtrace" = "xno"; then
3896           AC_MSG_ERROR([DTrace probes are not supported on this platform.])
3897    fi
3898    AC_PATH_PROG(DTRACE, [dtrace], [no], [$PATH:/usr/sbin])
3899    if test "x$DTRACE" = "xno"; then
3900           AC_MSG_RESULT([dtrace utility not found, dtrace support disabled.])
3901           enable_dtrace=no
3902    elif ! $DTRACE -h -s $srcdir/data/mono.d > /dev/null 2>&1; then
3903           AC_MSG_RESULT([dtrace doesn't support -h option, dtrace support disabled.])
3904           enable_dtrace=no
3905    fi
3908 dtrace_g=no
3909 if test "x$enable_dtrace" = "xyes"; then
3910         AC_DEFINE(ENABLE_DTRACE, 1, [Enable DTrace probes])
3911         DTRACEFLAGS=
3912         if test "x$ac_cv_sizeof_void_p" = "x8"; then
3913                 case "$host" in
3914                         powerpc-*-darwin*)
3915                         DTRACEFLAGS="-arch ppc64"
3916                         ;;
3917                         i*86-*-darwin*)
3918                         DTRACEFLAGS="-arch x86_64"
3919                         ;;
3920                         *)
3921                         DTRACEFLAGS=-64
3922                         ;;
3923                 esac
3924         else
3925                 case "$host" in
3926                         powerpc-*-darwin*)
3927                         DTRACEFLAGS="-arch ppc"
3928                         ;;
3929                         i*86-*-darwin*)
3930                         DTRACEFLAGS="-arch i386"
3931                         ;;
3932                         *)
3933                         DTRACEFLAGS=-32
3934                         ;;
3935                 esac
3936         fi
3937         AC_SUBST(DTRACEFLAGS)
3938         case "$host" in
3939                 *-*-solaris*)
3940                 dtrace_g=yes
3941                 ;;
3942         esac
3943         AC_CHECK_HEADERS([sys/sdt.h])
3945 AM_CONDITIONAL(ENABLE_DTRACE, [test x$enable_dtrace = xyes])
3946 AM_CONDITIONAL(DTRACE_G_REQUIRED, [test x$dtrace_g = xyes])
3948 dnl **************************
3949 dnl *** AOT cross offsets  ***
3950 dnl **************************
3952 AC_ARG_WITH(cross-offsets, [  --with-cross-offsets=<offsets file path>    Explicit AOT cross offsets file],
3953     AC_DEFINE_UNQUOTED(MONO_OFFSETS_FILE, "$withval", [AOT cross offsets file]))
3955 dnl **************
3956 dnl ***  LLVM  ***
3957 dnl **************
3959 AC_ARG_ENABLE(llvm,[  --enable-llvm     Enable the LLVM back-end], enable_llvm=$enableval, enable_llvm=default)
3960 AC_ARG_ENABLE(loadedllvm,[  --enable-loadedllvm Load the LLVM back-end dynamically], enable_llvm=$enableval && enable_loadedllvm=$enableval, enable_loadedllvm=no)
3961 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)
3962 AC_ARG_ENABLE(llvm-runtime,[  --enable-llvm-runtime     Enable runtime support for llvmonly code], enable_llvm_runtime=$enableval, enable_llvm_runtime=no)
3963 AC_ARG_ENABLE(llvm-asserts,[  --enable-llvm-asserts Enable llvm asserts (option to LLVM in CMake)], enable_llvm_asserts=$enableval, enable_llvm_asserts=no)
3965 AC_ARG_WITH(llvm, [  --with-llvm=<llvm prefix>    Enable the LLVM back-end], enable_llvm=yes,)
3967 if test "x$enable_llvm" = "xdefault"; then
3968    enable_llvm=$enable_llvm_default
3971 enable_llvm_msvc_only="no"
3972 if test "x$enable_llvm" = "xyes"; then
3973         if test "x$host_win32" = "xyes"; then
3974                 if test "x$cross_compiling" = "xno"; then
3975                         case "$target" in
3976                         x86_64*)
3977                                 AC_MSG_WARN("LLVM for host=Windows and target=Windows is only supported on x64 MSVC builds. Disabling LLVM for GCC build.")
3978                                 enable_llvm_msvc_only="yes"
3979                                 ;;
3980                         i686*)
3981                                 AC_MSG_ERROR("LLVM for host=Windows and target=Windows is only supported for x64 builds.")
3982                                 ;;
3983                         esac
3984                 fi
3985                 if test "x$enable_loadedllvm" = "xyes"; then
3986                         AC_MSG_WARN("Loadable LLVM currently not supported on Windows. Disabling feature.")
3987                         enable_loadedllvm=no
3988                 fi
3989         fi
3992 internal_llvm="no"
3993 if test "x$enable_llvm" = "xyes"; then
3994         if test "x$with_llvm" != "x"; then
3995                 EXTERNAL_LLVM_CONFIG=$with_llvm/bin/llvm-config
3996                 if test x$host_win32 = xyes; then
3997                         EXTERNAL_LLVM_CONFIG=$EXTERNAL_LLVM_CONFIG.exe
3998                 fi
3999                 if test ! -x $EXTERNAL_LLVM_CONFIG; then
4000                         AC_MSG_ERROR([LLVM executable $EXTERNAL_LLVM_CONFIG not found.])
4001                 fi
4002         else
4003                 if test x$host_win32 = xyes; then
4004                         AC_PATH_PROG(EXTERNAL_LLVM_CONFIG, llvm-config.exe, no)
4005                 else
4006                         AC_PATH_PROG(EXTERNAL_LLVM_CONFIG, llvm-config, no)
4007                 fi
4008                 if test "x$EXTERNAL_LLVM_CONFIG" = "xno"; then
4009                         internal_llvm=yes
4010                 fi
4011         fi
4013         LLVM_CODEGEN_LIBS="x86codegen"
4014         case "$target" in
4015         arm*)
4016                 LLVM_CODEGEN_LIBS="armcodegen"
4017                 ;;
4018         aarch64*)
4019                 LLVM_CODEGEN_LIBS="aarch64codegen"
4020                 ;;
4021         powerpc*)
4022                 LLVM_CODEGEN_LIBS="powerpccodegen"
4023                 ;;
4024         esac
4025         if test "x$host" != "x$target"; then
4026                 # No need for jit libs
4027                 LLVM_CODEGEN_LIBS=
4028         fi
4030         AC_SUBST(LLVM_CODEGEN_LIBS)
4031         AC_SUBST(EXTERNAL_LLVM_CONFIG)
4033         if test "x$host_win32" = "xyes" && test "x$cross_compiling" = "xno" &&  test "x$internal_llvm" = "xno"; then
4034                 EXTERNAL_LLVM_CONFIG_WIN32=$(cygpath -m $EXTERNAL_LLVM_CONFIG)
4035                 AC_SUBST(EXTERNAL_LLVM_CONFIG_WIN32)
4036         fi
4037         if test "x$enable_llvm_msvc_only" != "xyes"; then
4038                 AC_DEFINE(ENABLE_LLVM, 1, [Enable the LLVM back end])
4039         else
4040                 AC_DEFINE(ENABLE_LLVM_MSVC_ONLY, 1, [Enable the LLVM back end])
4041         fi
4042 fi # ENABLE_LLVM
4044 # AC_DEFINE necessary for correct restore behavior on Linux
4045 AM_CONDITIONAL(INTERNAL_LLVM, [test "x$internal_llvm" != "xno" && test "x$enable_llvm_msvc_only" != "xyes"])
4046 if test "x$internal_llvm" != "xno"; then
4047         if test "x$enable_llvm_msvc_only" != "xyes"; then
4048                 AC_DEFINE(INTERNAL_LLVM, 1, [LLVM used is being build during mono build])
4049         else
4050                 AC_DEFINE(INTERNAL_LLVM_MSVC_ONLY, 1, [LLVM used is being build during mono build])
4051         fi
4054 AM_CONDITIONAL(INTERNAL_LLVM_ASSERTS, [test "x$enable_llvm_asserts" != "xno" && test "x$enable_llvm_msvc_only" != "xyes"])
4055 if test "x$enable_llvm_asserts" != "xno"; then
4056         if test "x$enable_llvm_msvc_only" != "xyes"; then
4057                 AC_DEFINE(INTERNAL_LLVM_ASSERTS, 1, [Build LLVM with assertions])
4058         else
4059                 AC_DEFINE(INTERNAL_LLVM_ASSERTS_MSVC_ONLY, 1, [Build LLVM with assertions])
4060         fi
4063 AM_CONDITIONAL(ENABLE_LLVM, [test x$enable_llvm = xyes && test x$enable_llvm_msvc_only != xyes])
4065 AM_CONDITIONAL(LOADED_LLVM, [test x$enable_loadedllvm = xyes && test x$enable_llvm_msvc_only != xyes])
4066 if test "x$enable_loadedllvm" = "xyes"; then
4067         if test "x$enable_llvm_msvc_only" != "xyes"; then
4068                 AC_DEFINE(MONO_LLVM_LOADED, 1, [The LLVM back end is dynamically loaded])
4069         fi
4072 if test "x$enable_llvm" = "xyes"; then
4073         enable_llvm_runtime=yes
4076 AM_CONDITIONAL(ENABLE_LLVM_RUNTIME, [test x$enable_llvm_runtime = xyes && test x$enable_llvm_msvc_only != xyes])
4077 if test "x$enable_llvm_runtime" = "xyes"; then
4078         if test "x$enable_llvm_msvc_only" != "xyes"; then
4079                 AC_DEFINE(ENABLE_LLVM_RUNTIME, 1, [Runtime support code for llvm enabled])
4080         else
4081                 AC_DEFINE(ENABLE_LLVM_RUNTIME_MSVC_ONLY, 1, [Runtime support code for llvm enabled])
4082         fi
4085 TARGET="unknown"
4086 ACCESS_UNALIGNED="yes"
4088 LIBC="libc.so.6"
4089 INTL="libc.so.6"
4090 SQLITE="libsqlite.so.0"
4091 SQLITE3="libsqlite3.so.0"
4092 X11="libX11.so"
4093 GDKX11="libgdk-x11-2.0.so.0"
4094 GTKX11="libgtk-x11-2.0.so.0"
4095 XINERAMA="libXinerama.so.1"
4097 sizeof_register="SIZEOF_VOID_P"
4099 jit_wanted=true
4100 boehm_supported=true
4101 BTLS_SUPPORTED=no
4102 BTLS_PLATFORM=
4104 case "$host" in
4105         wasm32*)
4106                 TARGET=WASM
4107                 arch_target=wasm
4108                 BTLS_SUPPORTED=no
4109                 ACCESS_UNALIGNED="no"
4110                 with_tls=pthread
4111                 target_wasm=yes
4112                 ;;
4113         mips*)
4114                 TARGET=MIPS;
4115                 arch_target=mips;
4116                 with_tls=pthread;
4117                 ACCESS_UNALIGNED="no"
4119                 AC_MSG_CHECKING(for mips n32)
4120                 AC_TRY_COMPILE([],[
4121                 #if _MIPS_SIM != _ABIN32
4122                 #error Not mips n32
4123                 #endif
4124                 ],[
4125                 AC_MSG_RESULT(yes)
4126                 sizeof_register=8
4127                 ],[
4128                 AC_MSG_RESULT(no)
4129                 ])
4130                 ;;
4131         i*86-*-*)
4132                 TARGET=X86;
4133                 arch_target=x86;
4134                 case $host_os in
4135                   solaris*)
4136                         LIBC="libc.so"
4137                         INTL="libintl.so"
4138                         if test "x$ac_cv_sizeof_void_p" = "x8"; then
4139                                 TARGET=AMD64
4140                                 arch_target=amd64
4141                         fi
4143                         # On solaris 10 x86, gcc prints a warning saying 'visibility attribute not supported on this configuration; ignored', but linking fails. A test case:
4144                         # int astruct __attribute__ ((visibility ("hidden")));
4145                         # void foo ()
4146                         # {
4147                         #       void *p = &astruct;
4148                         # }
4149                         # gcc -fPIC --shared -o libfoo.so foo.c
4150                         # yields:
4151                         # foo.c:6: warning: visibility attribute not supported in this configuration; ignored
4152                         # ld: fatal: relocation error: R_386_GOTOFF: file /var/tmp//ccxYR96k.o: symbol astruct: relocation must bind locally
4153                         have_visibility_hidden=no
4154                         ;;
4155                   mingw*|cygwin*)
4156                         have_visibility_hidden=no
4157                         BTLS_SUPPORTED=no
4158                         BTLS_PLATFORM=i386
4159                         ;;
4160                   haiku*)
4161                         LIBC=libroot.so
4162                         ;;
4163                   linux*)
4164                         AOT_SUPPORTED="yes"
4165                         BTLS_SUPPORTED=yes
4166                         BTLS_PLATFORM=i386
4167                         AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4168                         ;;
4169                   darwin*)
4170                         AOT_SUPPORTED="yes"
4171                         BTLS_SUPPORTED=yes
4172                         BTLS_PLATFORM=i386
4173                         ;;
4174                   openbsd*|freebsd*|kfreebsd-gnu*)
4175                         AOT_SUPPORTED="yes"
4176                         BTLS_SUPPORTED=yes
4177                         BTLS_PLATFORM=i386
4178                         ;;
4179                 esac
4180                 ;;
4181         x86_64-*-* | amd64-*-*)
4182                 TARGET=AMD64;
4183                 arch_target=amd64;
4184                 if test "x$ac_cv_sizeof_void_p" = "x4"; then
4185                         AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4186                         sizeof_register=8
4187                 fi
4188                 case $host_os in
4189                   linux*)
4190                         AOT_SUPPORTED="yes"
4191                         BTLS_SUPPORTED=yes
4192                         BTLS_PLATFORM=x86_64
4193                         AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4194                         ;;
4195                   darwin*)
4196                         AOT_SUPPORTED="yes"
4197                         BTLS_SUPPORTED=yes
4198                         BTLS_PLATFORM=x86_64
4199                         boehm_supported=false
4200                         ;;
4201                   openbsd*|freebsd*|kfreebsd-gnu*)
4202                         AOT_SUPPORTED="yes"
4203                         BTLS_SUPPORTED=yes
4204                         BTLS_PLATFORM=x86_64
4205                         ;;
4206                   mingw*|cygwin*)
4207                         BTLS_SUPPORTED=no
4208                         BTLS_PLATFORM=x86_64
4209                         ;;
4210                 esac
4211                 ;;
4212         sparc*-*-*)
4213                 if test "x$ac_cv_sizeof_void_p" = "x8"; then
4214                    TARGET=SPARC64
4215                 else
4216                         TARGET=SPARC
4217                 fi
4218                 arch_target=sparc;
4219                 ACCESS_UNALIGNED="no"
4220                 case $host_os in
4221                   linux*) ;;
4222                   *)
4223                         LIBC="libc.so"
4224                         INTL="libintl.so"
4225                 esac
4226                 if test x"$GCC" = xyes; then
4227                         # We don't support v8 cpus
4228                         CFLAGS="$CFLAGS -Wno-cast-align -mcpu=v9"
4229                 fi
4230                 if test x"$AR" = xfalse; then
4231                         AC_MSG_ERROR([The required utility 'ar' is not found in your PATH. Usually it can be found in /usr/ccs/bin.])
4232                 fi
4233                 ;;
4234         *-mingw*|*-*-cygwin*)
4235                 # When this is enabled, it leads to very strange crashes at runtime (gcc-3.4.4)
4236                 have_visibility_hidden=no
4237                 INTL="intl"
4238                 case "$host" in
4239                         x86_64*mingw*)
4240                                 # Old Boehm fails to compile for x86_64-mingw.
4241                                 # It is trivial to fix, but just silently drop it.
4242                                 boehm_supported=false
4243                                 ;;
4244                 esac
4245                 ;;
4246         macppc-*-openbsd* | powerpc*-*-linux* | powerpc-*-openbsd* | \
4247         powerpc-*-sysv* | powerpc-*-darwin* | powerpc-*-netbsd* | \
4248         powerpc-*-freebsd* | powerpc*-*-aix* | powerpc*-*-os400* )
4249                 if test "x$ac_cv_sizeof_void_p" = "x8"; then
4250                         TARGET=POWERPC64;
4251                         CPPFLAGS="$CPPFLAGS -D__mono_ppc__ -D__mono_ppc64__"
4252                         if ! (echo $CC | grep -q -- 'clang'); then
4253                                 CFLAGS="$CFLAGS -mminimal-toc"
4254                         fi
4255                 else
4256                         TARGET=POWERPC;
4257                         CPPFLAGS="$CPPFLAGS -D__mono_ppc__"
4258                 fi
4259                 arch_target=ppc;
4260                 case $host_os in
4261                   aix*|os400*)
4262                         BTLS_SUPPORTED=yes
4263                         BTLS_PLATFORM=powerpc
4264                         dnl on AIX/PASE, shared libraries can be inside archives
4265                         dnl if they are, we specify them by lib.a(lib.so)
4266                         dnl we may hardcode 64-bit names at times, but we don't do 32-bit AIX, so
4267                         LIBC="libc.a(shr_64.o)"
4268                         INTL="libintl.a(libintl.so.8)"
4269                         ;;
4270                   linux*)
4271                         BTLS_SUPPORTED=yes
4272                         BTLS_PLATFORM=powerpc
4273                         ;;
4274                 esac
4275                 ;;
4276         armv7k-*-darwin*)
4277                 TARGET=ARM;
4278                 TARGET_SYS=WATCHOS
4279                 arch_target=arm;
4280                 arm_fpu=VFP_HARD
4281                 ACCESS_UNALIGNED="no"
4282                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4283                 ;;
4285         arm*-darwin*)
4286                 TARGET=ARM;
4287                 arch_target=arm;
4288                 ACCESS_UNALIGNED="no"
4289                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4290                 ;;
4291         arm*-linux*)
4292                 TARGET=ARM;
4293                 arch_target=arm;
4294                 ACCESS_UNALIGNED="no"
4295                 AOT_SUPPORTED="yes"
4296                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4297                 BTLS_SUPPORTED=yes
4298                 BTLS_PLATFORM=arm
4299                 AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4300                 case "$target" in
4301                 arm*-linux*-gnueabi)
4302                         BTLS_PLATFORM=armsoft
4303                         ;;
4304                 esac
4305                 ;;
4306         arm*-netbsd*-eabi*)
4307                 TARGET=ARM;
4308                 arch_target=arm;
4309                 ACCESS_UNALIGNED="no"
4310                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4311                 ;;
4312         aarch64-*darwin*ilp32)
4313                 TARGET=ARM6432
4314                 arch_target=arm64
4315                 AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4316                 sizeof_register=8
4317                 # assuming no other target other than watchOS is using aarch64*darwin triple
4318                 TARGET_SYS=WATCHOS
4319                 ;;
4320         aarch64-*)
4321                 # https://lkml.org/lkml/2012/7/15/133
4322                 TARGET=ARM64
4323                 arch_target=arm64
4324                 boehm_supported=false
4325                 AOT_SUPPORTED="yes"
4326                 BTLS_SUPPORTED=yes
4327                 BTLS_PLATFORM=aarch64
4328                 AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4329                 ;;
4330         s390x-*-linux*)
4331                 TARGET=S390X;
4332                 arch_target=s390x;
4333                 ACCESS_UNALIGNED="yes"
4334                 BTLS_SUPPORTED=yes
4335                 BTLS_PLATFORM=s390x
4336                 CFLAGS="$CFLAGS -mbackchain -D__USE_STRING_INLINES"
4337                 ;;
4338         riscv32-*)
4339                 TARGET=RISCV32
4340                 ACCESS_UNALIGNED=no
4341                 AOT_SUPPORTED=no
4342                 BTLS_SUPPORTED=yes
4343                 BTLS_PLATFORM=riscv32
4344                 arch_target=riscv32
4345                 boehm_supported=false
4346                 ;;
4347         riscv64*)
4348                 TARGET=RISCV64
4349                 ACCESS_UNALIGNED=no
4350                 AOT_SUPPORTED=no
4351                 BTLS_SUPPORTED=yes
4352                 BTLS_PLATFORM=riscv64
4353                 arch_target=riscv64
4354                 boehm_supported=false
4355                 ;;
4356 esac
4358 HOST=$TARGET
4360 if test "x$host" != "x$target"; then
4361    AC_DEFINE(MONO_CROSS_COMPILE,1,[The runtime is compiled for cross-compiling mode])
4362    enable_mcs_build=no
4363    enable_support_build=no
4364    BTLS_SUPPORTED=no
4365    # Can't use tls, since it depends on the runtime detection of tls offsets
4366    # in mono-compiler.h
4367    with_tls=pthread
4368    target_mach=no
4369    case "$target" in
4370    wasm32*)
4371                 TARGET=WASM
4372                 arch_target=wasm
4373                 AC_DEFINE(TARGET_WASM, 1, [Target wasm])
4374                 ;;
4375    arm*-darwin*)
4376                 TARGET=ARM;
4377                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4378                 case "$target" in
4379                 armv7k-*)
4380                         arm_fpu=VFP_HARD
4381                         AC_DEFINE(TARGET_WATCHOS, 1, [...])
4382                         ;;
4383                 esac            
4384                 ;;
4385    powerpc64-ps3-linux-gnu)
4386                 TARGET=POWERPC64
4387                 arch_target=powerpc64
4388                 AC_DEFINE(TARGET_PS3, 1, [...])
4389                 # It would be better to just use TARGET_POWERPC64, but lots of code already
4390                 # uses this define
4391                 AC_DEFINE(__mono_ppc64__, 1, [...])
4392                 AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4393                 sizeof_register=8
4394                 target_byte_order=G_BIG_ENDIAN
4395                 ;;
4396    powerpc64-xbox360-linux-gnu)
4397                 TARGET=POWERPC64
4398                 arch_target=powerpc64
4399                 AC_DEFINE(TARGET_XBOX360, 1, [...])
4400                 # It would be better to just use TARGET_POWERPC64, but lots of code already
4401                 # uses this define
4402                 sizeof_register=8
4403                 target_byte_order=G_BIG_ENDIAN
4404                 ;;
4405    arm*-linux-*)
4406                 TARGET=ARM;
4407                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4408                 ;;
4409    arm*-netbsd*-eabi*)
4410                 TARGET=ARM;
4411                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4412                 ;;
4413    i686*-linux-*)
4414                 TARGET=X86;
4415                 ;;
4416    i*86-apple-*)
4417                 TARGET=X86;
4418                 ;;
4419    x86_64*-linux-*)
4420                 TARGET=AMD64;
4421                 ;;
4422    x86_64-ps4-freebsd)
4423                 TARGET=AMD64;
4424                 AC_DEFINE(TARGET_PS4, 1, [...])
4425                 AC_DEFINE(DISABLE_HW_TRAPS, 1, [...])
4426                 CPPFLAGS="$CPPFLAGS"
4427                 target_win32=no
4428                 ;;
4429         aarch64*darwin*_ilp32)
4430                 TARGET=ARM6432;
4431                 AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4432                 AC_DEFINE(TARGET_WATCHOS, 1, [...])
4433                 ;;
4434         aarch64-*)
4435                 TARGET=ARM64
4436                 ;;
4437         riscv32*)
4438                 TARGET=RISCV32
4439                 AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4440                 AC_DEFINE([TARGET_RISCV32], [1], [Target is 32-bit RISC-V])
4441                 arch_target=riscv32
4442                 target_mach=no
4443                 with_tls=pthread
4444                 ;;
4445         riscv64*)
4446                 TARGET=RISCV64
4447                 AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4448                 AC_DEFINE([TARGET_RISCV64], [1], [Target is 64-bit RISC-V])
4449                 arch_target=riscv64
4450                 target_mach=no
4451                 with_tls=pthread
4452                 ;;
4453         x86_64-google-fuchsia)
4454                 TARGET=AMD64
4455                 target_win32=nop
4456                 AC_DEFINE(HOST_FUCHSIA,1,[Targeting the Fuchsia platform])
4457                 ;;
4458         *)
4459                 AC_MSG_ERROR([Cross compiling is not supported for target $target])
4460         esac
4462         case "$target" in
4463         *-darwin*)
4464                 target_mach=yes
4465                 ;;
4466         *-linux-android*)
4467                 AC_DEFINE(TARGET_ANDROID, 1, [...])
4468                 ;;
4469         esac
4472 case "$TARGET" in
4473 WASM)
4474         AC_DEFINE(TARGET_WASM, 1, [...])
4475         arch_target=wasm
4476         ;;
4477 X86)
4478         AC_DEFINE(TARGET_X86, 1, [...])
4479         arch_target=x86
4480         ;;
4481 AMD64)
4482         AC_DEFINE(TARGET_AMD64, 1, [...])
4483         arch_target=amd64
4484         ;;
4485 ARM)
4486         AC_DEFINE(TARGET_ARM, 1, [...])
4487         arch_target=arm
4488         ACCESS_UNALIGNED="no"
4489         ;;
4490 ARM64|ARM6432)
4491         AC_DEFINE(TARGET_ARM64, 1, [...])
4492         arch_target=arm64
4493         ;;
4494 POWERPC)
4495         AC_DEFINE(TARGET_POWERPC, 1, [...])
4496         ;;
4497 POWERPC64)
4498         AC_DEFINE(TARGET_POWERPC, 1, [...])
4499         AC_DEFINE(TARGET_POWERPC64, 1, [...])
4500         ;;
4501 S390X)
4502         AC_DEFINE(TARGET_S390X, 1, [...])
4503         ;;
4504 MIPS)
4505         AC_DEFINE(TARGET_MIPS, 1, [...])
4506         ;;
4507 SPARC)
4508         AC_DEFINE(TARGET_SPARC, 1, [...])
4509         ;;
4510 SPARC64)
4511         AC_DEFINE(TARGET_SPARC64, 1, [...])
4512         ;;
4513 RISCV32)
4514         AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4515         AC_DEFINE([TARGET_RISCV32], [1], [Target is 32-bit RISC-V])
4516         ;;
4517 RISCV64)
4518         AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4519         AC_DEFINE([TARGET_RISCV64], [1], [Target is 64-bit RISC-V])
4520         ;;
4521 esac
4523 case "$TARGET" in
4524 *32* | ARM | X86 | POWERPC | MIPS | SPARC | WASM | ARM6432)
4525     target_sizeof_void_p=4
4526     ;;
4527 *64* | S390X)
4528     target_sizeof_void_p=8
4529     ;;
4531     AC_MSG_ERROR([unknown target])
4532     ;;
4533 esac
4535 case "$HOST" in
4536 WASM)
4537         AC_DEFINE(HOST_WASM, 1, [...])
4538         ;;
4539 X86)
4540         AC_DEFINE(HOST_X86, 1, [...])
4541         ;;
4542 AMD64)
4543         AC_DEFINE(HOST_AMD64, 1, [...])
4544         ;;
4545 ARM)
4546         AC_DEFINE(HOST_ARM, 1, [...])
4547         ;;
4548 ARM64)
4549         AC_DEFINE(HOST_ARM64, 1, [...])
4550         ;;
4551 POWERPC)
4552         AC_DEFINE(HOST_POWERPC, 1, [...])
4553         ;;
4554 POWERPC64)
4555         AC_DEFINE(HOST_POWERPC, 1, [...])
4556         AC_DEFINE(HOST_POWERPC64, 1, [...])
4557         ;;
4558 S390X)
4559         AC_DEFINE(HOST_S390X, 1, [...])
4560         ;;
4561 MIPS)
4562         AC_DEFINE(HOST_MIPS, 1, [...])
4563         ;;
4564 SPARC)
4565         AC_DEFINE(HOST_SPARC, 1, [...])
4566         ;;
4567 SPARC64)
4568         AC_DEFINE(HOST_SPARC64, 1, [...])
4569         ;;
4570 RISCV32)
4571         AC_DEFINE([HOST_RISCV], [1], [Host is RISC-V])
4572         AC_DEFINE([HOST_RISCV32], [1], [Host is 32-bit RISC-V])
4573         ;;
4574 RISCV64)
4575         AC_DEFINE([HOST_RISCV], [1], [Host is RISC-V])
4576         AC_DEFINE([HOST_RISCV64], [1], [Host is 64-bit RISC-V])
4577         ;;
4578 esac
4580 MONO_ARCH_GSHAREDVT_SUPPORTED=0
4581 case "$HOST" in
4582 X86 | AMD64 | ARM | ARM64)
4583         MONO_ARCH_GSHAREDVT_SUPPORTED=1 # keep in sync with mini-{x86,amd64,arm,arm64}.h
4584         ;;
4585 esac
4587 AM_CONDITIONAL(MONO_ARCH_GSHAREDVT_SUPPORTED, test $MONO_ARCH_GSHAREDVT_SUPPORTED = 1)
4588 AM_CONDITIONAL(TARGET_WASM, test $arch_target = wasm)
4590 dnl *************
4591 dnl *** VTUNE ***
4592 dnl *************
4594 AC_ARG_ENABLE(vtune,[  --enable-vtune   Enable the VTUNE back-end], enable_vtune=$enableval, enable_vtune=no)
4595 AC_ARG_WITH(vtune, [  --with-vtune=<vtune prefix>       Enable jit vtune profiling], enable_vtune=yes,)
4597 AM_CONDITIONAL(HAVE_VTUNE, test x$enable_vtune = xyes)
4599 if test "x$enable_vtune" = "xyes"; then
4600         if test "x$with_vtune" = "x"; then
4601                 VTUNE_PATH=/opt/intel/vtune_amplifier_xe
4602         else
4603                 VTUNE_PATH=$with_vtune
4604         fi
4605         VTUNE_INCLUDE=$VTUNE_PATH/include
4606         case "$TARGET" in
4607         X86)
4608                 VTUNE_LIB=$VTUNE_PATH/lib32
4609                 ;;
4610         AMD64)
4611                 VTUNE_LIB=$VTUNE_PATH/lib64
4612                 ;;
4613         *)
4614                 AC_MSG_ERROR([Unsupported target $TARGET for VTUNE.])
4615                 ;;
4616         esac
4617         if test ! -f $VTUNE_INCLUDE/jitprofiling.h; then
4618                 AC_MSG_ERROR([VTUNE $VTUNE_INCLUDE/jitprofiling.h not found.])
4619         fi
4620         if test ! -f $VTUNE_LIB/libjitprofiling.a; then
4621                 AC_MSG_ERROR([VTUNE $VTUNE_LIB/libjitprofiling.a not found.])
4622         fi
4624         VTUNE_CFLAGS=-I$VTUNE_INCLUDE
4625         VTUNE_LIBS="-L/$VTUNE_LIB/ -ljitprofiling"
4627         AC_SUBST(VTUNE_LIBS)
4628         AC_SUBST(VTUNE_CFLAGS)
4630 dnl Use GCC atomic ops if they work on the target.
4631 if test x$GCC = "xyes"; then
4632         case $TARGET in
4633         X86 | AMD64 | ARM | ARM64 | ARM6432 | POWERPC | POWERPC64 | MIPS | S390X | SPARC | SPARC64 | RISCV32 | RISCV64)
4634                 AC_DEFINE(USE_GCC_ATOMIC_OPS, 1, [...])
4635                 ;;
4636         esac
4639 if test "x$target_mach" = "xyes"; then
4641    if test "x$TARGET_SYS" = "xWATCHOS"; then
4642           AC_DEFINE(TARGET_WATCHOS,1,[The JIT/AOT targets WatchOS])
4643           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_WATCHOS"
4644           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_WATCHOS"
4645           BTLS_SUPPORTED=no
4646    elif test "x$TARGET" = "xARM" -o "x$TARGET" = "xARM64" -o "x$TARGET" = "xARM6432"; then
4647           AC_DEFINE(TARGET_IOS,1,[The JIT/AOT targets iOS])
4648           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_IOS"
4649           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_IOS"
4650           BTLS_SUPPORTED=no
4651           target_ios=yes
4652    else
4653        AC_TRY_COMPILE([#include "TargetConditionals.h"],[
4654        #if TARGET_IPHONE_SIMULATOR == 1 || TARGET_OS_IPHONE == 1
4655        #error fail this for ios
4656        #endif
4657        ], [
4658                   AC_DEFINE(TARGET_OSX,1,[The JIT/AOT targets OSX])
4659           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_OSX"
4660           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_OSX"
4661           target_osx=yes
4662        ], [
4663           AC_DEFINE(TARGET_IOS,1,[The JIT/AOT targets iOS])
4664           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_IOS"
4665           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_IOS"
4666           BTLS_SUPPORTED=no
4667                   target_ios=yes
4668        ])
4669         fi
4670    AC_DEFINE(TARGET_MACH,1,[The JIT/AOT targets Apple platforms])
4673 AM_CONDITIONAL(TARGET_OSX, test x$target_osx = xyes)
4675 AC_SUBST(SIZEOF_VOID_P,[$ac_cv_sizeof_void_p])
4677 if test "x$target_byte_order" = "xG_BIG_ENDIAN"; then
4678    AC_DEFINE(TARGET_BYTE_ORDER,G_BIG_ENDIAN,[byte order of target])
4679 elif test "x$target_byte_order" = "xG_LITTLE_ENDIAN"; then
4680    AC_DEFINE(TARGET_BYTE_ORDER,G_LITTLE_ENDIAN,[byte order of target])
4681 else
4682    AC_DEFINE(TARGET_BYTE_ORDER,G_BYTE_ORDER,[byte order of target])
4685 AC_DEFINE_UNQUOTED(TARGET_SIZEOF_VOID_P,${target_sizeof_void_p},[wordsize of target])
4687 if test "x$sizeof_register" = "x4"; then
4688   AC_DEFINE(SIZEOF_REGISTER,4,[size of target machine integer registers])
4689 elif test "x$sizeof_register" = "x8"; then
4690   AC_DEFINE(SIZEOF_REGISTER,8,[size of target machine integer registers])
4691 else
4692   AC_DEFINE_UNQUOTED(SIZEOF_REGISTER,${target_sizeof_void_p},[size of target machine integer registers])
4695 if test "x$have_visibility_hidden" = "xyes"; then
4696    AC_DEFINE(HAVE_VISIBILITY_HIDDEN, 1, [Support for the visibility ("hidden") attribute])
4699 if test "x$have_deprecated" = "xyes"; then
4700    AC_DEFINE(HAVE_DEPRECATED, 1, [Support for the deprecated attribute])
4703 dnl 
4704 dnl Simple Generational checks (sgen)
4706 SGEN_DEFINES=
4707 AC_ARG_WITH(sgen,                    [  --with-sgen=yes,no             Extra Generational GC, default=yes],[buildsgen=$with_sgen],[buildsgen=yes])
4708 AC_ARG_WITH(sgen-default-concurrent, [  --with-sgen-default-concurrent=yes,no             Use Concurrent GC, default=no],[],[with_sgen_default_concurrent=no])
4709 if test x$buildsgen = xyes; then
4710    AC_DEFINE(HAVE_MOVING_COLLECTOR, 1, [Moving collector])
4711    SGEN_DEFINES="-DHAVE_SGEN_GC"
4713         conc_gc_msg=""
4714    if test x$with_sgen_default_concurrent != xno; then
4715        AC_DEFINE(HAVE_CONC_GC_AS_DEFAULT, 1, [Defaults to concurrent GC])
4716            conc_gc_msg=" (concurrent by default)"
4717    fi
4719    if test "x$gc_msg" = "x"; then
4720       gc_msg="sgen$conc_gc_msg"
4721    else
4722       gc_msg="sgen$conc_gc_msg and $gc_msg"
4723    fi
4725 AC_SUBST(SGEN_DEFINES)
4726 AM_CONDITIONAL(SUPPORT_SGEN, test x$buildsgen = xyes)
4728 jit_status="Building and using the JIT"
4730 libsuffix=".so"
4732 case "$host" in
4733      *-*-darwin*)
4734         libsuffix=".dylib"
4735         LIBC="libc.dylib"
4736         INTL="libintl.dylib"
4737         SQLITE="libsqlite.0.dylib"
4738         SQLITE3="libsqlite3.0.dylib"
4739         X11="libX11.dylib"
4740         GDKX11="libgdk-x11-2.0.dylib"
4741         GTKX11="libgtk-x11-2.0.dylib"
4742         ;;
4743      *-*-*netbsd*)
4744         LIBC="libc.so"
4745         INTL="libintl.so"
4746         SQLITE="libsqlite.so"
4747         SQLITE3="libsqlite3.so"
4748         ;;
4749      *-*-kfreebsd*-gnu)
4750         LIBC="libc.so.0.1"
4751         INTL="libc.so.0.1"
4752         X11="libX11.so.6"
4753         ;;
4754     *-*-*freebsd*)
4755         LIBC="libc.so.7"
4756         INTL="libintl.so"
4757         SQLITE="libsqlite.so"
4758         SQLITE3="libsqlite3.so"
4759         ;;
4760     *-*-*openbsd*)
4761         LIBC="libc.so"
4762         INTL="libintl.so"
4763         SQLITE="libsqlite.so"
4764         SQLITE3="libsqlite3.so"
4765         ;;
4766     *-*-*linux*)
4767         AC_PATH_X
4768         dlsearch_path=`(libtool --config ; echo eval echo \\$sys_lib_dlsearch_path_spec) | sh`
4769         AC_MSG_CHECKING(for the soname of libX11.so)
4770         for i in $x_libraries $dlsearch_path; do
4771                 for r in 4 5 6; do
4772                         if test -f $i/libX11.so.$r; then
4773                                 X11=libX11.so.$r
4774                                 AC_MSG_RESULT($X11)
4775                         fi
4776                 done
4777         done
4778         
4779         if test "x$X11" = "xlibX11.so"; then
4780                 AC_MSG_WARN([Could not find libX11.so. Do you have X.org or XFree86 installed? Assuming libX11.so.6...]);
4781                 X11=libX11.so.6
4782         fi
4783         ;;
4784 esac
4786 AC_SUBST(libsuffix)
4788 ######################################
4789 # EGLIB CHECKS
4790 ######################################
4792 GNUC_PRETTY=
4793 GNUC_UNUSED=
4794 BREAKPOINT="G_STMT_START { raise (SIGTRAP); } G_STMT_END"
4795 if test x$GCC = xyes; then
4796    GNUC_UNUSED='__attribute__((__unused__))'
4797    GNUC_NORETURN='__attribute__((__noreturn__))'
4798    case $host_cpu in
4799      i*86|x86_64) BREAKPOINT="G_STMT_START { __asm__ (\"int \$03\"); } G_STMT_END" ;;
4800    esac
4802 AC_SUBST(GNUC_PRETTY)
4803 AC_SUBST(GNUC_UNUSED)
4804 AC_SUBST(GNUC_NORETURN)
4805 AC_SUBST(BREAKPOINT)
4807 AC_C_BIGENDIAN([ORDER=G_BIG_ENDIAN],[ORDER=G_LITTLE_ENDIAN])
4809 case $host in
4810 *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
4811     PATHSEP='\\'
4812     SEARCHSEP=';'
4813     OS="WIN32"
4814     PIDTYPE='void *'
4815     ;;
4817     PATHSEP='/'
4818     SEARCHSEP=':'
4819     OS="UNIX"
4820     PIDTYPE='int'
4821     ;;
4822 esac
4824 case $host in
4825         *-*-solaris*)
4826         CFLAGS="$CFLAGS -D_POSIX_PTHREAD_SEMANTICS"
4827         ;;
4828 esac
4830 case $target in
4831 arm*-darwin*|aarch64*-*|riscv*)
4832     CFLAGS="$CFLAGS -U_FORTIFY_SOURCE"
4833     ;;
4834 i*86-*-darwin*)
4835     ORDER=G_LITTLE_ENDIAN
4836     ;;
4837 *-*-haiku*)
4838     LDFLAGS="$LDFLAGS -ltextencoding"
4839     ;;
4840 *-*-openbsd*)
4841     CFLAGS="$CFLAGS -pthread"
4842     LDFLAGS="$LDFLAGS -pthread"
4843     ;;
4844 esac
4846 AC_SUBST(ORDER)
4847 AC_SUBST(PATHSEP)
4848 AC_SUBST(SEARCHSEP)
4849 AC_SUBST(OS)
4850 AC_SUBST(PIDTYPE)
4852 # Defined for all targets/platforms using classic Windows API support.
4853 AC_DEFINE(HAVE_CLASSIC_WINAPI_SUPPORT, 1, [Use classic Windows API support])
4854 AC_DEFINE(HAVE_UWP_WINAPI_SUPPORT, 0, [Don't use UWP Windows API support])
4856 AC_CHECK_FUNCS(strlcpy stpcpy strtok_r rewinddir vasprintf)
4857 AC_CHECK_FUNCS(getrlimit)
4858 AC_CHECK_FUNCS(fork execv execve)
4859 AC_CHECK_FUNCS(waitpid)
4861 AC_ARG_WITH([overridable-allocators], [  --with-overridable-allocators  allow g_*alloc/g_free to call custom allocators set via g_mem_set_vtable])
4863 if test x$with_overridable_allocators = xyes; then
4864         AC_DEFINE(ENABLE_OVERRIDABLE_ALLOCATORS,1,[Overridable allocator support enabled])
4865   AC_MSG_NOTICE([Overridable allocator support enabled])
4866 else
4867   AC_MSG_NOTICE([Overridable allocator support disabled])
4871 # Mono currently supports 10.6, but strndup is not available prior to 10.7; avoiding
4872 # the detection of strndup on OS X so Mono built on 10.7+ still runs on 10.6. This can be
4873 # removed once support for 10.6 is dropped.
4875 # iOS detection of strndup and getpwuid_r is faulty for some reason so let's simply avoid it
4877 if test x$target_osx = xyes; then
4878 AC_CHECK_FUNCS(getpwuid_r)
4879 elif test x$target_ios = xno; then
4880 AC_CHECK_FUNCS(strndup getpwuid_r)
4883 AC_SEARCH_LIBS(sqrtf, m)
4885 # nanosleep may not be part of libc, also search it in other libraries
4886 AC_SEARCH_LIBS(nanosleep, rt)
4888 AC_SEARCH_LIBS(dlopen, dl)
4889 old_ldflags="${LDFLAGS}"
4890 # GNU specific option, this confuses IBM ld, but do offer alternatives when possible
4891 if test $lt_cv_prog_gnu_ld = yes; then
4892         LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
4893 else
4894         case $host in
4895         *-*-aix*|*-*-os400*)
4896                 ;;
4897         *)
4898                 dnl Try to use export-dynamic anyways
4899                 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
4900                 ;;
4901         esac
4903 AC_TRY_LINK(, [int i;], found_export_dynamic=yes, found_export_dynamic=no)
4904 if test $found_export_dynamic = no; then
4905         LDFLAGS="${old_ldflags}"
4908 AC_CHECK_HEADERS(getopt.h sys/select.h sys/time.h sys/wait.h pwd.h iconv.h sys/types.h sys/resource.h)
4909 dnl giconv.c will check on HAVE_ICONV_H but we need this for link time
4910 AC_CHECK_LIB(iconv, iconv_open)
4911 AC_CHECK_HEADER(alloca.h, [HAVE_ALLOCA_H=1], [HAVE_ALLOCA_H=0])
4912 AC_SUBST(HAVE_ALLOCA_H)
4914 # Get the exact type of size_t, not just its size.
4915 # This is so we can find an exact printf format among u, lu, llu, I64u.
4916 # To avoid warnings about slight mismatches.
4917 # C99 runtime "zu" dependency is being avoided here.
4919 # We have to compile as C++ because C is too lenient
4920 # and lets the wrong thing compile, with warnings.
4922 # Note: "zu" or ifdef <something> have the advantage
4923 # of producing installable "biarch" headers. i.e. one Mac header
4924 # for Mac/x86 and Mac/amd64.
4926 AC_LANG_PUSH(C++)
4928 # Check long before int because it is the overwhelming Unix answer,
4929 # across 32bit and 64bit systems -- fewer compiler invocations in autoconf.
4931 # long ahead of int also tends to produce biarch-compatible headers except Windows.
4933 AC_MSG_CHECKING(if size_t is unsigned long)
4934 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
4935         #include <stddef.h>
4936         unsigned long *a = (size_t*)0;
4937 ])], [
4938         AC_MSG_RESULT(yes)
4939         AC_SUBST(GSIZE_FORMAT, '"lu"')
4940 ], [
4941         AC_MSG_RESULT(no)
4942         AC_MSG_CHECKING(if size_t is unsigned int)
4943         AC_COMPILE_IFELSE([AC_LANG_SOURCE([
4944                 #include <stddef.h>
4945                 unsigned *a = (size_t*)0;
4946         ])], [
4947                 AC_MSG_RESULT(yes)
4948                 AC_SUBST(GSIZE_FORMAT, '"u"')
4949         ], [
4950 # At this point the majority of systems have their answer,
4951 # and we descend into non-standard or new-standard territory.
4953 # Check __int64 first because I64 on some systems predates ll, enabling
4954 # new compiler/old runtime interop, and the types always have the same size.
4955                 AC_MSG_RESULT(no)
4956                 AC_MSG_CHECKING(if size_t is unsigned __int64)
4957                 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
4958                         #include <stddef.h>
4959                         unsigned __int64 *a = (size_t*)0;
4960                 ])], [
4961                         AC_MSG_RESULT(yes)
4962                         AC_SUBST(GSIZE_FORMAT, '"I64u"')
4963                 ], [
4964                         AC_MSG_RESULT(no)
4965                         AC_MSG_CHECKING(if size_t is unsigned long long)
4966                         AC_COMPILE_IFELSE([AC_LANG_SOURCE([
4967                                 #include <stddef.h>
4968                                 unsigned long long *a = (size_t*)0;
4969                         ])], [
4970                                 AC_MSG_RESULT(yes)
4971                                 AC_SUBST(GSIZE_FORMAT, '"llu"')
4972                         ], [
4973                                 AC_MSG_RESULT(no)
4974                                 AC_MSG_ERROR(Unable to determine size_t among unsigned long, int, __int64, long long)
4975                         ] )
4976                 ] )
4977         ] )
4978 ] )
4980 AC_LANG_POP
4982 # If size_t/ptrdiff_t is correct, use it. Otherwise C99 [u]intptr_t.
4983 # This provides for an exact match with functions that
4984 # take size_t like malloc and pthread_attr_getstacksize, avoiding warnings.
4985 # uintptr_t is not necessarily the same.
4987 # ptrdiff_t is preferred over ssize_t as it is C89 vs. new Posix.
4988 # ssize_t looks nicer but ptrdiff_t is wrapped up as gssize anyway.
4990 if test $ac_cv_sizeof_void_p = $ac_cv_sizeof_size_t; then
4991    GSIZE="size_t"
4992    GSSIZE="ptrdiff_t"
4993 else
4994    GSIZE="uintptr_t"
4995    GSSIZE="intptr_t"
4998 AC_SUBST(GSIZE)
4999 AC_SUBST(GSSIZE)
5000 AC_SUBST(GSIZE_FORMAT)
5003 # END OF EGLIB CHECKS
5006 AC_ARG_WITH([libgdiplus],
5007         [  --with-libgdiplus=installed|sibling|<path>   Override the libgdiplus used for System.Drawing tests (defaults to installed)],
5008         [], [with_libgdiplus=installed])
5010 # default install location
5011 libgdiplus_install_loc=libgdiplus${libsuffix}
5012 case "$host" in
5013     *-*-*linux*)
5014     libgdiplus_install_loc=libgdiplus${libsuffix}.0
5015     ;;
5016 esac
5018 case $with_libgdiplus in
5019     no)
5020     libgdiplus_loc=
5021     ;;
5023     installed)
5024     libgdiplus_loc=
5025     if test x$cross_compiling = xno; then
5026         if test x$host_darwin = xyes; then
5027             a=/Library/Frameworks/Mono.framework/Versions/Current/lib/$libgdiplus_install_loc
5028             if test -x $a; then
5029               libgdiplus_install_loc=$a
5030               libgdiplus_loc=$a
5031             fi
5032         fi
5033     fi
5034     ;;
5036     yes|sibling)
5037     libgdiplus_loc=`cd ../libgdiplus && pwd`/src/libgdiplus.la
5038     ;;
5040     /*) # absolute path, assume it is an install location
5041     libgdiplus_loc=$with_libgdiplus
5042     libgdiplus_install_loc=$with_libgdiplus
5043     ;;
5045     *)
5046     libgdiplus_loc=`pwd`/$with_libgdiplus
5047     ;;
5048 esac
5049 AC_SUBST(libgdiplus_loc)
5050 AC_SUBST(libgdiplus_install_loc)
5052 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)
5053 if test "x$icall_symbol_map" = "xyes"; then
5054    AC_DEFINE(ENABLE_ICALL_SYMBOL_MAP, 1, [Icall symbol map enabled])
5057 AC_ARG_ENABLE(icall-export,[  --enable-icall-export Export icall functions], icall_export=$enableval, icall_export=no)
5058 if test "x$icall_export" = "xyes"; then
5059    AC_DEFINE(ENABLE_ICALL_EXPORT, 1, [Icall export enabled])
5062 AC_ARG_ENABLE(icall-tables,[  --disable-icall-tables Disable the runtime lookup of icalls], icall_tables=$enableval, icall_tables=yes)
5063 if test "x$icall_tables" = "xno"; then
5064    AC_DEFINE(DISABLE_ICALL_TABLES, 1, [Icall tables disabled])
5067 AM_CONDITIONAL(DISABLE_ICALL_TABLES, test x$icall_tables = xno)
5069 if test "x$with_tls" = "x__thread"; then
5070         AC_DEFINE(MONO_KEYWORD_THREAD, __thread, [Have __thread keyword])
5071         # Pass the information to libgc
5072         CPPFLAGS="$CPPFLAGS -DUSE_COMPILER_TLS"
5073         AC_MSG_CHECKING(if the tls_model attribute is supported)
5074         AC_TRY_COMPILE([static __thread int foo __attribute__((tls_model("initial-exec")));], [
5075                 ], [
5076                         AC_MSG_RESULT(yes)
5077                         AC_DEFINE(HAVE_TLS_MODEL_ATTR, 1, [tls_model available])
5078                 ], [
5079                         AC_MSG_RESULT(no)
5080         ])
5083 if test ${TARGET} = ARM; then
5084         dnl ******************************************
5085         dnl *** Check to see what FPU is available ***
5086         dnl ******************************************
5087         AC_MSG_CHECKING(which FPU to use)
5089         #
5090         # This is a bit tricky:
5091         #
5092         # if (__ARM_PCS_VFP) {
5093         #       /* mfloat-abi=hard == VFP with hard ABI */
5094         # } elif (!__SOFTFP__) {
5095         #       /* mfloat-abi=softfp == VFP with soft ABI */
5096         # } else {
5097         #       /* mfloat-abi=soft == no VFP */
5098         # }
5099         #
5100         # The exception is iOS (w/ GCC) where none of the above
5101         # are defined (but iOS always uses the 'softfp' ABI).
5102         #
5103         # No support for FPA.
5104         #
5106         fpu=NONE
5108         # iOS GCC always uses the 'softfp' ABI.
5109         if test x"$GCC" = xyes && test x$host_darwin = xyes; then
5110                 fpu=VFP
5111         fi
5113         # Are we using the 'hard' ABI?
5114         if test x$fpu = xNONE; then
5115                 AC_TRY_COMPILE([], [
5116                         #ifndef __ARM_PCS_VFP
5117                         #error "Float ABI is not 'hard'"
5118                         #endif
5119                 ], [
5120                         fpu=VFP_HARD
5121                 ], [
5122                         fpu=NONE
5123                 ])
5124         fi
5126         # No 'hard' ABI. 'soft' or 'softfp'?
5127         if test x$fpu = xNONE; then
5128                 AC_TRY_COMPILE([], [
5129                         #ifdef __SOFTFP__
5130                         #error "Float ABI is not 'softfp'"
5131                         #endif
5132                 ], [
5133                         fpu=VFP
5134                 ], [
5135                         fpu=NONE
5136                 ])
5137         fi
5139         if test x$arm_fpu != x; then
5140            fpu=$arm_fpu
5141         fi
5143         AC_MSG_RESULT($fpu)
5144         CPPFLAGS="$CPPFLAGS -DARM_FPU_$fpu=1"
5145         unset fpu
5147         dnl *********************************************
5148         dnl *** Check which ARM version(s) we can use ***
5149         dnl *********************************************
5150         AC_MSG_CHECKING(which ARM version to use)
5152         AC_TRY_COMPILE([], [
5153                 #if !defined(__ARM_ARCH_5T__) && !defined(__ARM_ARCH_5TE__) && !defined(__ARM_ARCH_5TEJ__)
5154                 #error Not on ARM v5.
5155                 #endif
5156         ], [
5157                 arm_v5=yes
5159                 arm_ver=ARMv5
5160         ], [])
5162         AC_TRY_COMPILE([], [
5163                 #if !defined(__ARM_ARCH_6J__) && !defined(__ARM_ARCH_6ZK__) && !defined(__ARM_ARCH_6K__) && !defined(__ARM_ARCH_6T2__) && !defined(__ARM_ARCH_6M__)
5164                 #error Not on ARM v6.
5165                 #endif
5166         ], [
5167                 arm_v5=yes
5168                 arm_v6=yes
5170                 arm_ver=ARMv6
5171         ], [])
5173         AC_TRY_COMPILE([], [
5174                 #if !defined(__ARM_ARCH_7A__) && !defined(__ARM_ARCH_7R__) && !defined(__ARM_ARCH_7EM__) && !defined(__ARM_ARCH_7M__) && !defined(__ARM_ARCH_7S__)
5175                 #error Not on ARM v7.
5176                 #endif
5177         ], [
5178                 arm_v5=yes
5179                 arm_v6=yes
5180                 arm_v7=yes
5182                 arm_ver=ARMv7
5183         ], [])
5185         AC_MSG_RESULT($arm_ver)
5187         if test x$arm_v5 = xyes; then
5188                 AC_DEFINE(HAVE_ARMV5, 1, [ARM v5])
5189                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DHAVE_ARMV5=1"
5190         fi
5192         if test x$arm_v6 = xyes; then
5193                 AC_DEFINE(HAVE_ARMV6, 1, [ARM v6])
5194                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DHAVE_ARMV6=1"
5195         fi
5197         if test x$arm_v7 = xyes; then
5198                 AC_DEFINE(HAVE_ARMV7, 1, [ARM v7])
5199                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DHAVE_ARMV7=1"
5200         fi
5203 if test ${TARGET} = RISCV32 -o ${TARGET} = RISCV64; then
5204         AC_ARG_WITH([riscv-fpabi], [  --with-riscv-fpabi=auto,double,soft   Select RISC-V floating point ABI (auto)], [fpabi=$withval], [fpabi=double])
5206         AC_MSG_CHECKING([which RISC-V floating point ABI to use])
5208         if test x$fpabi = xauto; then
5209                 AC_TRY_COMPILE([], [
5210                         #ifdef __riscv_float_abi_double
5211                         #error "double"
5212                         #endif
5213                 ], [
5214                         fpabi=auto
5215                 ], [
5216                         fpabi=double
5217                 ])
5218         fi
5220         if test x$fpabi = xauto; then
5221                 AC_TRY_COMPILE([], [
5222                         #ifdef __riscv_float_abi_single
5223                         #error "single"
5224                         #endif
5225                 ], [
5226                         fpabi=auto
5227                 ], [
5228                         fpabi=single
5229                 ])
5230         fi
5232         if test x$fpabi = xauto; then
5233                 AC_TRY_COMPILE([], [
5234                         #ifdef __riscv_float_abi_soft
5235                         #error "soft"
5236                         #endif
5237                 ], [
5238                         fpabi=auto
5239                 ], [
5240                         fpabi=soft
5241                 ])
5242         fi
5244         case $fpabi in
5245         double)
5246                 AC_DEFINE([RISCV_FPABI_DOUBLE], [1], [RISC-V FPABI is double-precision])
5247                 AC_MSG_RESULT([double-precision])
5248                 ;;
5249         single)
5250                 AC_DEFINE([RISCV_FPABI_SINGLE], [1], [RISC-V FPABI is single-precision])
5251                 AC_MSG_ERROR([single-precision, not supported])
5252                 ;;
5253         soft)
5254                 AC_DEFINE([RISCV_FPABI_SOFT], [1], [RISC-V FPABI is soft float])
5255                 AC_MSG_RESULT([soft float])
5256                 ;;
5257         auto)
5258                 AC_MSG_ERROR([unknown])
5259                 ;;
5260         *)
5261                 AC_MSG_ERROR([invalid option: $fpabi])
5262                 ;;
5263         esac
5266 if test ${TARGET} = unknown; then
5267         CPPFLAGS="$CPPFLAGS -DNO_PORT"
5268         AC_MSG_WARN("mono has not been ported to $host: some things may not work.")
5271 if test "x$platform_android" = "xyes"; then
5272         case "x${TARGET}" in
5273         xARM)
5274                 case "x$arm_ver" in
5275                 xARMv5)
5276                         BTLS_SUPPORTED=yes
5277                         BTLS_PLATFORM=android-armv5
5278                         ;;
5279                 xARMv6)
5280                         BTLS_SUPPORTED=yes
5281                         BTLS_PLATFORM=android-armv6
5282                         ;;
5283                 xARMv7)
5284                         BTLS_SUPPORTED=yes
5285                         BTLS_PLATFORM=android-armv7
5286                         ;;
5287                 *)
5288                         BTLS_SUPPORTED=no
5289                         ;;
5290                 esac
5291                 ;;
5292         xARM64)
5293                 BTLS_SUPPORTED=yes
5294                 BTLS_PLATFORM=android-v8a
5295                 ;;
5296         xX86)
5297                 BTLS_SUPPORTED=yes
5298                 BTLS_PLATFORM=android-x86
5299                 ;;
5300         xAMD64)
5301                 BTLS_SUPPORTED=yes
5302                 BTLS_PLATFORM=android-x64
5303                 ;;
5304         *)
5305                 BTLS_SUPPORTED=no
5306                 ;;
5307         esac
5310 if test ${ACCESS_UNALIGNED} = no; then
5311         CPPFLAGS="$CPPFLAGS -DNO_UNALIGNED_ACCESS"
5314 if test x$host_darwin = xyes; then
5315         AC_MSG_CHECKING([for ranlib that supports -no_warning_for_no_symbols option])
5316         AS_IF(
5317                 [$RANLIB -no_warning_for_no_symbols 2>&1 | grep -q "unknown option"],
5318                 [AC_MSG_RESULT([no])],
5319                 [
5320                         # avoid AR calling ranlib, libtool calls it anyway. suppress no symbols warning.
5321                         AR_FLAGS="Scru"
5322                         RANLIB="$RANLIB -no_warning_for_no_symbols"
5323                         AC_MSG_RESULT([yes])
5324                 ]
5325         )
5328 case "x$libgc" in
5329         xincluded)
5330                 # Pass CPPFLAGS to libgc configure
5331                 # We should use a separate variable for this to avoid passing useless and
5332                 # potentially problematic defines to libgc (like -D_FILE_OFFSET_BITS=64)
5333                 # This should be executed late so we pick up the final version of CPPFLAGS
5334                 # The problem with this approach, is that during a reconfigure, the main
5335                 # configure scripts gets invoked with these arguments, so we use separate
5336                 # variables understood by libgc's configure to pass CPPFLAGS and CFLAGS.
5337                 TMP_CPPFLAGS="$CPPFLAGS $CPPFLAGS_FOR_LIBGC"
5338                 if test x$TARGET = xSPARC -o x$TARGET = xSPARC64; then
5339                         TMP_CPPFLAGS=`echo $TMP_CPPFLAGS | sed -e 's/-D_FILE_OFFSET_BITS=64//g'`
5340                 fi
5341                 # Don't pass -finstrument-for-thread-suspension in, 
5342                 # if these are instrumented it will be very bad news 
5343                 # (infinite recursion, undefined parking behavior, etc)
5344                 TMP_CPPFLAGS=`echo $TMP_CPPFLAGS | sed -e 's/-finstrument-for-thread-suspension//g'`
5345                 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\""
5346                 if test "x$support_boehm" = "xyes"; then
5347                         AC_CONFIG_SUBDIRS(libgc)
5348                 fi
5349                 ;;
5350 esac
5352 MALLOC_MEMPOOLS=no
5353 AC_ARG_WITH(malloc_mempools,[  --with-malloc-mempools=yes,no  Use malloc for each single mempool allocation (only for runtime debugging, defaults to no)],[
5354         if test x$with_malloc_mempools = xyes; then
5355                 MALLOC_MEMPOOLS=yes
5356                 AC_DEFINE(USE_MALLOC_FOR_MEMPOOLS,1,[Use malloc for each single mempool allocation])
5357         fi
5361 DISABLE_MCS_DOCS=default
5362 AC_ARG_WITH(mcs_docs,[  --with-mcs-docs=yes,no         If you want to build the documentation under mcs (defaults to yes)],[
5363         if test x$with_mcs_docs != xyes; then
5364                 DISABLE_MCS_DOCS=yes
5365         fi
5367 if test -n "$INSTALL_4_x_TRUE"; then :
5368         DISABLE_MCS_DOCS=yes
5370 if test "x$DISABLE_MCS_DOCS" = "xdefault"; then
5371    DISABLE_MCS_DOCS=$DISABLE_MCS_DOCS_default
5374 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)],[
5375         if test x$with_lazy_gc_thread_creation != xno ; then
5376                 AC_DEFINE(LAZY_GC_THREAD_CREATION,1,[Enable lazy gc thread creation by the embedding host.])
5377         fi
5378 ], [with_lazy_gc_thread_creation=no])
5380 dnl *****************************
5381 dnl *** Thread suspend policy ***
5382 dnl *****************************
5384 dnl Set a default hybrid or cooperative suspend on some platforms
5386 dnl Coop default is set by the bitcode preset.
5388 dnl If coop isn't on by default, maybe hybrid should be?
5389 if test x$enable_cooperative_suspend_default != xyes; then
5390         case $HOST in
5391         X86 | AMD64)
5392                 dnl Some host/target confusion, there's no host_osx (and
5393                 dnl host_darwin would be true on iOS not just macOS).
5394                 if test x$target_osx = xyes; then
5395                         enable_hybrid_suspend_default=yes
5396                 elif test x$host_linux = xyes -o x$host_win32 = xyes; then
5397                         enable_hybrid_suspend_default=yes
5398                 fi
5399                 ;;
5400         esac
5403 dnl Now check if there were flags overriding the defaults
5405 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])
5406 AC_ARG_ENABLE(cooperative_suspend, [  --enable-cooperative-suspend      Enable cooperative stop-the-world garbage collection (sgen only) (defaults to no)], [], [enable_cooperative_suspend=default])
5408 if test x$enable_cooperative_suspend = xdefault -a x$with_cooperative_gc != xdefault; then
5409         enable_cooperative_suspend=$with_cooperative_gc
5412 if test x$enable_cooperative_suspend = xdefault; then
5413         enable_cooperative_suspend=$enable_cooperative_suspend_default
5416 if test x$enable_cooperative_suspend != xno; then
5417         AC_DEFINE(ENABLE_COOP_SUSPEND,1,[Enable cooperative stop-the-world garbage collection.])
5420 AM_CONDITIONAL([ENABLE_COOP_SUSPEND], [test x$enable_cooperative_suspend != xno])
5422 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])
5424 if test x$enable_hybrid_suspend = xdefault; then
5425    enable_hybrid_suspend=$enable_hybrid_suspend_default
5428 if test x$enable_hybrid_suspend != xno -a x$enable_cooperative_suspend != xno ; then
5429         AC_MSG_ERROR([Hybrid suspend and Cooperative suspend cannot be both enabled.])
5432 if test x$enable_hybrid_suspend != xno ; then
5433         AC_DEFINE(ENABLE_HYBRID_SUSPEND,1,[Enable hybrid suspend for GC stop-the-world])
5436 AM_CONDITIONAL([ENABLE_HYBRID_SUSPEND], [test x$enable_hybrid_suspend != xno])
5438 dnl End of thread suspend policy
5440 dnl ***************************
5441 dnl *** feature experiments ***
5442 dnl ***************************
5444 dnl When adding experiments, also add to mono/utils/mono-experiments.def
5445 AC_ARG_ENABLE(experiment, [ --enable-experiment=LIST       Enable experimental fatures from the comma-separate LIST.  Available experiments: null],[
5447         if test x$enable_experiment != x ; then
5448                 AC_DEFINE(ENABLE_EXPERIMENTS,1,[Enable feature experiments])
5449         fi
5450         for feature in `echo "$enable_experiment" | sed -e "s/,/ /g"`; do
5451                 eval "mono_experiment_test_enable_$feature='yes'"
5452         done
5454         if test "x$mono_experiment_test_enable_all" = "xyes"; then
5455                 eval "mono_experiment_test_enable_null='yes'"
5456                 true
5457         fi
5459         if test "x$mono_experiment_test_enable_null" = "xyes"; then
5460                 AC_DEFINE(ENABLE_EXPERIMENT_null, 1, [Enable experiment 'null'])
5461         fi
5462 ],[])
5464 dnl **********************
5465 dnl *** checked builds ***
5466 dnl **********************
5468 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],[
5470         if test x$enable_checked_build != x ; then
5471                 AC_DEFINE(ENABLE_CHECKED_BUILD,1,[Enable checked build])
5472         fi
5473         for feature in `echo "$enable_checked_build" | sed -e "s/,/ /g"`; do
5474                 eval "mono_checked_build_test_enable_$feature='yes'"
5475         done
5477         if test "x$mono_checked_build_test_enable_all" = "xyes"; then
5478                 eval "mono_checked_build_test_enable_gc='yes'"
5479                 eval "mono_checked_build_test_enable_metadata='yes'"
5480                 eval "mono_checked_build_test_enable_thread='yes'"
5481                 eval "mono_checked_build_test_enable_private_types='yes'"
5482                 eval "mono_checked_build_test_enable_crash_reporting='yes'"
5483         fi
5485         if test "x$mono_checked_build_test_enable_gc" = "xyes"; then
5486                 AC_DEFINE(ENABLE_CHECKED_BUILD_GC, 1, [Enable GC checked build])
5487         fi
5489         if test "x$mono_checked_build_test_enable_metadata" = "xyes"; then
5490                 AC_DEFINE(ENABLE_CHECKED_BUILD_METADATA, 1, [Enable metadata checked build])
5491         fi
5493         if test "x$mono_checked_build_test_enable_thread" = "xyes"; then
5494                 AC_DEFINE(ENABLE_CHECKED_BUILD_THREAD, 1, [Enable thread checked build])
5495         fi
5497         if test "x$mono_checked_build_test_enable_private_types" = "xyes"; then
5498                 AC_DEFINE(ENABLE_CHECKED_BUILD_PRIVATE_TYPES, 1, [Enable private types checked build])
5499         fi
5501         if test "x$mono_checked_build_test_enable_crash_reporting" = "xyes"; then
5502                 # Required
5503                 with_overridable_allocators=yes
5504                 AC_DEFINE(ENABLE_OVERRIDABLE_ALLOCATORS,1,[Overridable allocator support enabled])
5506                 AC_DEFINE(ENABLE_CHECKED_BUILD_CRASH_REPORTING, 1, [Enable private types checked build])
5507         fi
5508 ], [])
5510 dnl End of checked builds
5512 AM_CONDITIONAL(NEED_VASPRINTF, test x$ac_cv_func_vasprintf = xno || test x$with_overridable_allocators = xyes)
5514 AC_CHECK_HEADER([malloc.h], 
5515                 [AC_DEFINE([HAVE_USR_INCLUDE_MALLOC_H], [1], 
5516                         [Define to 1 if you have /usr/include/malloc.h.])],,)
5518 # When --disable-shared is used, libtool transforms libmono-2.0.la into libmono-2.0.so
5519 # instead of libmono-static.a
5520 if test "x$enable_shared" = "xno" -a "x$enable_executables" = "xyes"; then
5521    LIBMONO_LA=libmini-static.la
5522 else
5523    if test x$buildsgen = xyes; then
5524       LIBMONO_LA=libmonosgen-$API_VER.la
5525    else
5526       LIBMONO_LA=libmonoboehm-$API_VER.la
5527    fi
5529 AC_SUBST(LIBMONO_LA)
5531 dnl **************
5532 dnl ***  Btls  ***
5533 dnl **************
5535 AC_ARG_ENABLE(btls, [  --disable-btls             Disable the BoringTls provider], enable_btls=$enableval, enable_btls=$BTLS_SUPPORTED)
5536 AC_ARG_ENABLE(btls-lib, [  --disable-btls-lib             Disable building the BTLS native library], enable_btls_lib=$enableval, enable_btls_lib=$BTLS_SUPPORTED)
5537 AC_ARG_WITH(btls_android_ndk, [  --with-btls-android-ndk        Android NDK for BoringTls])
5538 AC_ARG_WITH(btls_android_api, [  --with-btls-android-api        Android NDK API level for BTLS build])
5539 AC_ARG_WITH(btls_android_cmake_toolchain, [  --with-btls-android-cmake-toolchain        Path to the cmake toolchain file for Android])
5540 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])
5542 if test "x$with_btls_android_api" = "x" ; then
5543         case "$BTLS_PLATFORM" in
5544                 android-armv5)
5545                         with_btls_android_api=16" ;;
5546                 android-armv6)
5547                         with_btls_android_api=16" ;;
5548                 android-armv7)
5549                         with_btls_android_api=16 ;;
5550                 android-v8a)
5551                         with_btls_android_api=21 ;;
5552                 android-x86)
5553                         with_btls_android_api=16 ;;
5554                 android-x64)
5555                         with_btls_android_api=21 ;;
5556         esac
5559 if test "x$enable_btls" = "xno"; then
5560    enable_btls_lib=no
5563 AM_CONDITIONAL(BTLS, test x$enable_btls_lib = xyes)
5565 btls_android=no
5566 if test "x$enable_btls" = "xyes"; then
5567         AC_PATH_PROG(CMAKE, [cmake], [no], [$PATH:/Applications/CMake.app/Contents/bin:/usr/local/bin])
5568         if test "x$CMAKE" = "xno"; then
5569                 AC_MSG_ERROR("cmake not found")
5570         fi
5572         BTLS_ROOT=`cd $srcdir && pwd`/external/boringssl
5573         AC_SUBST(BTLS_ROOT)
5575         btls_arch=
5576         btls_cflags=
5577         BTLS_CMAKE_ARGS=
5579         if test "x$host_win32" = "xyes"; then
5580                 AC_CHECK_PROG(HAVE_YASM, yasm, yes, no)
5581         fi
5583         case "$BTLS_PLATFORM" in
5584         i386)
5585                 btls_arch=i386
5586                 btls_cflags="-m32"
5587                 case $host_os in
5588                         darwin*)
5589                                 btls_cflags="$btls_cflags -arch i386"
5590                                 ;;
5591                         mingw*|cygwin*)
5592                                 btls_cflags="-DNOCRYPT $WIN32_CPPFLAGS"
5593                                 if test "x$HAVE_YASM" != "xyes"; then
5594                                         BTLS_CMAKE_ARGS="-DOPENSSL_NO_ASM=1"
5595                                 fi
5596                                 ;;
5597                 esac
5598                 ;;
5599         x86_64)
5600                 btls_arch=x86_64
5601                 case $host_os in
5602                         mingw*|cygwin*)
5603                                 btls_cflags="-DNOCRYPT $WIN32_CPPFLAGS"
5604                                 if test "x$HAVE_YASM" != "xyes"; then
5605                                         BTLS_CMAKE_ARGS="-DOPENSSL_NO_ASM=1"
5606                                 fi
5607                                 ;;
5608                 esac
5609                 ;;
5610         arm)
5611                 btls_arch=arm
5612                 btls_cflags="-DOPENSSL_NO_ASM=1"
5613                 ;;
5614         armsoft)
5615                 btls_arch=arm
5616                 btls_cflags="-DOPENSSL_NO_ASM=1"
5617                 ;;
5618         aarch64)
5619                 btls_arch=aarch64
5620                 btls_cflags="-march=armv8-a+crypto"
5621                 ;;
5622         s390x)
5623                 btls_arch=s390x
5624                 ;;
5625         powerpc)
5626                 btls_arch=powerpc
5627                 case $host_os in
5628                         aix*|os400*)
5629                                 btls_cflags="$btls_cflags -maix64 -mminimal-toc -pthread -D_ALL_SOURCE -D_THREAD_SAFE -D_REENTRANT"
5630                                 BTLS_CMAKE_ARGS="-DCMAKE_AR=/usr/bin/ar -DCMAKE_C_ARCHIVE_CREATE=\"<CMAKE_AR> -X64 cr <TARGET> <LINK_FLAGS> <OBJECTS>\""
5631                 esac
5632                 ;;
5633         android-armv5)
5634                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"armeabi\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5635                 ;;
5636         android-armv6)
5637                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"armeabi\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5638                 ;;
5639         android-armv7)
5640                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"armeabi-v7a\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5641                 ;;
5642         android-v8a)
5643                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"arm64-v8a\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5644                 ;;
5645         android-x86)
5646                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"x86\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5647                 ;;
5648         android-x64)
5649                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"x86_64\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5650                 ;;
5651         riscv32)
5652                 btls_arch=riscv32
5653                 ;;
5654         riscv64)
5655                 btls_arch=riscv64
5656                 ;;
5657         *)
5658                 AC_MSG_ERROR(Invalid BTLS platform)
5659         esac
5661         if test "x$platform_android" = "xyes"; then
5662                 if test "x$with_btls_android_cmake_toolchain" = "x"; then
5663                    with_btls_android_cmake_toolchain="$BTLS_ROOT/util/android-cmake/android.toolchain.cmake"
5664                 fi
5666                 if test "x$with_btls_android_ndk_asm_workaround" != "x"; then
5667                    BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DENABLE_NDK_ARM_WORKAROUND=ON"
5668                 fi
5670                 btls_android=yes
5671                 BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DCMAKE_TOOLCHAIN_FILE=$with_btls_android_cmake_toolchain"
5672                 if test "x$with_btls_android_ndk" != "x"; then
5673                         BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DANDROID_NDK=\"$with_btls_android_ndk\""
5674                 else
5675                         AC_MSG_ERROR([Need to pass the --with-btls-android-ndk argument when building with BTLS support on Android.])
5676                 fi
5677         fi
5679         if test "x$btls_arch" != "x"; then
5680                 BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DBTLS_ARCH=\"$btls_arch\""
5681         fi
5683         BTLS_CFLAGS="$CPPFLAGS_FOR_BTLS $btls_cflags"
5684         AC_SUBST(BTLS_ARCH)
5685         AC_SUBST(BTLS_CFLAGS)
5686         AC_SUBST(BTLS_PLATFORM)
5687         AC_SUBST(BTLS_CMAKE_ARGS)
5689         AC_DEFINE(HAVE_BTLS, 1, [BoringTls is supported])
5690 else
5691         enable_btls=no
5694 AM_CONDITIONAL(BTLS_ANDROID, test x$btls_android = xyes)
5696 if test x$DISABLE_MCS_DOCS = xyes; then
5697    docs_dir=""
5698 else
5699    docs_dir=docs
5701 AC_SUBST(docs_dir)
5703 ## Maybe should also disable if mcsdir is invalid.  Let's punt the issue for now.
5704 AM_CONDITIONAL(BUILD_MCS, [test x$cross_compiling = xno && test x$enable_mcs_build != xno])
5705 AM_CONDITIONAL(BUILD_SUPPORT, [test x$enable_support_build != xno])
5707 libmono_ldflags="$libmono_ldflags $LIBS"
5709 AM_CONDITIONAL(MIPS_GCC, test ${TARGET}${ac_cv_prog_gcc} = MIPSyes)
5710 AM_CONDITIONAL(MIPS_SGI, test ${TARGET}${ac_cv_prog_gcc} = MIPSno)
5711 AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
5712 AM_CONDITIONAL(SPARC64, test x$TARGET = xSPARC64)
5713 AM_CONDITIONAL(X86, test x$TARGET = xX86)
5714 AM_CONDITIONAL(AMD64, test x$TARGET = xAMD64)
5715 AM_CONDITIONAL(MIPS, test x$TARGET = xMIPS)
5716 AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
5717 AM_CONDITIONAL(POWERPC64, test x$TARGET = xPOWERPC64)
5718 AM_CONDITIONAL(ARM, test x$TARGET = xARM)
5719 AM_CONDITIONAL(ARM64, test x$TARGET = xARM64 -o x$TARGET = xARM6432)
5720 AM_CONDITIONAL(S390X, test x$TARGET = xS390X)
5721 AM_CONDITIONAL([RISCV], [test x$TARGET = xRISCV32 -o x$TARGET = xRISCV64])
5722 AM_CONDITIONAL([RISCV32], [test x$TARGET = xRISCV32])
5723 AM_CONDITIONAL([RISCV64], [test x$TARGET = xRISCV64])
5724 AM_CONDITIONAL(WASM, test x$TARGET = xWASM)
5725 AM_CONDITIONAL(HOST_X86, test x$HOST = xX86)
5726 AM_CONDITIONAL(HOST_AMD64, test x$HOST = xAMD64)
5727 AM_CONDITIONAL(HOST_ARM, test x$HOST = xARM)
5728 AM_CONDITIONAL(HOST_ARM64, test x$HOST = xARM64)
5729 AM_CONDITIONAL([HOST_RISCV], [test x$HOST = xRISCV32 -o x$HOST = xRISCV64])
5730 AM_CONDITIONAL([HOST_RISCV32], [test x$HOST = xRISCV32])
5731 AM_CONDITIONAL([HOST_RISCV64], [test x$HOST = xRISCV64])
5732 AM_CONDITIONAL(HOST_WASM, test x$HOST = xWASM)
5734 AM_CONDITIONAL(CROSS_COMPILE, test "x$host" != "x$target")
5736 AC_SUBST(LIBC)
5737 AC_SUBST(INTL)
5738 AC_SUBST(SQLITE)
5739 AC_SUBST(SQLITE3)
5740 AC_SUBST(X11)
5741 AC_SUBST(GDKX11)
5742 AC_SUBST(GTKX11)
5743 AC_SUBST(XINERAMA)
5744 AC_DEFINE_UNQUOTED(MONO_ARCHITECTURE,"$arch_target",[The architecture this is running on])
5745 AC_SUBST(arch_target)
5747 #This must always be defined when building the runtime
5748 AC_DEFINE(MONO_INSIDE_RUNTIME,1, [Disable banned functions from being used by the runtime])
5750 mono_build_root=`pwd`
5751 AC_SUBST(mono_build_root)
5753 AC_ARG_ENABLE(msvc,[  --enable-msvc    Build with Visual Studio (msvc) (defaults to no)], enable_msvc=$enableval, enable_msvc=no)
5754 if test x$host_win32 = xno; then
5755         if test x$enable_msvc = xyes; then
5756                 echo "Error, --enable-msvc only supported for Windows builds."
5757                 exit 1
5758         fi
5760 AM_CONDITIONAL(ENABLE_MSVC, test x$enable_msvc = xyes)
5762 if test "x$enable_msvc" = "xyes"; then
5763         if test "x$support_boehm" = "xyes"; then
5764                 echo "Error, Boehm GC is not supported when using --enable-msvc."
5765                 exit 1
5766         fi
5767         mono_msvc_build_dir='$(top_srcdir)'/msvc/build/sgen
5768         if test "x$host_cpu" = "xi686"; then
5769                 mono_msvc_build_lib_dir='$(mono_msvc_build_dir)'/Win32/lib/Release
5770                 mono_msvc_build_bin_dir='$(mono_msvc_build_dir)'/Win32/bin/Release
5771                 mono_runtime=msvc/build/sgen/Win32/bin/Release/mono-sgen.exe
5772                 mono_runtime_wrapper=$mono_runtime
5773         else
5774                 mono_msvc_build_lib_dir='$(mono_msvc_build_dir)'/x64/lib/Release
5775                 mono_msvc_build_bin_dir='$(mono_msvc_build_dir)'/x64/bin/Release
5776                 mono_runtime=msvc/build/sgen/x64/bin/Release/mono-sgen.exe
5777                 mono_runtime_wrapper=msvc/build/sgen/x64/bin/Release/mono-sgen-msvc.sh
5778         fi
5779         AC_SUBST(mono_msvc_build_dir)
5780         AC_SUBST(mono_msvc_build_lib_dir)
5781         AC_SUBST(mono_msvc_build_bin_dir)
5782 else
5783         mono_runtime=mono/mini/mono
5784         mono_runtime_wrapper=$mono_runtime
5787 AC_SUBST(mono_runtime)
5788 AC_SUBST(mono_runtime_wrapper)
5790 CSC_LOCATION=`cd $srcdir && pwd`/external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0/csc.exe
5791 VBCS_LOCATION=`cd $srcdir && pwd`/external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0/VBCSCompiler.exe
5793 if test $csc_compiler = mcs; then
5794   CSC=$mcs_topdir/class/lib/build/mcs.exe
5795 else
5796   CSC=$CSC_LOCATION
5799 AM_CONDITIONAL([CSC_IS_ROSLYN], [test x$csc_compiler != xmcs])
5801 mono_cfg_root=$mono_build_root/runtime
5802 if test x$host_win32 = xyes; then
5803   if test "x$cross_compiling" = "xno"; then
5804     mono_cfg_dir=`cygpath -w -a $mono_cfg_root`\\etc
5805     CSC=`cygpath -m -a $CSC`
5806     CSC_LOCATION=`cygpath -m -a $CSC_LOCATION`
5807     VBCS_LOCATION=`cygpath -m -a $VBCS_LOCATION`
5808   else
5809     mono_cfg_dir=`echo $mono_cfg_root | tr '/' '\\'`\\etc
5810   fi
5811 else
5812   mono_cfg_dir=$mono_cfg_root/etc
5815 if test "x$platform_android" = "xyes"; then
5816   mono_cfg_dir=
5819 AC_SUBST(mono_cfg_dir)
5821 AC_SUBST(CSC)
5823 AC_CONFIG_FILES([po/mcs/Makefile.in])
5825 AC_CONFIG_FILES([acceptance-tests/microbench-perf.sh],[chmod +x acceptance-tests/microbench-perf.sh])
5826 AC_CONFIG_FILES([runtime/mono-wrapper],[chmod +x runtime/mono-wrapper])
5827 AC_CONFIG_FILES([runtime/monodis-wrapper],[chmod +x runtime/monodis-wrapper])
5829 AC_CONFIG_COMMANDS([runtime/etc/mono/1.0/machine.config],
5830 [   depth=../../../..
5831     case $srcdir in
5832     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5833     .) reldir=$depth ;;
5834     *) reldir=$depth/$srcdir ;;
5835     esac
5836     $ac_aux_dir/install-sh -d runtime/etc/mono/1.0
5837     cd runtime/etc/mono/1.0
5838     rm -f machine.config
5839     $LN_S $reldir/data/net_1_1/machine.config machine.config
5840     cd $depth
5841 ],[LN_S='$LN_S'])
5843 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/machine.config],
5844 [   depth=../../../..
5845     case $srcdir in
5846     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5847     .) reldir=$depth ;;
5848     *) reldir=$depth/$srcdir ;;
5849     esac
5850     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
5851     cd runtime/etc/mono/2.0
5852     rm -f machine.config
5853     $LN_S $reldir/data/net_2_0/machine.config machine.config
5854     cd $depth
5855 ],[LN_S='$LN_S'])
5857 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/web.config],
5858 [   depth=../../../..
5859     case $srcdir in
5860     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5861     .) reldir=$depth ;;
5862     *) reldir=$depth/$srcdir ;;
5863     esac
5864     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
5865     cd runtime/etc/mono/2.0
5866     rm -f web.config
5867     $LN_S $reldir/data/net_2_0/web.config web.config
5868     cd $depth
5869 ],[LN_S='$LN_S'])
5871 AC_CONFIG_COMMANDS([runtime/etc/mono/browscap.ini],
5872 [   depth=../../..
5873     case $srcdir in
5874     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5875     .) reldir=$depth ;;
5876     *) reldir=$depth/$srcdir ;;
5877     esac
5878     $ac_aux_dir/install-sh -d runtime/etc/mono/
5879     cd runtime/etc/mono/
5880     rm -f browscap.ini
5881     $LN_S $reldir/data/browscap.ini browscap.ini
5882     cd $depth
5883 ],[LN_S='$LN_S'])
5885 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/Browsers/Compat.browser],
5886 [   depth=../../../../..
5887     case $srcdir in
5888     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5889     .) reldir=$depth ;;
5890     *) reldir=$depth/$srcdir ;;
5891     esac
5892     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0/Browsers/
5893     cd runtime/etc/mono/2.0/Browsers
5894     rm -f Compat.browser
5895     $LN_S $reldir/data/Browsers/Compat.browser Compat.browser
5896     cd $depth
5897 ],[LN_S='$LN_S'])
5899 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/Browsers/Compat.browser],
5900 [   depth=../../../../..
5901     case $srcdir in
5902     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5903     .) reldir=$depth ;;
5904     *) reldir=$depth/$srcdir ;;
5905     esac
5906     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0/Browsers/
5907     cd runtime/etc/mono/4.0/Browsers
5908     rm -f Compat.browser
5909     $LN_S $reldir/data/Browsers/Compat.browser Compat.browser
5910     cd $depth
5911 ],[LN_S='$LN_S'])
5913 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/Browsers/Compat.browser],
5914 [   depth=../../../../..
5915     case $srcdir in
5916     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5917     .) reldir=$depth ;;
5918     *) reldir=$depth/$srcdir ;;
5919     esac
5920     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5/Browsers/
5921     cd runtime/etc/mono/4.5/Browsers
5922     rm -f Compat.browser
5923     $LN_S $reldir/data/Browsers/Compat.browser Compat.browser
5924     cd $depth
5925 ],[LN_S='$LN_S'])
5927 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/machine.config],
5928 [   depth=../../../..
5929     case $srcdir in
5930     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5931     .) reldir=$depth ;;
5932     *) reldir=$depth/$srcdir ;;
5933     esac
5934     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0
5935     cd runtime/etc/mono/4.0
5936     rm -f machine.config
5937     $LN_S $reldir/data/net_4_0/machine.config machine.config
5938     cd $depth
5939 ],[LN_S='$LN_S'])
5941 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/web.config],
5942 [   depth=../../../..
5943     case $srcdir in
5944     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5945     .) reldir=$depth ;;
5946     *) reldir=$depth/$srcdir ;;
5947     esac
5948     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0
5949     cd runtime/etc/mono/4.0
5950     rm -f web.config
5951     $LN_S $reldir/data/net_4_0/web.config web.config
5952     cd $depth
5953 ],[LN_S='$LN_S'])
5955 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/machine.config],
5956 [   depth=../../../..
5957     case $srcdir in
5958     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5959     .) reldir=$depth ;;
5960     *) reldir=$depth/$srcdir ;;
5961     esac
5962     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5
5963     cd runtime/etc/mono/4.5
5964     rm -f machine.config
5965     $LN_S $reldir/data/net_4_5/machine.config machine.config
5966     cd $depth
5967 ],[LN_S='$LN_S'])
5969 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/web.config],
5970 [   depth=../../../..
5971     case $srcdir in
5972     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
5973     .) reldir=$depth ;;
5974     *) reldir=$depth/$srcdir ;;
5975     esac
5976     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5
5977     cd runtime/etc/mono/4.5
5978     rm -f web.config
5979     $LN_S $reldir/data/net_4_5/web.config web.config
5980     cd $depth
5981 ],[LN_S='$LN_S'])
5983 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])
5984 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])
5985 AC_CONFIG_COMMANDS([clean-llvm], [rm -f llvm/llvm_config.mk])
5988 # Mono.Native Support
5989 # -------------------
5990 # Mono.Native is the new name for both System.Native and System.Security.Cryptography.Apple.
5991 # It is built as a stand-alone shared library and not bundled with the runtime because we
5992 # may need to build two different versions of it.
5994 # Starting with macOS 10.12+ and iOS 10+, Apple introduced a new Unified API for some of the
5995 # crypto primitives that we're using as part of System.Security.Cryptography.Apple.
5997 # On Desktop, we can check at runtime whether the OS version is recent enough and switch
5998 # implementation accordingly.  We build a single `libmono-native` shared library.
6000 # However, on Mobile we cannot have any undefined symbols as this would break Bitcode.
6002 # During the mobile build, we are called with `CFLAGS` containing an explicit minium version flag,
6003 # which is eiter `-mmacosx-version-min=`, `-mios-simulator-version-min=` or `-miphoneos-version-min=`
6004 # depending on platform.
6006 # We build two versions of the shared library:
6007 # - `libmono-native-compat` is built with whichever minimum version is passed to us via `CFLAGS`.
6008 # - `libmono-native-unifed` is built with the minimum version set to macOS 10.12+ / iOS 10+.
6010 # For testing purpuses, there is a function called `mono_native_get_platform_type ()`
6011 # (see mono/native/mono-native-platform.c), which returns a `MonoNativePlatformType` enum value.
6012 # There is also `Mono.MonoNativePlatform.GetPlatformType ()` (see mcs/class/corlib/Test/Mono/MonoNativePlatform.cs).
6014 # This can be called by automated tests both to ensure that the library has been correctly installed and also
6015 # to verify that it's the correct version of it.
6018 AC_MSG_CHECKING([Mono.Native support])
6019 sed_version_pattern='[[0-9]]\{1,2\}\(\.[[0-9]]\{1,2\}\)'
6020 if test x$disable_mono_native = xyes; then
6021         mono_native=no
6022 elif test x$target_osx = xyes; then
6023         MONO_NATIVE_CC=$CC
6024         MONO_NATIVE_CXX=$CXX
6025         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6026         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6027         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6028         MONO_NATIVE_CFLAGS=$CFLAGS
6029         MONO_NATIVE_LDFLAGS=$LDFLAGS
6031         mono_native=yes
6032         MONO_NATIVE_PLATFORM=macos
6033         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_MACOS"
6035         AC_MONO_APPLE_AVAILABLE(mono_native_compat, [whether we need the compatibility layer],
6036                 [!(MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_12)])
6038         if test x$mono_native_compat = xyes; then
6039                 mono_native_compat=yes
6040                 mono_native_text="Mac OSX (compat + unified v10.12)"
6041                 MONO_NATIVE_COMPAT_CCASFLAGS=$MONO_NATIVE_CCASFLAGS
6042                 MONO_NATIVE_COMPAT_CPPFLAGS=$MONO_NATIVE_CPPFLAGS
6043                 MONO_NATIVE_COMPAT_CXXFLAGS=$MONO_NATIVE_CXXFLAGS
6044                 MONO_NATIVE_COMPAT_CFLAGS=$MONO_NATIVE_CFLAGS
6045                 MONO_NATIVE_COMPAT_LDFLAGS=$MONO_NATIVE_LDFLAGS
6047                 sed_remove_mac_version_pattern="s/-mmacosx-version-min=$sed_version_pattern//g"
6048                 MONO_NATIVE_UNIFIED_CCASFLAGS="`echo $CCASFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6049                 MONO_NATIVE_UNIFIED_CPPFLAGS="`echo $CPPFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6050                 MONO_NATIVE_UNIFIED_CXXFLAGS="`echo $CXXFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6051                 MONO_NATIVE_UNIFIED_CFLAGS="`echo $CFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6052                 MONO_NATIVE_UNIFIED_LDFLAGS="`echo $LDFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6053         else
6054                 mono_native_compat=no
6055                 mono_native_text="Mac OSX"
6056         fi
6057 elif test x$mono_native_platform_ios = xyes; then
6058         AC_MONO_APPLE_TARGET(TARGET_OS_SIMULATOR, [mono_native_ios_sim=yes], [mono_native_ios_sim=no])
6060         AC_MONO_APPLE_TARGET(TARGET_OS_IOS, [
6061                 if test x$mono_native_ios_sim = xyes; then
6062                         mono_native_ios_target=ios-simulator
6063                         mono_native_text="iOS Simulator"
6064                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_IPHONE | MONO_NATIVE_PLATFORM_TYPE_SIMULATOR"
6065                 else
6066                         mono_native_ios_target=iphoneos
6067                         mono_native_text="iOS Device"
6068                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_IPHONE | MONO_NATIVE_PLATFORM_TYPE_DEVICE"
6069                 fi
6070                 mono_native_unified_version="10.0"
6071                 mono_native_compat_check="__IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_10_0"
6072         ], [
6073                 AC_MONO_APPLE_TARGET(TARGET_OS_TV, [
6074                         if test x$mono_native_ios_sim = xyes; then
6075                                 mono_native_ios_target=tvos-simulator
6076                                 mono_native_text="AppleTV Simulator"
6077                                 MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_TV | MONO_NATIVE_PLATFORM_TYPE_SIMULATOR"
6078                         else
6079                                 mono_native_ios_target=tvos
6080                                 mono_native_text="AppleTV Device"
6081                                 MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_TV | MONO_NATIVE_PLATFORM_TYPE_DEVICE"
6082                         fi
6083                         mono_native_unified_version="10.0"
6084                         mono_native_compat_check="__TV_OS_VERSION_MIN_REQUIRED >= __TVOS_10_0"
6085                 ], [
6086                         AC_MONO_APPLE_TARGET(TARGET_OS_WATCH, [
6087                                 if test x$mono_native_ios_sim = xyes; then
6088                                         mono_native_ios_target=watchos-simulator
6089                                         mono_native_text="Apple Watch Simulator"
6090                                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_WATCH | MONO_NATIVE_PLATFORM_TYPE_SIMULATOR"
6091                                 else
6092                                         mono_native_ios_target=watchos
6093                                         mono_native_text="Apple Watch Device"
6094                                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_WATCH | MONO_NATIVE_PLATFORM_TYPE_DEVICE"
6095                                 fi
6096                                 mono_native_unified_version="5.0"
6097                                 mono_native_compat_check="__WATCH_OS_VERSION_MIN_REQUIRED >= __WATCHOS_5_0"
6098                         ], [
6099                                 AC_MSG_ERROR([Unknown iOS Target])
6100                         ])
6101                 ])
6102         ])
6104         AC_MONO_APPLE_AVAILABLE(mono_native_compat, [whether we need the compatibility layer], [!($mono_native_compat_check)])
6106         if test x$with_bitcode = xyes; then
6107                 mono_native_ldflags="-framework CoreFoundation -framework Foundation -no-undefined -fatal_warnings"
6108                 MONO_NATIVE_LIBADD="../mini/$LIBMONO_LA"
6109         else
6110                 mono_native_ldflags="-framework CoreFoundation -framework Foundation -fatal_warnings"
6111         fi
6113         if test x$enable_gss = xyes; then
6114                 mono_native_ldflags="$mono_native_ldflags -framework GSS"
6115         fi
6117         MONO_NATIVE_CC=$CC
6118         MONO_NATIVE_CXX=$CXX
6119         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6120         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6121         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6122         MONO_NATIVE_CFLAGS=$CFLAGS
6123         MONO_NATIVE_LDFLAGS="$LDFLAGS $mono_native_ldflags"
6125         if test x$mono_native_compat = xyes; then
6126                 mono_native_text="$mono_native_text (compat + unified v$mono_native_unified_version)"
6127                 MONO_NATIVE_COMPAT_CCASFLAGS=$MONO_NATIVE_CCASFLAGS
6128                 MONO_NATIVE_COMPAT_CPPFLAGS=$MONO_NATIVE_CPPFLAGS
6129                 MONO_NATIVE_COMPAT_CXXFLAGS=$MONO_NATIVE_CXXFLAGS
6130                 MONO_NATIVE_COMPAT_CFLAGS=$MONO_NATIVE_CFLAGS
6131                 MONO_NATIVE_COMPAT_LDFLAGS=$MONO_NATIVE_LDFLAGS
6133                 sed_remove_ios_version_pattern="s/-m\(.*\)-version-min=$sed_version_pattern//g"
6134                 MONO_NATIVE_UNIFIED_CCASFLAGS="`echo $CCASFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6135                 MONO_NATIVE_UNIFIED_CPPFLAGS="`echo $CPPFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6136                 MONO_NATIVE_UNIFIED_CXXFLAGS="`echo $CXXFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6137                 MONO_NATIVE_UNIFIED_CFLAGS="`echo $CFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6138                 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"
6139         fi
6141         mono_native=yes
6142         MONO_NATIVE_PLATFORM=ios
6143 elif test x$host_linux = xyes; then
6144         mono_native_text="Linux"
6145         MONO_NATIVE_CC=$CC
6146         MONO_NATIVE_CXX=$CXX
6147         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6148         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6149         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6150         MONO_NATIVE_CFLAGS=$CFLAGS
6151         MONO_NATIVE_LDFLAGS=$LDFLAGS
6153         mono_native=yes
6154         mono_native_compat=no
6155         MONO_NATIVE_PLATFORM=linux
6157         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_LINUX"
6158 elif test x$target_wasm = xyes; then
6159         mono_native_text="wasm"
6160         MONO_NATIVE_CC=$CC
6161         MONO_NATIVE_CXX=$CXX
6162         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6163         # The system.native code uses _WASM_ to check for wasm
6164         MONO_NATIVE_CPPFLAGS="$CPPFLAGS -D_WASM_"
6165         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6166         MONO_NATIVE_CFLAGS=$CFLAGS
6167         MONO_NATIVE_LDFLAGS=$LDFLAGS
6169         mono_native=yes
6170         mono_native_compat=no
6171         MONO_NATIVE_PLATFORM=linux
6173         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_LINUX"
6174 elif case $host_os in aix*|os400*) true;; *) false;; esac; then
6175         mono_native_text="AIX"
6176         MONO_NATIVE_CC=$CC
6177         MONO_NATIVE_CXX=$CXX
6178         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6179         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6180         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6181         MONO_NATIVE_CFLAGS=$CFLAGS
6182         dnl flock in AIX exists in libbsd (not the same as freedesktop.org
6183         dnl libbsd) which Mono.Native needs.
6184         dnl Because of the way that the library is built by default, unresolved
6185         dnl references are kept and resolved at runtime. Often, the dependency
6186         dnl chain means libbsd is loaded anyways, but not necessarily. It's
6187         dnl better to explicitly link it, even though it has it shadows libc's
6188         dnl ioctl with its own. (As for the other unresolved imports, those
6189         dnl should be provided by the Mono runtime loaded.)
6190         MONO_NATIVE_LDFLAGS="$LDFLAGS -lbsd"
6192         mono_native=yes
6193         mono_native_compat=no
6194         MONO_NATIVE_PLATFORM=aix
6196         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_AIX"
6197 elif case $host_os in freebsd*) true;; *) false;; esac; then
6198         mono_native_text="FreeBSD"
6199         MONO_NATIVE_CC=$CC
6200         MONO_NATIVE_CXX=$CXX
6201         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6202         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6203         MONO_NATIVE_CFLAGS=$CFLAGS
6204         MONO_NATIVE_LDFLAGS=$LDFLAGS
6206         mono_native=yes
6207         mono_native_compat=no
6208         MONO_NATIVE_PLATFORM=freebsd
6209         AC_MSG_CHECKING([Mono.Native support])
6210         AC_MSG_RESULT(freebsd)
6212         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_FREEBSD"
6213 elif test x$platform_android = xyes; then
6214         mono_native_text="Android"
6215         MONO_NATIVE_CC=$CC
6216         MONO_NATIVE_CXX=$CXX
6217         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6218         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6219         MONO_NATIVE_CFLAGS=$CFLAGS
6220         MONO_NATIVE_LDFLAGS=$LDFLAGS
6221         MONO_NATIVE_LIBADD="../mini/$LIBMONO_LA"
6223         mono_native=yes
6224         mono_native_compat=no
6225         MONO_NATIVE_PLATFORM=android
6227         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_ANDROID"
6228 else
6229         mono_native=no
6230         mono_native_text="no"
6233 AC_MSG_RESULT($mono_native_text)
6235 if test x$mono_native_compat = xyes; then
6236         MONO_NATIVE_LIBRARY_NAME=libmono-native-compat
6237 else
6238         MONO_NATIVE_LIBRARY_NAME=libmono-native
6241 AC_SUBST(MONO_NATIVE_PLATFORM)
6242 AC_SUBST(MONO_NATIVE_CC)
6243 AC_SUBST(MONO_NATIVE_CXX)
6244 AC_SUBST(MONO_NATIVE_CCASFLAGS)
6245 AC_SUBST(MONO_NATIVE_COMPAT_CCASFLAGS)
6246 AC_SUBST(MONO_NATIVE_UNIFIED_CCASFLAGS)
6247 AC_SUBST(MONO_NATIVE_CPPFLAGS)
6248 AC_SUBST(MONO_NATIVE_COMPAT_CPPFLAGS)
6249 AC_SUBST(MONO_NATIVE_UNIFIED_CPPFLAGS)
6250 AC_SUBST(MONO_NATIVE_CXXFLAGS)
6251 AC_SUBST(MONO_NATIVE_COMPAT_CXXFLAGS)
6252 AC_SUBST(MONO_NATIVE_UNIFIED_CXXFLAGS)
6253 AC_SUBST(MONO_NATIVE_CFLAGS)
6254 AC_SUBST(MONO_NATIVE_COMPAT_CFLAGS)
6255 AC_SUBST(MONO_NATIVE_UNIFIED_CFLAGS)
6256 AC_SUBST(MONO_NATIVE_LDFLAGS)
6257 AC_SUBST(MONO_NATIVE_COMPAT_LDFLAGS)
6258 AC_SUBST(MONO_NATIVE_UNIFIED_LDFLAGS)
6259 AC_SUBST(MONO_NATIVE_LIBRARY_NAME)
6260 AC_SUBST(MONO_NATIVE_LIBADD)
6262 AM_CONDITIONAL(MONO_NATIVE, test x$mono_native = xyes)
6263 AM_CONDITIONAL(MONO_NATIVE_COMPAT, test x$mono_native_compat = xyes)
6264 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_MACOS, test x$MONO_NATIVE_PLATFORM = xmacos)
6265 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_IOS, test x$MONO_NATIVE_PLATFORM = xios)
6266 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_LINUX, test x$MONO_NATIVE_PLATFORM = xlinux)
6267 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_AIX, test x$MONO_NATIVE_PLATFORM = xaix)
6268 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_ANDROID, test x$MONO_NATIVE_PLATFORM = xandroid)
6269 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_FREEBSD, test x$MONO_NATIVE_PLATFORM = xfreebsd)
6271 MONO_NATIVE_PLATFORM_TYPE_COMPAT="$MONO_NATIVE_PLATFORM_TYPE | MONO_NATIVE_PLATFORM_TYPE_COMPAT"
6272 MONO_NATIVE_PLATFORM_TYPE_UNIFIED="$MONO_NATIVE_PLATFORM_TYPE | MONO_NATIVE_PLATFORM_TYPE_UNIFIED"
6273 AC_SUBST(MONO_NATIVE_PLATFORM_TYPE)
6274 AC_SUBST(MONO_NATIVE_PLATFORM_TYPE_COMPAT)
6275 AC_SUBST(MONO_NATIVE_PLATFORM_TYPE_UNIFIED)
6277 ### C++ Linker selection
6279 # We have to lie to autotools, sometimes.
6281 # If we're building with llvm compiled into Mono, set MONO_CXXLD to CXX,
6282 # otherwise to CC.  We want C linking even if we're compiling with C++ enabled
6283 # because we do not want to link inthe C++ runtime library (-lstdc++ or -lc++),
6284 # except if we're linking with LLVM which relies on it.
6286 # Explanation of the hack:
6288 # According to
6289 # https://www.gnu.org/software/automake/manual/html_node/How-the-Linker-is-Chosen.html,
6290 # automake chooses the linker that it used to compile a target based on the
6291 # _SOURCES for that target.  If the target is comprised of only C code, it
6292 # chooses the C linker (on Linux and OSX this is just gcc or clang called with
6293 # linker arguments and a -o).  If the target _SOURCES include at least one C++ file, 
6294 # then automake chooses the C++ linker (usually g++ or clang++ called with linker arguments and -o).
6296 # The problem for Mono is that we don't want the C++ runtime library (libstdc++
6297 # or libc++) linked in - even when Mono is written in C++, we take care not to
6298 # require the runtime library.  As a result, we don't want g++ or clang++ to do
6299 # the linking.  On the other hand if LLVM is enabled, then we _must_ use the
6300 # C++ linker - LLVM doesn't have the same restrictions.
6302 # So the trick is we set MONO_CXXLD here to $CXX or $CC and in
6303 #  mono/mini/Makefile.am.in we have CCLD=$MONO_CXXLD and CXXLD=$MONO_CXXLD which bypasses
6304 #  automake's autodetection and lets us use the linker that we want.
6306 if test "x$enable_llvm_runtime" = "xyes"; then
6307         AC_SUBST(MONO_CXXLD, [$CXX])
6308 else
6309         AC_SUBST(MONO_CXXLD, [$CC])
6312 ### Set -Werror options
6314 # Anything involving -Werror must be done late because autoconf depends on compiling with warnings to be success.
6316 if test x"$GCC" = xyes; then
6318         if test "x$with_jemalloc" != "xyes"; then
6320                 # incompatible-pointer-types requires gcc circa 5.x
6322                 ORIG_CFLAGS=$CFLAGS
6323                 CFLAGS="$CFLAGS -Wincompatible-pointer-types -Werror"
6324                 AC_MSG_CHECKING(for -Wincompatible-pointer-types option to gcc)
6325                 AC_TRY_COMPILE([],[
6326                 ], [
6327                         AC_MSG_RESULT(yes)
6328                         CFLAGS="$ORIG_CFLAGS -Werror=incompatible-pointer-types"
6329                 ], [
6330                         AC_MSG_RESULT(no)
6331                         CFLAGS=$ORIG_CFLAGS
6332                 ])
6334                 CFLAGS="$CFLAGS -Werror=return-type"
6335         fi
6337         # Implicit function declarations are not 64 bit safe
6338         # Do this late, since this causes lots of configure tests to fail
6339         CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
6340         # jay has a lot of implicit declarations
6341         JAY_CFLAGS="-Wno-implicit-function-declaration"
6344 AC_SUBST(CFLAGS)
6345 AC_SUBST(CPPFLAGS)
6346 AC_SUBST(LDFLAGS)
6348 # Update all submodules recursively to ensure everything is checked out
6349 (cd $srcdir && scripts/update_submodules.sh)
6351 AC_OUTPUT([
6352 Makefile
6353 mono-uninstalled.pc
6354 acceptance-tests/Makefile
6355 llvm/Makefile
6356 scripts/mono-find-provides
6357 scripts/mono-find-requires
6358 mk/Makefile
6359 mono/Makefile
6360 mono/btls/Makefile
6361 mono/native/Makefile
6362 mono/utils/Makefile
6363 mono/utils/jemalloc/Makefile
6364 mono/metadata/Makefile
6365 mono/dis/Makefile
6366 mono/cil/Makefile
6367 mono/arch/Makefile
6368 mono/arch/x86/Makefile
6369 mono/arch/amd64/Makefile
6370 mono/arch/ppc/Makefile
6371 mono/arch/sparc/Makefile
6372 mono/arch/s390x/Makefile
6373 mono/arch/arm/Makefile
6374 mono/arch/arm64/Makefile
6375 mono/arch/mips/Makefile
6376 mono/arch/riscv/Makefile
6377 mono/sgen/Makefile
6378 mono/native/platform-type.c
6379 mono/native/platform-type-compat.c
6380 mono/native/platform-type-unified.c
6381 mono/tests/Makefile
6382 mono/tests/assembly-load-reference/Makefile
6383 mono/tests/tests-config
6384 mono/tests/gc-descriptors/Makefile
6385 mono/tests/testing_gac/Makefile
6386 mono/tests/fullaot-mixed/Makefile
6387 mono/tests/llvmonly-mixed/Makefile
6388 mono/unit-tests/Makefile
6389 mono/benchmark/Makefile
6390 mono/mini/Makefile
6391 mono/profiler/Makefile
6392 mono/eglib/Makefile
6393 mono/eglib/eglib-config.h
6394 mono/eglib/test/Makefile
6395 m4/Makefile
6396 ikvm-native/Makefile
6397 scripts/Makefile
6398 man/Makefile
6399 docs/Makefile
6400 data/Makefile
6401 data/net_2_0/Makefile
6402 data/net_4_0/Makefile
6403 data/net_4_5/Makefile
6404 data/net_2_0/Browsers/Makefile
6405 data/net_4_0/Browsers/Makefile
6406 data/net_4_5/Browsers/Makefile
6407 data/mint.pc
6408 data/mono-2.pc
6409 data/monosgen-2.pc
6410 data/mono.pc
6411 data/mono-cairo.pc
6412 data/mono-options.pc
6413 data/mono-lineeditor.pc
6414 data/monodoc.pc
6415 data/dotnet.pc
6416 data/dotnet35.pc
6417 data/wcf.pc
6418 data/cecil.pc
6419 data/system.web.extensions_1.0.pc
6420 data/system.web.extensions.design_1.0.pc
6421 data/system.web.mvc.pc
6422 data/system.web.mvc2.pc
6423 data/system.web.mvc3.pc
6424 data/aspnetwebstack.pc
6425 data/reactive.pc
6426 samples/Makefile
6427 support/Makefile
6428 data/config
6429 tools/Makefile
6430 tools/locale-builder/Makefile
6431 tools/sgen/Makefile
6432 tools/monograph/Makefile
6433 tools/pedump/Makefile
6434 runtime/Makefile
6435 msvc/Makefile
6436 po/Makefile
6439 if test x$host_win32 = xyes; then
6440    # Get rid of 'cyg' prefixes in library names
6441    sed -e "s/\/cyg\//\/\//" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
6442    # libtool seems to inherit -mno-cygwin from our CFLAGS, and uses it to compile its executable
6443    # wrapper scripts which use exec(). gcc has no problem compiling+linking this, but the resulting
6444    # executable doesn't work...
6445    sed -e "s,-mno-cygwin,,g" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
6448 if test x$host_darwin = xyes; then
6449    # This doesn't seem to be required and it slows down parallel builds
6450    sed -e 's,lock_old_archive_extraction=yes,lock_old_archive_extraction=no,g' < libtool > libtool.new && mv libtool.new libtool && chmod +x libtool
6454   case $prefix in
6455   NONE) prefix=$ac_default_prefix ;;
6456   esac
6457   case $exec_prefix in
6458   NONE) exec_prefix='${prefix}' ;;
6459   esac
6461   #
6462   # If we are cross compiling, we don't build in the mcs/ tree.  Let us not clobber
6463   # any existing config.make.  This allows people to share the same source tree
6464   # with different build directories, one native and one cross
6465   #
6466   if test x$cross_compiling = xno && test x$enable_mcs_build != xno; then
6468     test -w $mcs_topdir/build || chmod +w $mcs_topdir/build
6470     echo "prefix=$prefix" > $mcs_topdir/build/config.make
6471     echo "exec_prefix=$exec_prefix" >> $mcs_topdir/build/config.make
6472     echo "sysconfdir=$sysconfdir" >> $mcs_topdir/build/config.make
6473     echo 'mono_libdir=${exec_prefix}/lib' >> $mcs_topdir/build/config.make
6474     echo "mono_build_root=$mono_build_root" >> $mcs_topdir/build/config.make
6475     echo 'IL_FLAGS = /debug' >> $mcs_topdir/build/config.make
6476     echo "RUNTIME = $mono_build_root/runtime/mono-wrapper" >> $mcs_topdir/build/config.make
6477     echo "ILDISASM = $mono_build_root/runtime/monodis-wrapper" >> $mcs_topdir/build/config.make
6478     echo "JAY_CFLAGS = $JAY_CFLAGS" >> $mcs_topdir/build/config.make
6480     case $INSTALL in
6481     [[\\/$]]* | ?:[[\\/]]* ) mcs_INSTALL=$INSTALL ;;
6482     *) mcs_INSTALL=$mono_build_root/$INSTALL ;;
6483     esac
6485     echo "INSTALL = $mcs_INSTALL" >> $mcs_topdir/build/config.make
6487     export VERSION
6488     [myver=$($AWK 'BEGIN {
6489       split (ENVIRON["VERSION"] ".0.0.0", vsplit, ".")
6490       if(length(vsplit [1]) > 4) {
6491         split (substr(ENVIRON["VERSION"], 0, 4) "." substr(ENVIRON["VERSION"], 5) ".0.0", vsplit, ".")
6492       }
6493       print vsplit [1] "." vsplit [2] "." vsplit [3] "." vsplit [4]
6494     }')]
6496     echo "MONO_VERSION = $myver" >> $mcs_topdir/build/config.make
6497     echo "MONO_CORLIB_VERSION = $MONO_CORLIB_VERSION" >> $mcs_topdir/build/config.make
6499     if test x$host_darwin = xyes; then
6500       echo "BUILD_PLATFORM = macos" >> $mcs_topdir/build/config.make
6501       echo "HOST_PLATFORM ?= macos" >> $mcs_topdir/build/config.make
6502       echo "XTEST_PLATFORM ?= osx" >> $mcs_topdir/build/config.make
6503     elif test x$host_win32 = xyes; then
6504       echo "BUILD_PLATFORM = win32" >> $mcs_topdir/build/config.make
6505       echo "HOST_PLATFORM ?= win32" >> $mcs_topdir/build/config.make
6506       echo "XTEST_PLATFORM ?= windows" >> $mcs_topdir/build/config.make
6507     elif test x$host_linux = xyes; then
6508       echo "BUILD_PLATFORM = linux" >> $mcs_topdir/build/config.make
6509       echo "HOST_PLATFORM ?= linux" >> $mcs_topdir/build/config.make
6510       echo "XTEST_PLATFORM ?= linux" >> $mcs_topdir/build/config.make
6511     else
6512       echo "BUILD_PLATFORM = unix" >> $mcs_topdir/build/config.make
6513       echo "HOST_PLATFORM ?= unix" >> $mcs_topdir/build/config.make
6514       echo "XTEST_PLATFORM ?= unix" >> $mcs_topdir/build/config.make
6515     fi
6517     if test "x$PLATFORM_AOT_SUFFIX" != "x"; then
6518       echo "PLATFORM_AOT_SUFFIX = $PLATFORM_AOT_SUFFIX" >> $mcs_topdir/build/config.make
6519     fi
6521         if test x$AOT_SUPPORTED = xyes -a x$enable_system_aot = xdefault; then
6522            enable_system_aot=yes
6523         fi
6525     if test x$host_win32 = xno -a x$enable_system_aot = xyes; then
6526       echo "ENABLE_AOT = 1" >> $mcs_topdir/build/config.make
6527     fi
6529     if test x$DISABLE_MCS_DOCS = xyes; then
6530       echo "DISABLE_MCS_DOCS = yes" >> $mcs_topdir/build/config.make
6531     fi
6533     if test x$has_extension_module != xno; then
6534         echo "EXTENSION_MODULE = 1" >> $srcdir/$mcsdir/build/config.make
6535     fi
6536     
6537     echo "DEFAULT_PROFILE = $default_profile" >> $srcdir/$mcsdir/build/config.make
6538     
6539     if test "x$test_bcl_opt" = "xyes"; then    
6540       echo "BCL_OPTIMIZE = 1" >> $srcdir/$mcsdir/build/config.make
6541     fi
6543     echo "STANDALONE_CSC_LOCATION=$CSC_LOCATION" >> $srcdir/$mcsdir/build/config.make
6544     echo "SERVER_CSC_LOCATION?=$CSC_LOCATION" >> $srcdir/$mcsdir/build/config.make
6545     echo "VBCS_LOCATION?=$VBCS_LOCATION" >> $srcdir/$mcsdir/build/config.make
6547     if test $csc_compiler = mcs; then
6548       echo "MCS_MODE = 1" >> $srcdir/$mcsdir/build/config.make
6549     fi
6551     if test "x$AOT_BUILD_FLAGS" != "x" ; then
6552       echo "AOT_RUN_FLAGS=$AOT_RUN_FLAGS" >> $srcdir/$mcsdir/build/config.make
6553       echo "AOT_BUILD_FLAGS=$AOT_BUILD_FLAGS" >> $srcdir/$mcsdir/build/config.make
6554       echo "AOT_BUILD_ATTRS=$AOT_BUILD_ATTRS" >> $srcdir/$mcsdir/build/config.make
6555     fi
6557     if test "x$AOT_MODE" != "x" ; then
6558       echo "AOT_MODE=$AOT_MODE" >> $srcdir/$mcsdir/build/config.make
6559     fi
6561     if test "x$enable_btls" = "xyes"; then
6562       echo "HAVE_BTLS=1" >> $srcdir/$mcsdir/build/config.make
6563     fi
6565     if test "x$mono_native" = "xyes"; then
6566       echo "MONO_NATIVE_SUPPORTED=true" >> $srcdir/$mcsdir/build/config.make
6567     else
6568       echo "MONO_NATIVE_SUPPORTED=false" >> $srcdir/$mcsdir/build/config.make
6569     fi
6571     if test x$mono_native_compat = xyes; then
6572       echo "MONO_NATIVE_USING_COMPAT=true" >> $srcdir/$mcsdir/build/config.make
6573     else
6574       echo "MONO_NATIVE_USING_COMPAT=false" >> $srcdir/$mcsdir/build/config.make
6575     fi
6577     echo "MONO_NATIVE_PLATFORM_TYPE=$MONO_NATIVE_PLATFORM_TYPE" >> $srcdir/$mcsdir/build/config.make
6578     echo "MONO_NATIVE_PLATFORM=$MONO_NATIVE_PLATFORM" >> $srcdir/$mcsdir/build/config.make
6579     if test x$enable_compiler_server = xyes; then
6580       echo "ENABLE_COMPILER_SERVER?=1" >> $srcdir/$mcsdir/build/config.make
6581     else
6582       echo "ENABLE_COMPILER_SERVER?=0" >> $srcdir/$mcsdir/build/config.make
6583     fi
6584     echo "COMPILER_SERVER_PIPENAME?=monomake" >> $srcdir/$mcsdir/build/config.make
6586   fi
6590 libgdiplus_msg=${libgdiplus_loc:-assumed to be installed}
6592 btls_platform_string=
6593 if test x$enable_btls = xyes; then
6594         if test x$btls_android = xyes; then
6595                 btls_platform_string=" (android:$BTLS_PLATFORM)"
6596         else
6597                 btls_platform_string=" ($BTLS_PLATFORM)"
6598         fi
6601 thread_suspend_msg=
6602 if test x$buildsgen = xyes; then
6603         if test x$enable_cooperative_suspend != xno; then
6604                 thread_suspend_msg="Suspend:       Cooperative"
6605         elif test x$enable_hybrid_suspend != xno; then
6606                 thread_suspend_msg="Suspend:       Hybrid"
6607         else
6608                 thread_suspend_msg="Suspend:       Preemptive"
6609         fi
6611         
6612 echo "
6613         mcs source:    $mcsdir
6614         C# Compiler:   $csc_compiler
6616    Engine:
6617         Host:          $host
6618         Target:        $target
6619         GC:            $gc_msg 
6620         $thread_suspend_msg
6621         TLS:           $with_tls
6622         SIGALTSTACK:   $with_sigaltstack
6623         Engine:        $jit_status
6624         BigArrays:     $enable_big_arrays
6625         DTrace:        $enable_dtrace
6626         LLVM Back End: $enable_llvm (dynamically loaded: $enable_loadedllvm, built in-tree: $internal_llvm, assertions: $enable_llvm_asserts, msvc only: $enable_llvm_msvc_only)
6627         Spectre:       $spectre_mitigation_status
6628         Mono.Native:   $mono_native_text
6630    Libraries:
6631         .NET 4.x:        $with_profile4_x
6632         Xamarin.Android: $with_monodroid
6633         Xamarin.iOS:     $with_monotouch
6634         Xamarin.WatchOS: $with_monotouch_watch
6635         Xamarin.TVOS:    $with_monotouch_tv
6636         Xamarin.Mac:     $with_xammac
6637         Windows AOT:     $with_winaot
6638         Orbis:           $with_orbis
6639         Unreal:          $with_unreal
6640         WebAssembly:     $with_wasm
6641         Test profiles:   AOT Full ($with_testing_aot_full), AOT Hybrid ($with_testing_aot_hybrid)
6642         JNI support:     $jdk_headers_found
6643         libgdiplus:      $libgdiplus_msg
6644         zlib:            $zlib_msg
6645         BTLS:            $enable_btls$btls_platform_string
6646         jemalloc:        $with_jemalloc (always use: $with_jemalloc_always)
6647         crash reporting: $crash_reporting (private crashes: $with_crash_privacy)
6648         .NET Core:       $with_core
6649         $disabled
6651 if test x$with_static_mono = xno -a "x$host_win32" != "xyes"; then
6652    AC_MSG_WARN(Turning off static Mono is a risk, you might run into unexpected bugs)