Răsfoiți Sursa

Disable the error checking for MONO_GC_PARAMS in boehm, to avoid erroring out when sgen parameters are passed to it

Zoltan Varga 14 ani în urmă
părinte
comite
e724aba589
1 a modificat fișierele cu 3 adăugiri și 0 ștergeri
  1. 3 0
      mono/metadata/boehm-gc.c

+ 3 - 0
mono/metadata/boehm-gc.c

@@ -163,9 +163,12 @@ mono_gc_base_init (void)
 				}
 				continue;
 			} else {
+				/* Could be a parameter for sgen */
+				/*
 				fprintf (stderr, "MONO_GC_PARAMS must be a comma-delimited list of one or more of the following:\n");
 				fprintf (stderr, "  max-heap-size=N (where N is an integer, possibly with a k, m or a g suffix)\n");
 				exit (1);
+				*/
 			}
 		}
 		g_strfreev (opts);