mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-04 12:58:41 +00:00
fix typo that broke /NODEFAULTLIB usage
This commit is contained in:
+2
-6
@@ -1619,12 +1619,8 @@ lnk_build_link_context(TP_Context *tp, TP_Arena *tp_arena, LNK_Config *config)
|
|||||||
ProfBegin("Input Libs");
|
ProfBegin("Input Libs");
|
||||||
|
|
||||||
// input libs from command line only
|
// input libs from command line only
|
||||||
U64 input_source_opl = ArrayCount(input_libs);
|
U64 input_source_opl = config->no_default_libs ? LNK_InputSource_Default: LNK_InputSource_Count;
|
||||||
if (config->no_default_libs) {
|
for EachIndex(input_source, input_source_opl) {
|
||||||
input_source_opl = LNK_InputSource_Default;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (U64 input_source = 0; input_source < ArrayCount(input_libs); ++input_source) {
|
|
||||||
ProfBeginV("Input Source %S", lnk_string_from_input_source(input_source));
|
ProfBeginV("Input Source %S", lnk_string_from_input_source(input_source));
|
||||||
|
|
||||||
Temp temp = temp_begin(scratch.arena);
|
Temp temp = temp_begin(scratch.arena);
|
||||||
|
|||||||
Reference in New Issue
Block a user