This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [patch] libunwind-based exception-handling for gcc (2nd versi on)
- From: "S. Bosscher" <S dot Bosscher at student dot tudelft dot nl>
- To: "'davidm at hpl dot hp dot com'" <davidm at hpl dot hp dot com>
- Cc: "'gcc-patches at gcc dot gnu dot org'" <gcc-patches at gcc dot gnu dot org>
- Date: Tue, 01 Oct 2002 08:16:12 +0200
- Subject: Re: [patch] libunwind-based exception-handling for gcc (2nd versi on)
Hi,
Some minor trouble for gcc.c:
diff -u -r1.337 gcc.c
--- gcc.c 22 Sep 2002 14:09:33 -0000 1.337
+++ gcc.c 1 Oct 2002 04:55:33 -0000
@@ -1531,6 +1531,9 @@
#else
"-lgcc_s%M"
#endif
+#ifdef USE_LIBUNWIND_EXCEPTIONS
+ " -lunwind"
+#endif
,
"-lgcc",
"-lgcc_eh");
Why the space after the first '"'?
Missing comma after ' -lunwind'? The '-lgcc_s%*' options share
the comma after '#endif'
Hope this helps,
Greetz
Steven