|
|
@@ -803,6 +803,8 @@ AC_ARG_WITH(xammac, [ --with-xammac=yes,no If you w
|
|
|
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])
|
|
|
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])
|
|
|
AC_ARG_WITH(winaot, [ --with-winaot=yes,no If you want to build the Windows friendly AOT assemblies (defaults to no)], [], [with_winaot=default])
|
|
|
+AC_ARG_WITH(orbis, [ --with-orbis=yes,no If you want to build the Orbis assemblies (defaults to no)], [], [with_orbis=default])
|
|
|
+
|
|
|
|
|
|
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])
|
|
|
|
|
|
@@ -821,6 +823,7 @@ with_xammac_default=no
|
|
|
with_testing_aot_hybrid_default=no
|
|
|
with_testing_aot_full_default=no
|
|
|
with_winaot_default=no
|
|
|
+with_orbis_default=no
|
|
|
|
|
|
with_bitcode_default=no
|
|
|
with_cooperative_gc_default=no
|
|
|
@@ -839,6 +842,7 @@ elif test x$with_runtime_preset = xall; then
|
|
|
with_monotouch_tv_default=yes
|
|
|
with_xammac_default=yes
|
|
|
with_winaot_default=yes
|
|
|
+ with_orbis_default=yes
|
|
|
elif test x$with_runtime_preset = xfullaot; then
|
|
|
DISABLE_MCS_DOCS_default=yes
|
|
|
with_testing_aot_full_default=yes
|
|
|
@@ -929,6 +933,9 @@ fi
|
|
|
if test "x$with_winaot" = "xdefault"; then
|
|
|
with_winaot=$with_winaot_default
|
|
|
fi
|
|
|
+if test "x$with_orbis" = "xdefault"; then
|
|
|
+ with_orbis=$with_orbis_default
|
|
|
+fi
|
|
|
|
|
|
|
|
|
AM_CONDITIONAL(INSTALL_4_x, [test "x$with_profile4_x" = "xyes"])
|
|
|
@@ -941,6 +948,7 @@ AM_CONDITIONAL(INSTALL_XAMMAC, [test "x$with_xammac" != "xno"])
|
|
|
AM_CONDITIONAL(INSTALL_TESTING_AOT_HYBRID, [test "x$with_testing_aot_hybrid" != "xno"])
|
|
|
AM_CONDITIONAL(INSTALL_TESTING_AOT_FULL, [test "x$with_testing_aot_full" != "xno"])
|
|
|
AM_CONDITIONAL(INSTALL_WINAOT, [test "x$with_winaot" != "xno"])
|
|
|
+AM_CONDITIONAL(INSTALL_ORBIS, [test "x$with_orbis" != "xno"])
|
|
|
|
|
|
AC_SUBST(INSTALL_TESTING_AOT_HYBRID)
|
|
|
AC_SUBST(INSTALL_TESTING_AOT_FULL)
|