diff options
| author | gingerBill <bill@gingerbill.org> | 2018-08-13 01:22:14 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-08-13 01:22:14 +0100 |
| commit | 89f4e7a8dbed4272f85f10568a542697aa3b38f8 (patch) | |
| tree | 125195ac6f23c9ec830b1ea0423001771eeb7592 /src/build_settings.cpp | |
| parent | 55f4eabecdb5282d975369ec770078ec7bd49be6 (diff) | |
`-no-crt` flag for windows amd64
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index ee4466698..ca11468f8 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -85,6 +85,7 @@ struct BuildContext { bool keep_temp_files; bool no_bounds_check; bool no_output_files; + bool no_crt; gbAffinity affinity; isize thread_count; @@ -528,7 +529,7 @@ void init_build_context(void) { gbString llc_flags = gb_string_make_reserve(heap_allocator(), 64); if (bc->ODIN_DEBUG) { - llc_flags = gb_string_appendc(llc_flags, "-debug-compile "); + // llc_flags = gb_string_appendc(llc_flags, "-debug-compile "); } // NOTE(zangent): The linker flags to set the build architecture are different |