This is the mail archive of the gcc@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] | |
Hi,
after adding this minor patch:
diff -u -p -r1.11 strsignal.c
--- libiberty//strsignal.c 15 Apr 2003 20:36:33 -0000 1.11
+++ libiberty//strsignal.c 15 Jul 2003 16:11:34 -0000
@@ -558,8 +558,8 @@ followed by a newline.
void
psignal (signo, message)
- unsigned signo;
- char *message;
+ int signo;
+ const char *message;
{
if (signal_names == NULL)
{
to match psignals definition with the declaration in glibc's signal.h
I'm stuck building libiberty for n32:
> make[3]: Entering directory `/var/scratch/crossdev/src/gcc/build-gcc-mips64-linux/mips64-linux/32/libiberty'
> make[3]: *** No rule to make target `all'. Stop.
the o32 libiberty in mips64-linux/ built fine though. I configured like this:
Reading specs from /usr/local/stow/cross-mips64-linux/lib/gcc-lib/mips64-linux/3.4/specs
Configured with: ../gcc-cvs/configure --prefix=/usr/local/stow/cross-mips64-linux --target=mips64-linux --enable-languages=c,c++ --disable-shared --disable-threads
Thread model: single
gcc version 3.4 20030715 (experimental)
Any help is greatly appreciated.
-- Guido
Attachment:
pgp00000.pgp
Description: PGP signature
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |