Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[clr] Generate verifiable code by default (these segfaults are gettin…
…g irritating)
  • Loading branch information
sorear committed Feb 18, 2011
1 parent dc52195 commit c2ca536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/CLRBackend.cs
Expand Up @@ -3528,7 +3528,7 @@ public class CLRBackend {
public static int Verbose =
int.Parse(Environment.GetEnvironmentVariable("NIECZA_CODEGEN_TRACE") ?? "0");
public static bool Verifiable =
Environment.GetEnvironmentVariable("NIECZA_CODEGEN_VERIFIABLE") != null ? true : false;
Environment.GetEnvironmentVariable("NIECZA_CODEGEN_UNVERIFIABLE") != null ? false : true;

CLRBackend(string dir, string mobname, string filename) {
AssemblyName an = new AssemblyName(mobname);
Expand Down

0 comments on commit c2ca536

Please sign in to comment.