diff options
| author | George Rimar <grimar@accesssoftek.com> | 2016-11-10 14:48:39 +0000 |
|---|---|---|
| committer | George Rimar <grimar@accesssoftek.com> | 2016-11-10 14:48:39 +0000 |
| commit | e93e0adbb537b6fda449a7aca59cda652e0e8cda (patch) | |
| tree | a354fe321eedba0c5ac2c183a19ad2c4f9d9327a | |
| parent | 7be6d994424ba699c9f6b672b650e63e7547776e (diff) | |
| download | bcm5719-llvm-e93e0adbb537b6fda449a7aca59cda652e0e8cda.tar.gz bcm5719-llvm-e93e0adbb537b6fda449a7aca59cda652e0e8cda.zip | |
Reverted r286451 "[ELF] - Allow separate form for -f (alias for -auxiliary)."
Though the patch was technically correct,
the only FreeBSD port (noticed atm) that tried using it was
www/mod_jk. And it seems just passed gcc option to linker by mistake:
"-Wl,-L-L/usr/local/lib -Wl,-rpath,/usr/local/lib -Wl,-fstack-protector -Wl,-fstack-protector -o mod_jk.la "
Given that it is an easy mistake to make, reverting for now.
llvm-svn: 286458
| -rw-r--r-- | lld/ELF/Options.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Options.td b/lld/ELF/Options.td index 261fad1dd42..6fcc7779197 100644 --- a/lld/ELF/Options.td +++ b/lld/ELF/Options.td @@ -223,7 +223,7 @@ def z: JoinedOrSeparate<["-"], "z">, MetaVarName<"<option>">, HelpText<"Linker option extensions">; // Aliases -def alias_auxiliary: JoinedOrSeparate<["-"], "f">, Alias<auxiliary>; +def alias_auxiliary: Separate<["-"], "f">, Alias<auxiliary>; def alias_Bdynamic_call_shared: F<"call_shared">, Alias<Bdynamic>; def alias_Bdynamic_dy: F<"dy">, Alias<Bdynamic>; def alias_Bstatic_dn: F<"dn">, Alias<Bstatic>; |

