* Uncompilable....
@ 2002-06-06 9:30 Harry Kalogirou
2002-06-06 11:39 ` Uncompilable Alan Cox
0 siblings, 1 reply; 5+ messages in thread
From: Harry Kalogirou @ 2002-06-06 9:30 UTC (permalink / raw)
To: Linux-8086
make -C . all
make[1]: Entering directory `/home/harkal/cvs/elks'
make -C kernel kernel.a
make[2]: Entering directory `/home/harkal/cvs/elks/kernel'
bcc -0 -i -O -I/home/harkal/cvs/elks/include
-DELKS_VERSION_CODE=0x00010002 -DUTS_RELEASE=\"0.1.1-pre2\" -D__KERNEL__
-ansi -c -o version.o version.c
version.c:10.48: error: string longer than dimension
make[2]: *** [version.o] Error 1
make[2]: Leaving directory `/home/harkal/cvs/elks/kernel'
make[1]: *** [kernel/kernel.a] Error 2
make[1]: Leaving directory `/home/harkal/cvs/elks'
make: *** [elks] Error 2
That is the output of making the current CVS tree.
Harry
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Uncompilable....
2002-06-06 11:39 ` Uncompilable Alan Cox
@ 2002-06-06 10:56 ` Paul Nasrat
2002-06-06 18:13 ` Uncompilable Harry Kalogirou
1 sibling, 0 replies; 5+ messages in thread
From: Paul Nasrat @ 2002-06-06 10:56 UTC (permalink / raw)
To: Linux-8086
On Thu, Jun 06, 2002 at 12:39:10PM +0100, Alan Cox wrote:
> On Thu, 2002-06-06 at 10:30, Harry Kalogirou wrote:
> > bcc -0 -i -O -I/home/harkal/cvs/elks/include
> > -DELKS_VERSION_CODE=0x00010002 -DUTS_RELEASE=\"0.1.1-pre2\" -D__KERNEL__
> > -ansi -c -o version.o version.c
> > version.c:10.48: error: string longer than dimension
> > make[2]: *** [version.o] Error 1
> > make[2]: Leaving directory `/home/harkal/cvs/elks/kernel'
> > make[1]: *** [kernel/kernel.a] Error 2
> > make[1]: Leaving directory `/home/harkal/cvs/elks'
> > make: *** [elks] Error 2
>
> I compiled it about 5 minutes ago -and it built fine ?
Hmm broken in a different way here, I just slurped the cvs and did a
default .config
(cd ../.. ; ld86 -0 -i \
arch/i86/boot/crt0.o arch/i86/boot/crt1.o \
init/main.o kernel/kernel.a fs/fs.a lib/lib.a net/net.a
fs/minix/minixfs.a arch/i86/kernel/akernel.a arch/i86/lib/lib86.a
arch/i86/mm/mm.a arch/i86/drivers/char/chr_drv.a
arch/i86/drivers/block/blk_drv.a \
-t -M -o arch/i86/boot/system > System.tmp ; \
sort -k4 System.tmp > System.map ; rm -f System.tmp )
undefined symbol: _rs_ops
This seems to be defined in arch/i86/drivers/char/serial.c
but inside a:
#ifdef CONFIG_CONSOLE_SERIAL
but it's used in ntty.c within a
#ifdef CONFIG_CHAR_DEV_RS
Paul
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Uncompilable....
2002-06-06 9:30 Uncompilable Harry Kalogirou
@ 2002-06-06 11:39 ` Alan Cox
2002-06-06 10:56 ` Uncompilable Paul Nasrat
2002-06-06 18:13 ` Uncompilable Harry Kalogirou
0 siblings, 2 replies; 5+ messages in thread
From: Alan Cox @ 2002-06-06 11:39 UTC (permalink / raw)
To: Harry Kalogirou; +Cc: Linux-8086
On Thu, 2002-06-06 at 10:30, Harry Kalogirou wrote:
> bcc -0 -i -O -I/home/harkal/cvs/elks/include
> -DELKS_VERSION_CODE=0x00010002 -DUTS_RELEASE=\"0.1.1-pre2\" -D__KERNEL__
> -ansi -c -o version.o version.c
> version.c:10.48: error: string longer than dimension
> make[2]: *** [version.o] Error 1
> make[2]: Leaving directory `/home/harkal/cvs/elks/kernel'
> make[1]: *** [kernel/kernel.a] Error 2
> make[1]: Leaving directory `/home/harkal/cvs/elks'
> make: *** [elks] Error 2
I compiled it about 5 minutes ago -and it built fine ?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Uncompilable....
2002-06-06 11:39 ` Uncompilable Alan Cox
2002-06-06 10:56 ` Uncompilable Paul Nasrat
@ 2002-06-06 18:13 ` Harry Kalogirou
2002-06-06 21:35 ` Uncompilable Riley Williams
1 sibling, 1 reply; 5+ messages in thread
From: Harry Kalogirou @ 2002-06-06 18:13 UTC (permalink / raw)
To: Alan Cox; +Cc: Linux-8086
> I compiled it about 5 minutes ago -and it built fine ?
Well it has to do with the UTS_VERTION define that is probably
generated at the compliling machine. This problem was encountered
again some time ago....
http://rainbow.cs.unipi.gr/linux-8086-list/2001/11/1098.html
Harry
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Uncompilable....
2002-06-06 18:13 ` Uncompilable Harry Kalogirou
@ 2002-06-06 21:35 ` Riley Williams
0 siblings, 0 replies; 5+ messages in thread
From: Riley Williams @ 2002-06-06 21:35 UTC (permalink / raw)
To: Harry Kalogirou; +Cc: Alan Cox, Linux-8086
Hi Harry.
>> I compiled it about 5 minutes ago -and it built fine ?
> Well it has to do with the UTS_VERTION define that is probably
> generated at the compliling machine. This problem was encountered
> again some time ago....
I remember well the first time this problem came up, and I committed a
patch to fix it then. Somewhere in between, that patch was obviously
reverted, so I've just re-committed it along with a patch to display the
contents of include/linuxmt/compiler-generated.h (the header file that
is created as part of the compile procedure) to make such obvious.
I've checked that the result both compiles and boots, so no problems
there either - now it's bed for me so I can be ready for the morning...
Best wishes from Riley.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-06-06 21:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-06 9:30 Uncompilable Harry Kalogirou
2002-06-06 11:39 ` Uncompilable Alan Cox
2002-06-06 10:56 ` Uncompilable Paul Nasrat
2002-06-06 18:13 ` Uncompilable Harry Kalogirou
2002-06-06 21:35 ` Uncompilable Riley Williams
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox