diff options
| author | gingerBill <bill@gingerbill.org> | 2023-02-03 15:17:30 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-02-03 15:17:30 +0000 |
| commit | 032428163452990e2cd33be4a21cca8877e46a22 (patch) | |
| tree | 3feae7a5b0b44218caeef5871ae144fa22233022 /src/build_settings.cpp | |
| parent | de0a3e0ab986f6ea9c73315a8405103a4e147bb8 (diff) | |
Enforce dynamic map calls for the time being
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index c36df5527..a3873be82 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -1253,6 +1253,9 @@ gb_internal void init_build_context(TargetMetrics *cross_target) { bc->optimization_level = gb_clamp(bc->optimization_level, 0, 3); + // ENFORCE DYNAMIC MAP CALLS + bc->dynamic_map_calls = true; + bc->ODIN_VALGRIND_SUPPORT = false; if (build_context.metrics.os != TargetOs_windows) { switch (bc->metrics.arch) { |