[lld] [llvm] [llvm-lib] Add /llvmlibindex:no to disable writing an index (PR #120596)

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 19 09:17:20 PST 2024


================
@@ -28,6 +28,11 @@ def nativedeffile : P<"defArm64Native", "def file to use to generate native ARM6
 def llvmlibthin : F<"llvmlibthin">,
     HelpText<"Make .lib point to .obj files instead of copying their contents">;
 
+def llvmlibindex : F<"llvmlibindex">,
+    HelpText<"Write an index to the output (default)">;
+def llvmlibindex_no : F<"llvmlibindex:no">,
+    HelpText<"Do not write an index to the output">;
----------------
nico wrote:

Done, thanks! I thought there's no B<> in this file, but there is (and if there wasn't, I should've added one).

(There's no allowbind in this file at least :P But there is WX.)

https://github.com/llvm/llvm-project/pull/120596


More information about the llvm-commits mailing list