report unknown ignore codes only in debug builds

This commit is contained in:
Nikita Smith
2026-02-13 22:10:42 -08:00
parent 6fb055bf6e
commit 09e37a6a2e
+2
View File
@@ -1424,7 +1424,9 @@ lnk_apply_cmd_option_to_config(LNK_Config *config, String8 cmd_name, String8List
lnk_ignore_error(LNK_Warning_SectionFlagsConflict); lnk_ignore_error(LNK_Warning_SectionFlagsConflict);
} break; } break;
default: { default: {
#if BUILD_DEBUG
lnk_not_implemented("TODO: /IGNORE:%llu", error_code); lnk_not_implemented("TODO: /IGNORE:%llu", error_code);
#endif
} break; } break;
} }
} }