X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=configure.ac;h=7d3d9908debe4ca54ab975cfc433e3e65b46f76b;hb=e1bc49df99977be40222dec96096c19b9d04db7c;hp=962b70153a01688baf496c4ab7a84b9f2bc20a91;hpb=256e3ee192da85cf7c09a3890c06f7bc448ac817;p=mono.git diff --git a/configure.ac b/configure.ac index 962b70153a0..7d3d9908deb 100644 --- a/configure.ac +++ b/configure.ac @@ -432,6 +432,10 @@ AC_HEADER_STDC AC_LIBTOOL_WIN32_DLL # This causes monodis to not link correctly #AC_DISABLE_FAST_INSTALL + +#lookup makedev() header +AC_HEADER_MAJOR + AM_PROG_LIBTOOL # Use dolt (http://dolt.freedesktop.org/) instead of libtool for building. DOLT @@ -799,7 +803,7 @@ AC_ARG_WITH(xammac, [ --with-xammac=yes,no If you want to b AC_ARG_WITH(aot_hybrid, [ --with-aot_hybrid=yes,no If you want to build the aot_hybrid assemblies (defaults to no)], [], [with_aot_hybrid=default]) AC_ARG_WITH(aot_only, [ --with-aot_only=yes,no If you want to build the aot_only assemblies (defaults to no)], [], [with_aot_only=default]) -AC_ARG_WITH(runtime_preset, [ --with-runtime_preset=net_4_x,all,aot_preferred,aot_only,bitcode_aot_only Which default profile to build (defaults to net_4_x)], [], [with_runtime_preset=net_4_x]) +AC_ARG_WITH(runtime_preset, [ --with-runtime_preset=net_4_x,all,aot,hybridaot,fullaot,bitcode Which default profile to build (defaults to net_4_x)], [], [with_runtime_preset=net_4_x]) dnl dnl Profile defaults @@ -832,7 +836,7 @@ elif test x$with_runtime_preset = xall; then with_monotouch_watch_default=yes with_monotouch_tv_default=yes with_xammac_default=yes -elif test x$with_runtime_preset = xaot_only; then +elif test x$with_runtime_preset = xfullaot; then DISABLE_MCS_DOCS_default=yes with_aot_only_default=yes TEST_PROFILE=aot_only @@ -845,7 +849,7 @@ elif test x$with_runtime_preset = xaot_only; then AOT_BUILD_FLAGS="-O=gsharedvt --aot=full,$INVARIANT_AOT_OPTIONS" AOT_RUN_FLAGS="--full-aot" -elif test x$with_runtime_preset = xbitcode_aot_only; then +elif test x$with_runtime_preset = xbitcode; then DISABLE_MCS_DOCS_default=yes with_aot_only_default=yes with_bitcode_default=yes @@ -861,11 +865,10 @@ elif test x$with_runtime_preset = xbitcode_aot_only; then AOT_BUILD_FLAGS="--aot=llvmonly,$INVARIANT_AOT_OPTIONS" AOT_RUN_FLAGS="--llvmonly" -elif test x$with_runtime_preset = xaot_preferred; then +elif test x$with_runtime_preset = xhybridaot; then DISABLE_MCS_DOCS_default=yes with_aot_hybrid_default=yes TEST_PROFILE=aot_hybrid - enable_llvm_default=yes mono_feature_disable_com='yes' mono_feature_disable_remoting='yes' @@ -873,6 +876,13 @@ elif test x$with_runtime_preset = xaot_preferred; then AOT_BUILD_FLAGS="--aot=hybrid,$INVARIANT_AOT_OPTIONS" AOT_RUN_FLAGS="--hybrid-aot" +elif test x$with_runtime_preset = xaot; then + with_profile4_x_default=yes + + AOT_BUILD_FLAGS="--aot=$INVARIANT_AOT_OPTIONS" + AOT_RUN_FLAGS="" + + DISABLE_MCS_DOCS_default=yes else with_profile4_x_default=yes fi @@ -1063,11 +1073,6 @@ if test "x$mono_feature_disable_attach" = "xyes"; then AC_MSG_NOTICE([Disabled agent attach]) fi -if test "x$mono_feature_disable_full_messages" = "xyes"; then - AC_DEFINE(DISABLE_FULL_MESSAGES, 1, [Disables building in the full table of WAPI messages]) - AC_MSG_NOTICE([Disabled full messages for Win32 errors, only core message strings shipped]) -fi - if test "x$mono_feature_disable_verifier" = "xyes"; then AC_DEFINE(DISABLE_VERIFIER, 1, [Disables the verifier]) AC_MSG_NOTICE([Disabled the metadata and IL verifiers]) @@ -1409,7 +1414,15 @@ if test x$host_win32 = xno; then # We have the new, three-parameter version AC_MSG_RESULT(no) ]) - + AC_TRY_COMPILE([#include ], [ + CPU_COUNT((void *) 0); + ], [ + AC_MSG_RESULT(yes) + AC_DEFINE(GLIBC_HAS_CPU_COUNT, 1, [GLIBC has CPU_COUNT macro in sched.h]) + ], [ + # We have the new, three-parameter version + AC_MSG_RESULT(no) + ]) dnl ****************************************************************** dnl *** Check for large file support *** @@ -4076,7 +4089,7 @@ AC_SUBST(mono_build_root) mono_runtime=mono/mini/mono AC_SUBST(mono_runtime) -CSC=$mono_build_root/external/roslyn-binaries/Microsoft.Net.Compilers/Microsoft.Net.Compilers.1.3.2/tools/csc.exe +CSC=`cd $srcdir && pwd`/external/roslyn-binaries/Microsoft.Net.Compilers/Microsoft.Net.Compilers.1.3.2/tools/csc.exe mono_cfg_root=$mono_build_root/runtime if test x$host_win32 = xyes; then @@ -4371,6 +4384,7 @@ fi echo "exec_prefix=$exec_prefix" >> $mcs_topdir/build/config.make echo "sysconfdir=$sysconfdir" >> $mcs_topdir/build/config.make echo 'mono_libdir=${exec_prefix}/lib' >> $mcs_topdir/build/config.make + echo "mono_build_root=$mono_build_root" >> $mcs_topdir/build/config.make echo 'IL_FLAGS = /debug' >> $mcs_topdir/build/config.make echo "RUNTIME = $mono_build_root/runtime/mono-wrapper" >> $mcs_topdir/build/config.make echo "ILDISASM = $mono_build_root/runtime/monodis-wrapper" >> $mcs_topdir/build/config.make