diff options
| author | gingerBill <bill@gingerbill.org> | 2021-11-04 00:50:28 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-11-04 00:50:28 +0000 |
| commit | 9ab71ca0da6a68806ff9825000799e8ddfbfc341 (patch) | |
| tree | 981a837391fb65baf6ece23420527eb382f7b08b /src/checker.cpp | |
| parent | 3d06dddb72e00409b14df36959bb3bcdc8d42999 (diff) | |
Add `ODIN_NO_CRT` global constant
Diffstat (limited to 'src/checker.cpp')
| -rw-r--r-- | src/checker.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index f0f463816..92e38a643 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -782,6 +782,7 @@ void init_universal(void) { add_global_bool_constant("ODIN_DISABLE_ASSERT", bc->ODIN_DISABLE_ASSERT); add_global_bool_constant("ODIN_DEFAULT_TO_NIL_ALLOCATOR", bc->ODIN_DEFAULT_TO_NIL_ALLOCATOR); add_global_bool_constant("ODIN_NO_DYNAMIC_LITERALS", bc->no_dynamic_literals); + add_global_bool_constant("ODIN_NO_CRT", bc->no_crt); add_global_bool_constant("ODIN_TEST", bc->command_kind == Command_test); |