Skip to content

Commit

Permalink
Disable the IL verifier for now, it can't handle code compiled withou…
Browse files Browse the repository at this point in the history
…t /features:peverify-compat (#33478)

See mono/mono#18572 (comment).

Fixes mono/mono#18572.

Co-authored-by: vargaz <[email protected]>
  • Loading branch information
monojenkins and vargaz authored Mar 11, 2020
1 parent 871e874 commit 5ea5b57
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/mono/mono/metadata/verify.c
Original file line number Diff line number Diff line change
Expand Up @@ -4925,6 +4925,10 @@ mono_method_verify (MonoMethod *method, int level)
return NULL;
}

// Disable for now
if (TRUE)
return NULL;

memset (&ctx, 0, sizeof (VerifyContext));

//FIXME use mono_method_get_signature_full
Expand Down

0 comments on commit 5ea5b57

Please sign in to comment.