Subject: quick question re kernel compile
To: None <port-sparc@netbsd.org>
From: Greg MATTHEWS <G.Matthews@cs.ucl.ac.uk>
List: port-sparc
Date: 10/10/2002 12:18:06
just trying to compile spiffy new 1.6 kernel and it stopped here:

building standard kern library
cc  -O2 -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes  
-Wpointer-arith -Wno-uninitialized -Wno-main -I. -I../../../../arch 
-I../../../.. -nostdinc -DSUN4M -DBLINK -DRASTERCONSOLE -DLKM -DMAXUSERS=32 
-D_KERNEL  -c swapnetbsd.c
make: don't know how to make vers.o. Stop

make: stopped in /sys/arch/sparc/compile/POTOMAC

which is presumably at this point in the Makefile:

.MAIN: all
all: netbsd

KERNELS+=netbsd 
SWAP_OBJnetbsd=swapnetbsd.o 
netbsd: ${SYSTEM_DEP} swapnetbsd.o vers.o
        ${SYSTEM_LD_HEAD}
        ${SYSTEM_LD} swapnetbsd.o
        ${SYSTEM_LD_TAIL}

but i cant find the object file:

potomac# find /usr/src -name vers.o -print
potomac# 

did i miss something out of my config file?

GREG