[PATCH] D26888: [ELF] - Implemented -N.

Rui Ueyama via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 28 10:07:11 PST 2016


ruiu accepted this revision.
ruiu added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: ELF/Options.td:267
 def alias_l__library: J<"library=">, Alias<l>;
+def alias_omagic: F<"N">, Alias<omagic>;
 def alias_o_output: Joined<["--"], "output=">, Alias<o>;
----------------
For one letter option, please use `Flag<["-"], "N">` instead of `F`. We don't want to accept --F.


https://reviews.llvm.org/D26888





More information about the llvm-commits mailing list