[PATCH] D136418: [WindowsKernel]add Release build options

Qfrost via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 20 22:48:12 PDT 2022


Qfrost911 updated this revision to Diff 469471.

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D136418/new/

https://reviews.llvm.org/D136418

Files:
  lld/COFF/Options.td


Index: lld/COFF/Options.td
===================================================================
--- lld/COFF/Options.td
+++ lld/COFF/Options.td
@@ -132,7 +132,6 @@
     HelpText<"Use module-definition file">;
 
 def debug : F<"debug">, HelpText<"Embed a symbol table in the image">;
-def release : F<"release">, HelpText<"Link without symbol table in the image">;
 def debug_opt : P<"debug", "Embed a symbol table in the image with option">;
 def debugtype : P<"debugtype", "Debug Info Options">;
 def dll : F<"dll">, HelpText<"Create a DLL">;
@@ -296,6 +295,8 @@
 // The flags below do nothing. They are defined only for link.exe compatibility.
 //==============================================================================
 
+def release : F<"release">, HelpText<"Link without symbol table in the image">;
+
 def ignoreidl : F<"ignoreidl">;
 def ltcg : F<"ltcg">;
 def assemblydebug : F<"assemblydebug">;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D136418.469471.patch
Type: text/x-patch
Size: 909 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221021/2dbd8ec7/attachment.bin>


More information about the llvm-commits mailing list