Commit 7acd1f9c authored by zack's avatar zack
Browse files

* gcc.c (init_spec): Add -lunwind to shared case too if

	USE_LIBUNWIND_EXCEPTIONS.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75276 138bc75d-0d04-0410-961f-82ee72b054a4
parent d4c3b80e
2003-12-31 Zack Weinberg <zack@codesourcery.com>
* gcc.c (init_spec): Add -lunwind to shared case too if
USE_LIBUNWIND_EXCEPTIONS.
2003-12-31 Joseph S. Myers <jsm@polyomino.org.uk>
 
* doc/include/texinfo.tex: Update to version 2003-12-21.10.
......@@ -311,7 +316,7 @@
2003-12-25 Andrew Pinski <pinskia@physics.uc.edu>
 
PR C++/13429, C/11944
* c-common.c (c_build_qualified_type): Return early when type is
* c-common.c (c_build_qualified_type): Return early when type is
error_mark_node.
(c_apply_type_quals_to_decl): Likewise.
 
......
......@@ -1632,6 +1632,9 @@ init_spec (void)
"-lgcc_s"
#else
"-lgcc_s%M"
#endif
#ifdef USE_LIBUNWIND_EXCEPTIONS
" -lunwind"
#endif
,
"-lgcc",
......@@ -1653,6 +1656,9 @@ init_spec (void)
"-lgcc_s"
#else
"-lgcc_s%M"
#endif
#ifdef USE_LIBUNWIND_EXCEPTIONS
" -lunwind"
#endif
,
"libgcc.a%s",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment