Skip to content

Commit 639bfe3

Browse files
TheNumbatmshinwell
authored andcommitted
Temporarily disable architecture check (#2308)
(cherry picked from commit 7ecdbe3)
1 parent 29c1e2d commit 639bfe3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

ocaml/runtime/startup_nat.c

Lines changed: 3 additions & 1 deletion
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

ocaml/runtime4/startup_nat.c

Lines changed: 4 additions & 1 deletion
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)