aboutsummaryrefslogtreecommitdiff
path: root/MinGW
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2018-03-01 20:38:38 +0000
committerRui Ueyama <ruiu@google.com>2018-03-01 20:38:38 +0000
commit0f0154e45c41dd474577a076e23cdbb100e369d2 (patch)
treeb397c9b80b2e0a1b379ca5acd2f1f8f90ff7ed61 /MinGW
parenta4e4e75d2950739b262d5efbff3401d2f22fbe8f (diff)
[MinGW] Fix --{start,end}-group.
Currently --start-group=foo is accidentally accepted by the MinGW driver. Differential Revision: https://reviews.llvm.org/D43836 git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@326478 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'MinGW')
-rw-r--r--MinGW/Options.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/MinGW/Options.td b/MinGW/Options.td
index 34bf920db..4213b8e65 100644
--- a/MinGW/Options.td
+++ b/MinGW/Options.td
@@ -51,7 +51,7 @@ 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 end_group: J<"end-group">;
+def end_group: F<"end-group">;
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">;
@@ -60,7 +60,7 @@ def no_seh: F<"no-seh">;
def nxcompat: F<"nxcompat">, HelpText<"Enable data execution prevention">;
def pic_executable: F<"pic-executable">;
def sysroot: J<"sysroot">, HelpText<"Sysroot">;
-def start_group: J<"start-group">;
+def start_group: F<"start-group">;
def tsaware: F<"tsaware">, HelpText<"Create Terminal Server aware executable">;
def v: Flag<["-"], "v">, HelpText<"Display the version number">;
def version: F<"version">, HelpText<"Display the version number and exit">;