From owner-freebsd-questions@FreeBSD.ORG Thu Nov 4 11:43:06 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9D6E16A4CE for ; Thu, 4 Nov 2004 11:43:06 +0000 (GMT) Received: from smtp817.mail.sc5.yahoo.com (smtp817.mail.sc5.yahoo.com [66.163.170.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 017AF43D2F for ; Thu, 4 Nov 2004 11:43:06 +0000 (GMT) (envelope-from krinklyfig@spymac.com) Received: from unknown (HELO smogmonster.com) (krinklyfig@pacbell.net@64.171.0.21 with plain) by smtp817.mail.sc5.yahoo.com with SMTP; 4 Nov 2004 11:43:02 -0000 From: Joshua Tinnin To: freebsd-questions@freebsd.org Date: Thu, 4 Nov 2004 03:42:34 -0800 User-Agent: KMail/1.7 References: <20041104141143.M52740@P-III.home.my> In-Reply-To: <20041104141143.M52740@P-III.home.my> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200411040342.35243.krinklyfig@spymac.com> cc: Anton Kazak Subject: Re: [Q] Error in 'make buildworld' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: krinklyfig@spymac.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 11:43:06 -0000 On Thursday 04 November 2004 03:18 am, Anton Kazak wrote: > Hello. > I make cvsup 4.11.2004, RELENG_5_3. > My make.conf: > ---------------------------------------- > CFLAGS= -O3 -pipe Maybe try with -O instead. Optimizations of -O2 and higher are not supported, and -O3 is known to fail. Also, are you running make -j4 buildworld? If so, try it without multiple processes (i.e., without the -j option). - jt > NOPROFILE= true > > PERL_VER=5.8.5 > PERL_VERSION=5.8.5 > PERL_ARCH=mach > NOPERL=yo > NO_PERL=yo > NO_PERL_WRAPPER=yo > > X_WINDOW_SYSTEM=xorg > > CUPS_OVERWRITE_BASE=yes > NO_LPR=yes > ---------------------------------- > > I have error 'make buildworld': > > ---------------------------------- > -- skipped -- > cc -fpic -DPIC -O3 -pipe -I/usr/src/lib/libc/include > -I/usr/src/lib/libc/../../ > include -I/usr/src/lib/libc/i386 -D__DBINTERFACE_PRIVATE > -I/usr/src/lib/libc/../ > ../contrib/gdtoa -DINET6 -I/usr/obj/usr/src/lib/libc -DPOSIX_MISTAKE > -I/usr/src/ > lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN > -I/usr/src/lib/libc/rpc -DY > P -DHESIOD -Wsystem-headers -Werror -Wall -Wno-format-y2k > -Wno-uninitialized -c > /usr/src/lib/libc/net/res_init.c -o res_init.So > In file included from /usr/src/lib/libc/net/res_debug.c:786: > /usr/src/lib/libc/net/res_debug.c: In function `__loc_aton': > In file included from /usr/src/lib/libc/net/res_debug.c:786: > /usr/src/lib/libc/net/res_debug.c:576: warning: passing arg 1 of > `precsize_aton' > from incompatible pointer type > /usr/src/lib/libc/net/res_debug.c: In function `__loc_aton': > In file included from /usr/src/lib/libc/net/res_debug.c:797: > /usr/src/lib/libc/net/res_debug.c:576: warning: passing arg 1 of > `precsize_aton' > from incompatible pointer type > /usr/src/lib/libc/net/res_debug.c:576: warning: passing arg 1 of > `precsize_aton' > from incompatible pointer type > In file included from /usr/src/lib/libc/net/res_debug.c:808: > In file included from /usr/src/lib/libc/net/res_debug.c:797: > /usr/src/lib/libc/net/res_debug.c:576: warning: passing arg 1 of > `precsize_aton' > from incompatible pointer type > /usr/src/lib/libc/net/res_debug.c:576: warning: passing arg 1 of > `precsize_aton' > from incompatible pointer type > /usr/src/lib/libc/net/res_debug.c:576: warning: passing arg 1 of > `precsize_aton' > from incompatible pointer type > In file included from /usr/src/lib/libc/net/res_debug.c:808: > /usr/src/lib/libc/net/res_debug.c:576: warning: passing arg 1 of > `precsize_aton' > from incompatible pointer type > *** Error code 1 > *** Error code 1 > 2 errors > *** Error code 2 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > -------------------------------------- > > uname -a > FreeBSD P-III.home.my 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Oct 18 > 19:01:59 MSD > 2004 anton@P-III.home.my:/usr/obj/usr/src/sys/P-III i386 > > /usr/obj clean. > > Maybe i stipid... Any idea?