Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Jul 2001 11:40:04 -0700 (PDT)
From:      FUJISHIMA Satsuki <sf@FreeBSD.org>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: i386/28562: assym.s: No such file or directory
Message-ID:  <200107011840.f61Ie4P77166@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR i386/28562; it has been noted by GNATS.

From: FUJISHIMA Satsuki <sf@FreeBSD.org>
To: kaz@kobe1995.net
Cc: FreeBSD-gnats-submit@freebsd.org
Subject: Re: i386/28562: assym.s: No such file or directory
Date: Mon, 02 Jul 2001 03:36:36 +0900

 At Sun, 1 Jul 2001 11:55:32 +0900 (JST),
 kaz@kobe1995.net wrote:
 > Can't make my kernel. Costomize my kernel configuratoin file
 > "KOBE" as below. And "config KOBE","cd ../../compile/KOBE",
 > "make -DNO_MODULES depend all",then failed as
 
 Do not run depend and all on one make.
 assym.s is made during make depend.
 
 # make depend
 cc -c -O -pipe -march=i686 -march=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -fformat-extensions -ansi  -nostdinc -I- -I. -I../.. -I../../../include  -D_KERNEL -include opt_global.h -elf  -mpreferred-stack-boundary=2 ../../i386/i386/genassym.c
 sh ../../kern/genassym.sh genassym.o > assym.s
 
 The proper way is:
 make -DNO_MODULES depend && make -DNO_MODULES all
 
 -- 
 FUJISHIMA Satsuki
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200107011840.f61Ie4P77166>