This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]