[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug ld/14918] linking with -flto always links in libgcc:s.so
From: |
hjl.tools at gmail dot com |
Subject: |
[Bug ld/14918] linking with -flto always links in libgcc:s.so |
Date: |
Wed, 05 Dec 2012 16:25:29 +0000 |
http://sourceware.org/bugzilla/show_bug.cgi?id=14918
H.J. Lu <hjl.tools at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|2.23 |2.24 (HEAD)
--- Comment #1 from H.J. Lu <hjl.tools at gmail dot com> 2012-12-05 16:25:29
UTC ---
I have this patch in the Linux binutils:
diff --git a/ld/plugin.c b/ld/plugin.c
index da99e77..2966f0f 100644
--- a/ld/plugin.c
+++ b/ld/plugin.c
@@ -217,6 +220,17 @@ plugin_opt_plugin_arg (const char *arg)
if (!last_plugin)
return set_plugin_error (_("<no plugin>"));
+ /* Ignore -pass-through= from GCC driver. */
+ if (*arg == '-')
+ {
+ const char *p;
+ for (p = arg + 1; p; p++)
+ if (*p != '-')
+ break;
+ if (strncmp (p, "pass-through=", 13) == 0)
+ return 0;
+ }
+
newarg = xmalloc (sizeof *newarg);
newarg->arg = arg;
newarg->next = NULL;
However, I don't know how safe it is in the FSF binutils.
--
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.