aboutsummaryrefslogtreecommitdiff
path: root/MinGW
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2018-02-27 06:26:35 +0000
committerMartin Storsjo <martin@martin.st>2018-02-27 06:26:35 +0000
commit05ab000ae0fcf98431fa4aeb48d694e8b035e237 (patch)
treefbff7651cc14af25fba8af776535b269f0072120 /MinGW
parent317ce761ae22027972694f8ebf3707670477da74 (diff)
[MinGW] Ignore the --start-group --end-group parameters
These are required for handling circular dependencies between static libraries, which is something that lld-link always does without any extra parameters. Differential Revision: https://reviews.llvm.org/D43786 git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@326172 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'MinGW')
-rw-r--r--MinGW/Options.td2
1 files changed, 2 insertions, 0 deletions
diff --git a/MinGW/Options.td b/MinGW/Options.td
index f3bf25a22..34bf920db 100644
--- a/MinGW/Options.td
+++ b/MinGW/Options.td
@@ -51,6 +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 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">;
@@ -59,6 +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 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">;