forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure libgcc_s unwinder is always used on 64-bit Solaris 10+/x86 (PR…
… target/59788) gcc: PR target/59788 * config/sol2.h (LINK_LIBGCC_MAPFILE_SPEC): Define. (LINK_SPEC): Use it for -shared, -shared-libgcc. libgcc: PR target/59788 * config/t-slibgcc-sld (libgcc-unwind.map): New target. (install-libgcc-unwind-map-forbuild): New target. (all): Depend on install-libgcc-unwind-map-forbuild. (install-libgcc-unwind-map): New target. (install): Depend on install-libgcc-unwind-map. gcc/testsuite: PR target/59788 * g++.dg/eh/unwind-direct.C: New test. toplevel: PR target/59788 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on *solaris2*. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@207454 138bc75d-0d04-0410-961f-82ee72b054a4
- Loading branch information
ro
committed
Feb 4, 2014
1 parent
743164d
commit 48118d0
Showing
8 changed files
with
75 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2014-02-04 Rainer Orth <[email protected]> | ||
|
||
PR target/59788 | ||
* ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on | ||
*solaris2*. | ||
|
||
2014-01-21 John David Anglin <[email protected]> | ||
|
||
* MAINTAINERS: Update my email address. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2014-02-04 Rainer Orth <[email protected]> | ||
|
||
PR target/59788 | ||
* config/sol2.h (LINK_LIBGCC_MAPFILE_SPEC): Define. | ||
(LINK_SPEC): Use it for -shared, -shared-libgcc. | ||
|
||
2014-02-03 Jan Hubicka <[email protected]> | ||
|
||
PR ipa/59882 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2014-02-04 Rainer Orth <[email protected]> | ||
|
||
PR target/59788 | ||
* g++.dg/eh/unwind-direct.C: New test. | ||
|
||
2014-02-04 Uros Bizjak <[email protected]> | ||
|
||
* lib/tsan-dg.exp (tsan_init): Set trivial testcase | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// PR target/59788 | ||
// { dg-do run { target { *-*-solaris2* && { ! gld } } } } | ||
// { dg-options "-Wl,-Bdirect" } | ||
|
||
#include <stdexcept> | ||
|
||
int | ||
main(void) | ||
{ | ||
try | ||
{ throw std::runtime_error( "Catch me if you can!"); } | ||
catch(...) | ||
{ return 0; } | ||
return 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
2014-02-04 Rainer Orth <[email protected]> | ||
|
||
PR target/59788 | ||
* config/t-slibgcc-sld (libgcc-unwind.map): New target. | ||
(install-libgcc-unwind-map-forbuild): New target. | ||
(all): Depend on install-libgcc-unwind-map-forbuild. | ||
(install-libgcc-unwind-map): New target. | ||
(install): Depend on install-libgcc-unwind-map. | ||
|
||
2014-02-02 Sandra Loosemore <[email protected]> | ||
|
||
* config/nios2/crti.S (_init): Initialize GOT pointer from | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters