Skip to content

Commit 79abf19

Browse files
beepbopbeepboopMike Stump
authored andcommitted
re PR target/61352 (gcc 4.9.0 fails to execute dsymutil when linking executables on darwin)
PR debug/61352 * collect2.c (maybe_run_lto_and_relink): Be sure to always run post ld passes when lto is used. From-SVN: r211067
1 parent 9a85ed0 commit 79abf19

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

gcc/ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2014-05-29 Mike Stump <mikestump@comcast.net>
2+
3+
PR debug/61352
4+
* collect2.c (maybe_run_lto_and_relink): Be sure to always run
5+
post ld passes when lto is used.
6+
17
2014-05-29 Vladimir Makarov <vmakarov@redhat.com>
28

39
PR rtl-optimization/61325

gcc/collect2.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,8 @@ maybe_run_lto_and_relink (char **lto_ld_argv, char **object_lst,
848848
fork_execute ("ld", lto_ld_argv);
849849
post_ld_pass (false);
850850
}
851+
else
852+
post_ld_pass (true);
851853
}
852854

853855
/* Main program. */

0 commit comments

Comments
 (0)