Skip to content

Commit e20ed87

Browse files
authored
flambda-backend: Temporarily disable architecture check (#2308)
1 parent 496965b commit e20ed87

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

runtime/startup_nat.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ value caml_startup_common(char_os **argv, int pooling)
9393

9494
/* Determine options */
9595
caml_parse_ocamlrunparam();
96-
caml_assert_arch_extensions();
96+
97+
// CR mslater: re-enable architecture check
98+
// caml_assert_arch_extensions();
9799

98100
#ifdef DEBUG
99101
// Silenced in flambda-backend to make it easier to run tests that

runtime4/startup_nat.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,10 @@ value caml_startup_common(char_os **argv, int pooling)
117117
caml_verb_gc = 0x3F;
118118
#endif
119119
caml_parse_ocamlrunparam();
120-
caml_assert_arch_extensions();
120+
121+
// CR mslater: re-enable architecture check
122+
// caml_assert_arch_extensions();
123+
121124
CAML_EVENTLOG_INIT();
122125
#ifdef DEBUG
123126
caml_gc_message (-1, "### OCaml runtime: debug mode ###\n");

0 commit comments

Comments
 (0)