[ARC] Update LINK_EH_SPEC linker spec.
authorAlexey Brodkin <abrodkin@synopsys.com>
Mon, 17 Sep 2018 08:52:10 +0000 (08:52 +0000)
committerClaudiu Zissulescu <claziss@gcc.gnu.org>
Mon, 17 Sep 2018 08:52:10 +0000 (10:52 +0200)
With no trailing space in LINK_EH_SPEC linker spec gets generated as:
------------------------>8---------------------
%{!r:--build-id} --eh-frame-hdr%{h*} ...
------------------------>8---------------------

or even worse if hash style is added:
------------------------>8---------------------
%{!r:--build-id} --eh-frame-hdr--hash-style=sysv %{h*} ...
------------------------>8---------------------

Now if that spec is really used by LD then it fails inevitably
saying that it doesn't know option "--eh-frame-hdr--hash-style=sysv".

2018-09-17  Alexey Brodkin  <abrodkin@synopsys.com>

* config/arc/linux.h (LINK_EH_SPEC): Add missing space.

From-SVN: r264361

gcc/ChangeLog
gcc/config/arc/linux.h

index fb43eca..30796de 100644 (file)
@@ -1,3 +1,7 @@
+2018-09-17  Alexey Brodkin  <abrodkin@synopsys.com>
+
+       * config/arc/linux.h (LINK_EH_SPEC): Add missing space.
+
 2018-09-17  Martin Liska  <mliska@suse.cz>
 
        * doc/gcov.texi: Document new option --use-hotness-colors.
index 96d548e..62ebe4d 100644 (file)
@@ -98,7 +98,7 @@ along with GCC; see the file COPYING3.  If not see
    Signalize that because we have fde-glibc, we don't need all C shared libs
    linked against -lgcc_s.  */
 #undef LINK_EH_SPEC
-#define LINK_EH_SPEC "--eh-frame-hdr"
+#define LINK_EH_SPEC "--eh-frame-hdr "
 #endif
 
 #undef SUBTARGET_CPP_SPEC