[lld] r269788 - ELF: accept and ignore --no-undefined-version for compatibility
Saleem Abdulrasool via llvm-commits
llvm-commits at lists.llvm.org
Tue May 17 10:34:50 PDT 2016
Author: compnerd
Date: Tue May 17 12:34:50 2016
New Revision: 269788
URL: http://llvm.org/viewvc/llvm-project?rev=269788&view=rev
Log:
ELF: accept and ignore --no-undefined-version for compatibility
This is currently unsupported. Accept and ignore the flag for invocation
compatibility.
Modified:
lld/trunk/ELF/Options.td
Modified: lld/trunk/ELF/Options.td
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Options.td?rev=269788&r1=269787&r2=269788&view=diff
==============================================================================
--- lld/trunk/ELF/Options.td (original)
+++ lld/trunk/ELF/Options.td Tue May 17 12:34:50 2016
@@ -238,6 +238,7 @@ def no_copy_dt_needed_entries : Flag<["-
Alias<no_add_needed>;
def no_dynamic_linker : Flag<["--"], "no-dynamic-linker">;
def no_fatal_warnings : Flag<["--"], "no-fatal-warnings">;
+def no_undefined_version : Flag<["--", "-"], "no-undefined-version">;
def no_warn_common : Flag<["--", "-"], "no-warn-common">;
def no_warn_mismatch : Flag<["--"], "no-warn-mismatch">;
def rpath_link : Separate<["--", "-"], "rpath-link">;
More information about the llvm-commits
mailing list