[PATCH] D40031: [LLD] [MinGW] Ignore the --build-id, --pie-executable and --disable-auto-image-base options

Martin Storsjö via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 15 00:21:10 PST 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL318285: [MinGW] Ignore the --build-id, --pie-executable and --disable-auto-image-base… (authored by mstorsjo).

Changed prior to commit:
  https://reviews.llvm.org/D40031?vs=122849&id=122979#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D40031

Files:
  lld/trunk/MinGW/Options.td


Index: lld/trunk/MinGW/Options.td
===================================================================
--- lld/trunk/MinGW/Options.td
+++ lld/trunk/MinGW/Options.td
@@ -47,13 +47,16 @@
 def Bdynamic: F<"Bdynamic">, HelpText<"Link against shared libraries">;
 def Bstatic: F<"Bstatic">, HelpText<"Do not link against shared libraries">;
 def O: Joined<["-"], "O">, HelpText<"Optimize output file size">;
+def build_id: F<"build-id">;
+def disable_auto_image_base: F<"disable-auto-image-base">;
 def enable_auto_image_base: F<"enable-auto-image-base">;
 def enable_auto_import: F<"enable-auto-import">;
 def full_shutdown: Flag<["--"], "full-shutdown">;
 def high_entropy_va: F<"high-entropy-va">, HelpText<"Enable 64-bit ASLR">;
 def major_image_version: S<"major-image-version">;
 def minor_image_version: S<"minor-image-version">;
 def nxcompat: F<"nxcompat">, HelpText<"Enable data execution prevention">;
+def pic_executable: F<"pic-executable">;
 def sysroot: J<"sysroot">, HelpText<"Sysroot">;
 def tsaware: F<"tsaware">, HelpText<"Create Terminal Server aware executable">;
 def v: Flag<["-"], "v">, HelpText<"Display the version number">;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D40031.122979.patch
Type: text/x-patch
Size: 1145 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171115/00b3f6bf/attachment.bin>


More information about the llvm-commits mailing list