Related articles |
---|
Compiling Holub's c-code compiler on SunOS Release 4.1.3 landt@acf4.nyu.edu (1995-04-20) |
Newsgroups: | comp.compilers |
From: | landt@acf4.nyu.edu (Beads) |
Keywords: | C, question |
Organization: | New York University |
Date: | Thu, 20 Apr 1995 04:03:29 GMT |
I just got the source disk and have ported it to our system.
Unfortunately, SUN is no fun when it comes to system-dependency. I'd
appreciate any information from those who have experienced installing
this compiler on the SUN platform. For starters, I'd like to know a
workaround for this one:
(maya)% make
cc -I/robust.a/student/beads/compiler/include -target sun4 -c concat.c
"0.tr", line 193: illegal type combination
"concat.c", line 26: illegal indirection
"concat.c", line 28: illegal indirection
*** Error code 1
make: Fatal error: Command failed for target `concat.o'
(maya)% cat concat.c | head -29 | tail -5
while( *src && size-- > 1 )
*dst++ = *src++ ;
*dst++ = '\0';
va_end( args );
(maya)%
--
Return to the
comp.compilers page.
Search the
comp.compilers archives again.