diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-25 21:13:36 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-25 21:13:36 +0000 |
commit | 67e693c88745f2ba773ff8173661a26e09a2e1c1 (patch) | |
tree | 852a4bc6bcf17cb8a1a20e074c870899e047faa1 /gcc/cp/g++spec.c | |
parent | cfae74214c1137dde8eb7d82de351e11b7ca5d0e (diff) | |
download | gcc-67e693c88745f2ba773ff8173661a26e09a2e1c1.tar.gz |
cp:
* error.c (print_whitespace): Remove.
* g++spec.c (LIBUNWIND): Move.
* mangle.c (mangled_position, write_signed_number): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55760 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/g++spec.c')
-rw-r--r-- | gcc/cp/g++spec.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/cp/g++spec.c b/gcc/cp/g++spec.c index 4087e4ae1c4..706b9697ca3 100644 --- a/gcc/cp/g++spec.c +++ b/gcc/cp/g++spec.c @@ -43,10 +43,6 @@ Boston, MA 02111-1307, USA. */ #define LIBSTDCXX_PROFILE "-lstdc++" #endif -#ifndef LIBUNWIND -#define LIBUNWIND "-lunwind" -#endif - void lang_specific_driver (in_argc, in_argv, in_added_libraries) int *in_argc; @@ -277,6 +273,9 @@ lang_specific_driver (in_argc, in_argv, in_added_libraries) arglist[j++] = saw_profile_flag ? LIBSTDCXX_PROFILE : LIBSTDCXX; added_libraries++; #ifdef USE_LIBUNWIND_EXCEPTIONS +# ifndef LIBUNWIND +# define LIBUNWIND "-lunwind" +# endif arglist[j++] = LIBUNWIND; added_libraries++; #endif |