ignore /EXPERIMENTAL

This commit is contained in:
Nikita Smith
2026-01-15 18:29:37 -08:00
parent 0c0b7ac6d3
commit 6e32a1f11c
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -40,6 +40,7 @@ global read_only LNK_CmdSwitch g_cmd_switch_map[] =
{ LNK_CmdSwitch_ErrorReport, 0, "ERRORREPORT", "", "Deprecated starting Windows Vista." },
{ LNK_CmdSwitch_Export, 1, "EXPORT", ":SYMBOL", "" },
{ LNK_CmdSwitch_NotImplemented, 0, "EXPORTADMIN", "", "" },
{ LNK_CmdSwitch_Experimental, 0, "EXPERIMENTAL", "Not supported." },
{ LNK_CmdSwitch_FastFail, 0, "FASTFAIL", "", "Not used." },
{ LNK_CmdSwitch_NotImplemented, 0, "FASTGENPROFILE", "", "" },
{ LNK_CmdSwitch_FailIfMismatch, 1, "FAILIFMISMATCH", "", "" },
@@ -1350,6 +1351,10 @@ lnk_apply_cmd_option_to_config(LNK_Config *config, String8 cmd_name, String8List
}
} break;
case LNK_CmdSwitch_Experimental: {
// not supported
} break;
case LNK_CmdSwitch_FastFail: {
// do nothing
} break;
+1
View File
@@ -48,6 +48,7 @@ typedef enum
LNK_CmdSwitch_D2,
LNK_CmdSwitch_Entry,
LNK_CmdSwitch_ErrorReport,
LNK_CmdSwitch_Experimental,
LNK_CmdSwitch_Export,
LNK_CmdSwitch_FastFail,
LNK_CmdSwitch_FileAlign,