From owner-freebsd-mips@FreeBSD.ORG Mon Nov 21 13:53:43 2011 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E6821065673 for ; Mon, 21 Nov 2011 13:53:43 +0000 (UTC) (envelope-from monthadar@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id E899C8FC0A for ; Mon, 21 Nov 2011 13:53:42 +0000 (UTC) Received: by ggnk5 with SMTP id k5so6228806ggn.13 for ; Mon, 21 Nov 2011 05:53:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=f428tavL/VHmgMt0UzBr1p8zb1PkkNI79NE+u/z5/vY=; b=Lzk/8KpRF/HIJb1ff55Ro2X1ZEQOWDjxc+DhAUhVacMk89Q6QRS/z8Q0qZBN43Op/D 2SCjMsJgPdr4QyByYRD5EPRyfCF3BOelNOpFww/rWdF5Beoe8TcpdnYv3gnLo2zhZjKF 8jxjo02RBY/+IFVb9Z3PoShRuvDCGE/23mCcU= MIME-Version: 1.0 Received: by 10.50.185.232 with SMTP id ff8mr14527744igc.32.1321882136289; Mon, 21 Nov 2011 05:28:56 -0800 (PST) Received: by 10.50.100.132 with HTTP; Mon, 21 Nov 2011 05:28:56 -0800 (PST) Date: Mon, 21 Nov 2011 14:28:56 +0100 Message-ID: From: Monthadar Al Jaberi To: freebsd-mips@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: Cross compiling module X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Nov 2011 13:53:43 -0000 Hi! Not sure if this is the right place :) I have written a kernel module with the following Makefile: .PATH: ${.CURDIR}/src # Declare Name of kernel module KMOD = moduletest # Enumerate Source files for kernel module SRCS = module.c # Include kernel module makefile .include then cd /usr/src make TARGET=mips TARGET_ARCH=mipseb buildenv cd /root/mymodule make but I get the following error: Warning: Object directory not changed from original /root/mymodule cc -O -pipe -G0 -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -G0 -fno-pic -mno-abicalls -mlong-calls -msoft-float -ffreestanding -std=iso9899:1999 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -c /root/src/mymodule/src/module.c In file included from ./machine/bus.h:76, from /root/mymodule/module.c:57: ./machine/_bus.h:37:26: error: opt_cputype.h: No such file or directory *** Error code 1 Stop in /root/mymodule. $ which cc /usr/obj/mips.mipseb/usr/src/tmp/usr/bin/cc $find /usr -name "opt_cputype.h" ... /usr/obj/mips.mipseb/usr/src/sys/RSPRO_NFS/opt_cputype.h if I add: CFLAGS+=-I/usr/obj/mips.mipseb/usr/src/sys/RSPRO_NFS it works now, seems like I am missing something? br, -- Monthadar Al Jaberi From owner-freebsd-mips@FreeBSD.ORG Mon Nov 21 16:48:24 2011 Return-Path: Delivered-To: freebsd-mips@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA3BC1065672 for ; Mon, 21 Nov 2011 16:48:24 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 8B2328FC18 for ; Mon, 21 Nov 2011 16:48:24 +0000 (UTC) Received: from [10.30.101.53] ([209.117.142.2]) (authenticated bits=0) by harmony.bsdimp.com (8.14.4/8.14.3) with ESMTP id pALGgdpt060079 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES128-SHA bits=128 verify=NO); Mon, 21 Nov 2011 09:42:41 -0700 (MST) (envelope-from imp@bsdimp.com) Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: Warner Losh In-Reply-To: Date: Mon, 21 Nov 2011 09:42:33 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: References: To: Monthadar Al Jaberi X-Mailer: Apple Mail (2.1084) X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (harmony.bsdimp.com [10.0.0.6]); Mon, 21 Nov 2011 09:42:42 -0700 (MST) Cc: freebsd-mips@FreeBSD.org Subject: Re: Cross compiling module X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Nov 2011 16:48:25 -0000 On Nov 21, 2011, at 6:28 AM, Monthadar Al Jaberi wrote: > Hi! >=20 > Not sure if this is the right place :) >=20 > I have written a kernel module with the following Makefile: > .PATH: ${.CURDIR}/src >=20 > # Declare Name of kernel module > KMOD =3D moduletest >=20 > # Enumerate Source files for kernel module > SRCS =3D module.c >=20 > # Include kernel module makefile > .include >=20 > then > cd /usr/src > make TARGET=3Dmips TARGET_ARCH=3Dmipseb buildenv I usually do make buildenv (puts you into a subshell) cd /root/mymodule make > cd /root/mymodule > make >=20 > but I get the following error: I'm surprised you got the mips compiler. What's your environment look = like? What's @ pointing to? Warner > Warning: Object directory not changed from original /root/mymodule > cc -O -pipe -G0 -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I. -I@ > -I@/contrib/altq -finline-limit=3D8000 > --param inline-unit-growth=3D100 --param large-function-growth=3D1000 > -fno-common -G0 -fno-pic -mno-abicalls > -mlong-calls -msoft-float -ffreestanding -std=3Diso9899:1999 -Wall > -Wredundant-decls -Wnested-externs -Wstrict-prototypes > -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef > -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs > -fdiagnostics-show-option -c /root/src/mymodule/src/module.c > In file included from ./machine/bus.h:76, > from /root/mymodule/module.c:57: > ./machine/_bus.h:37:26: error: opt_cputype.h: No such file or = directory > *** Error code 1 >=20 > Stop in /root/mymodule. >=20 >=20 > $ which cc > /usr/obj/mips.mipseb/usr/src/tmp/usr/bin/cc >=20 > $find /usr -name "opt_cputype.h" > ... > /usr/obj/mips.mipseb/usr/src/sys/RSPRO_NFS/opt_cputype.h >=20 > if I add: > CFLAGS+=3D-I/usr/obj/mips.mipseb/usr/src/sys/RSPRO_NFS >=20 > it works now, seems like I am missing something? >=20 > br, >=20 > --=20 > Monthadar Al Jaberi > _______________________________________________ > freebsd-mips@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-mips > To unsubscribe, send any mail to = "freebsd-mips-unsubscribe@freebsd.org" >=20 >=20 From owner-freebsd-mips@FreeBSD.ORG Mon Nov 21 16:54:56 2011 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F75F1065674 for ; Mon, 21 Nov 2011 16:54:56 +0000 (UTC) (envelope-from monthadar@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1B68F8FC14 for ; Mon, 21 Nov 2011 16:54:55 +0000 (UTC) Received: by iakl21 with SMTP id l21so10966377iak.13 for ; Mon, 21 Nov 2011 08:54:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=c+jNfatH0i32dbKeytAVZQr53KivolFZz2PLgAdy/d8=; b=sz4NyDJw2EvKcwF8HBpe5FV3dtxZxElLnRVdgP9NPN4CqYK7ryx1jp9K9HEWxoq+tm iLpfWNbSnWZJ54ISAKZ6nON1T64/nl/LhGymMuYbXPPPk0/oOXmtMD3I1FohSFhrfAuy dVceXQjMONQ1oK/gVcQDGyLF/47CmALKMu5vU= MIME-Version: 1.0 Received: by 10.42.147.72 with SMTP id m8mr15043975icv.56.1321894495333; Mon, 21 Nov 2011 08:54:55 -0800 (PST) Received: by 10.50.100.132 with HTTP; Mon, 21 Nov 2011 08:54:55 -0800 (PST) In-Reply-To: References: Date: Mon, 21 Nov 2011 17:54:55 +0100 Message-ID: From: Monthadar Al Jaberi To: Warner Losh Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-mips@freebsd.org Subject: Re: Cross compiling module X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Nov 2011 16:54:56 -0000 On Mon, Nov 21, 2011 at 5:42 PM, Warner Losh wrote: > > On Nov 21, 2011, at 6:28 AM, Monthadar Al Jaberi wrote: > >> Hi! >> >> Not sure if this is the right place :) >> >> I have written a kernel module with the following Makefile: >> .PATH: =A0 =A0 =A0 =A0${.CURDIR}/src >> >> # Declare Name of kernel module >> KMOD =A0 =A0=3D moduletest >> >> # Enumerate Source files for kernel module >> SRCS =A0 =A0=3D =A0module.c >> >> # Include kernel module makefile >> .include >> >> then >> cd =A0/usr/src >> make TARGET=3Dmips TARGET_ARCH=3Dmipseb buildenv > > I usually do > > make buildenv > (puts you into a subshell) > cd /root/mymodule > make > I am sorry if I am wrong, but am I not doing the same thing as you? I am also inside a subshell. >> cd /root/mymodule >> make >> >> but I get the following error: > > I'm surprised you got the mips compiler. =A0What's your environment look = like? =A0What's @ pointing to? @ -> /usr/src/sys machine -> /usr/src/sys/mips/include > > Warner > >> Warning: Object directory not changed from original /root/mymodule >> cc -O -pipe -G0 -Werror -D_KERNEL -DKLD_MODULE -nostdinc =A0 -I. -I@ >> -I@/contrib/altq -finline-limit=3D8000 >> --param inline-unit-growth=3D100 --param large-function-growth=3D1000 >> -fno-common =A0-G0 -fno-pic -mno-abicalls >> -mlong-calls =A0-msoft-float -ffreestanding -std=3Diso9899:1999 -Wall >> -Wredundant-decls -Wnested-externs -Wstrict-prototypes >> =A0-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual =A0-Wundef >> -Wno-pointer-sign -fformat-extensions =A0-Wmissing-include-dirs >> -fdiagnostics-show-option -c /root/src/mymodule/src/module.c >> In file included from ./machine/bus.h:76, >> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 from /root/mymodule/module.c:57: >> ./machine/_bus.h:37:26: error: opt_cputype.h: No such file or directory >> *** Error code 1 >> >> Stop in /root/mymodule. >> >> >> $ which cc >> /usr/obj/mips.mipseb/usr/src/tmp/usr/bin/cc >> >> $find /usr -name "opt_cputype.h" >> ... >> /usr/obj/mips.mipseb/usr/src/sys/RSPRO_NFS/opt_cputype.h >> >> if I add: >> CFLAGS+=3D-I/usr/obj/mips.mipseb/usr/src/sys/RSPRO_NFS >> >> it works now, seems like I am missing something? >> >> br, >> >> -- >> Monthadar Al Jaberi >> _______________________________________________ >> freebsd-mips@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-mips >> To unsubscribe, send any mail to "freebsd-mips-unsubscribe@freebsd.org" >> >> > > --=20 Monthadar Al Jaberi From owner-freebsd-mips@FreeBSD.ORG Mon Nov 21 20:31:20 2011 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18E681065673 for ; Mon, 21 Nov 2011 20:31:20 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from mx0.deglitch.com (cl-414.sto-01.se.sixxs.net [IPv6:2001:16d8:ff00:19d::2]) by mx1.freebsd.org (Postfix) with ESMTP id C22BB8FC0A for ; Mon, 21 Nov 2011 20:31:19 +0000 (UTC) Received: from orion.SpringDaemons.com (207.47.0.2.static.nextweb.net [207.47.0.2]) by mx0.deglitch.com (Postfix) with ESMTPA id 533108FC3A; Tue, 22 Nov 2011 00:31:18 +0400 (MSK) Received: from orion (localhost [127.0.0.1]) by orion.SpringDaemons.com (Postfix) with SMTP id EA32062DE; Mon, 21 Nov 2011 12:30:29 -0800 (PST) Date: Mon, 21 Nov 2011 12:30:29 -0800 From: Stanislav Sedov To: Monthadar Al Jaberi Message-Id: <20111121123029.2f844bb7.stas@FreeBSD.org> In-Reply-To: References: Organization: The FreeBSD Project X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-mips@freebsd.org Subject: Re: Cross compiling module X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Nov 2011 20:31:20 -0000 On Mon, 21 Nov 2011 14:28:56 +0100 Monthadar Al Jaberi mentioned: > Hi! > > Not sure if this is the right place :) > > I have written a kernel module with the following Makefile: > .PATH: ${.CURDIR}/src > > # Declare Name of kernel module > KMOD = moduletest > > # Enumerate Source files for kernel module > SRCS = module.c > > # Include kernel module makefile > .include > > then > cd /usr/src > make TARGET=mips TARGET_ARCH=mipseb buildenv > cd /root/mymodule > make > > but I get the following error: > Warning: Object directory not changed from original /root/mymodule > cc -O -pipe -G0 -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I. -I@ > -I@/contrib/altq -finline-limit=8000 > --param inline-unit-growth=100 --param large-function-growth=1000 > -fno-common -G0 -fno-pic -mno-abicalls > -mlong-calls -msoft-float -ffreestanding -std=iso9899:1999 -Wall > -Wredundant-decls -Wnested-externs -Wstrict-prototypes > -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef > -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs > -fdiagnostics-show-option -c /root/src/mymodule/src/module.c > In file included from ./machine/bus.h:76, > from /root/mymodule/module.c:57: > ./machine/_bus.h:37:26: error: opt_cputype.h: No such file or directory > *** Error code 1 > > Stop in /root/mymodule. Hi! I think you might need to pass the KERNCONF variable so it will find the right kernel. -- Stanislav Sedov ST4096-RIPE () ascii ribbon campaign - against html e-mail /\ www.asciiribbon.org - against proprietary attachments From owner-freebsd-mips@FreeBSD.ORG Tue Nov 22 09:29:05 2011 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C2D7106564A; Tue, 22 Nov 2011 09:29:05 +0000 (UTC) (envelope-from monthadar@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4DB718FC19; Tue, 22 Nov 2011 09:29:05 +0000 (UTC) Received: by iakl21 with SMTP id l21so12355312iak.13 for ; Tue, 22 Nov 2011 01:29:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=w+Fg1Xp7FaAGQz//VVaJWpzYk89ZeGk9yBeeI59JSDk=; b=Am9+mnrIm5fN1QxQLTiTGViYNNtc8ka7n7pABf8MR/Kv9KROKVpZIJ3EsAP+dEeCnx xLASeLR67160knRNxSf/YpUbzjMWTCUsHuAPEVR5a509k3cuDfcbxaxYalzgplp8Zfnu vOOsgxa81hnTOmTOZuEMXBTmv4asg1sZWLo/8= MIME-Version: 1.0 Received: by 10.231.82.131 with SMTP id b3mr4273518ibl.74.1321954144929; Tue, 22 Nov 2011 01:29:04 -0800 (PST) Received: by 10.50.100.132 with HTTP; Tue, 22 Nov 2011 01:29:04 -0800 (PST) In-Reply-To: <20111121123029.2f844bb7.stas@FreeBSD.org> References: <20111121123029.2f844bb7.stas@FreeBSD.org> Date: Tue, 22 Nov 2011 10:29:04 +0100 Message-ID: From: Monthadar Al Jaberi To: Stanislav Sedov Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-mips@freebsd.org Subject: Re: Cross compiling module X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Nov 2011 09:29:05 -0000 On Mon, Nov 21, 2011 at 9:30 PM, Stanislav Sedov wrote: > On Mon, 21 Nov 2011 14:28:56 +0100 > Monthadar Al Jaberi mentioned: > >> Hi! >> >> Not sure if this is the right place :) >> >> I have written a kernel module with the following Makefile: >> .PATH: =A0 =A0 =A0 =A0${.CURDIR}/src >> >> # Declare Name of kernel module >> KMOD =A0 =A0=3D moduletest >> >> # Enumerate Source files for kernel module >> SRCS =A0 =A0=3D =A0module.c >> >> # Include kernel module makefile >> .include >> >> then >> cd =A0/usr/src >> make TARGET=3Dmips TARGET_ARCH=3Dmipseb buildenv >> cd /root/mymodule >> make >> >> but I get the following error: >> Warning: Object directory not changed from original /root/mymodule >> cc -O -pipe -G0 -Werror -D_KERNEL -DKLD_MODULE -nostdinc =A0 -I. -I@ >> -I@/contrib/altq -finline-limit=3D8000 >> =A0--param inline-unit-growth=3D100 --param large-function-growth=3D1000 >> -fno-common =A0-G0 -fno-pic -mno-abicalls >> =A0-mlong-calls =A0-msoft-float -ffreestanding -std=3Diso9899:1999 -Wall >> -Wredundant-decls -Wnested-externs -Wstrict-prototypes >> =A0 -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual =A0-Wundef >> -Wno-pointer-sign -fformat-extensions =A0-Wmissing-include-dirs >> -fdiagnostics-show-option -c /root/src/mymodule/src/module.c >> In file included from ./machine/bus.h:76, >> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0from /root/mymodule/module.c:57: >> ./machine/_bus.h:37:26: error: opt_cputype.h: No such file or directory >> *** Error code 1 >> >> Stop in /root/mymodule. > > Hi! > > I think you might need to pass the KERNCONF variable so it will find > the right kernel. It didnt help, same error msg. btw I think I found a bug that has todo with buildenv, http://www.freebsd.org/cgi/query-pr.cgi?pr=3D162724 > > -- > Stanislav Sedov > ST4096-RIPE > > () =A0ascii ribbon campaign - against html e-mail > /\ =A0www.asciiribbon.org =A0 - against proprietary attachments > --=20 Monthadar Al Jaberi From owner-freebsd-mips@FreeBSD.ORG Wed Nov 23 03:22:17 2011 Return-Path: Delivered-To: mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 506651065673; Wed, 23 Nov 2011 03:22:17 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 0980A8FC16; Wed, 23 Nov 2011 03:22:16 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.4) with ESMTP id pAN3MGFQ047620; Tue, 22 Nov 2011 22:22:16 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.4/Submit) id pAN3MGu0047616; Wed, 23 Nov 2011 03:22:16 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Nov 2011 03:22:16 GMT Message-Id: <201111230322.pAN3MGu0047616@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2011 03:22:17 -0000 TB --- 2011-11-23 02:28:45 - tinderbox 2.8 running on freebsd-current.sentex.ca TB --- 2011-11-23 02:28:45 - starting HEAD tinderbox run for mips/mips TB --- 2011-11-23 02:28:45 - cleaning the object tree TB --- 2011-11-23 02:28:54 - cvsupping the source tree TB --- 2011-11-23 02:28:54 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-11-23 02:29:07 - building world TB --- 2011-11-23 02:29:07 - CROSS_BUILD_TESTING=YES TB --- 2011-11-23 02:29:07 - MAKEOBJDIRPREFIX=/obj TB --- 2011-11-23 02:29:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-11-23 02:29:07 - SRCCONF=/dev/null TB --- 2011-11-23 02:29:07 - TARGET=mips TB --- 2011-11-23 02:29:07 - TARGET_ARCH=mips TB --- 2011-11-23 02:29:07 - TZ=UTC TB --- 2011-11-23 02:29:07 - __MAKE_CONF=/dev/null TB --- 2011-11-23 02:29:07 - cd /src TB --- 2011-11-23 02:29:07 - /usr/bin/make -B buildworld >>> World build started on Wed Nov 23 02:29:08 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] gzip -cn /src/usr.bin/printf/printf.1 > printf.1.gz ===> usr.bin/procstat (all) cc -O -pipe -G0 -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/procstat/procstat.c cc -O -pipe -G0 -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/procstat/procstat_args.c cc -O -pipe -G0 -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/procstat/procstat_auxv.c cc1: warnings being treated as errors /src/usr.bin/procstat/procstat_auxv.c: In function 'procstat_auxv': /src/usr.bin/procstat/procstat_auxv.c:75: warning: cast increases required alignment of target type *** Error code 1 Stop in /src/usr.bin/procstat. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-11-23 03:22:15 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-11-23 03:22:15 - ERROR: failed to build world TB --- 2011-11-23 03:22:16 - 2321.40 user 631.99 system 3210.18 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-mips@FreeBSD.ORG Wed Nov 23 08:10:23 2011 Return-Path: Delivered-To: mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C0B410656DC; Wed, 23 Nov 2011 08:10:23 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id BAC3F8FC18; Wed, 23 Nov 2011 08:10:22 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.4) with ESMTP id pAN8ALiJ056950; Wed, 23 Nov 2011 03:10:22 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.4/Submit) id pAN8ALrL056944; Wed, 23 Nov 2011 08:10:21 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Nov 2011 08:10:21 GMT Message-Id: <201111230810.pAN8ALrL056944@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2011 08:10:23 -0000 TB --- 2011-11-23 07:17:20 - tinderbox 2.8 running on freebsd-current.sentex.ca TB --- 2011-11-23 07:17:20 - starting HEAD tinderbox run for mips/mips TB --- 2011-11-23 07:17:20 - cleaning the object tree TB --- 2011-11-23 07:17:28 - cvsupping the source tree TB --- 2011-11-23 07:17:28 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-11-23 07:17:52 - building world TB --- 2011-11-23 07:17:52 - CROSS_BUILD_TESTING=YES TB --- 2011-11-23 07:17:52 - MAKEOBJDIRPREFIX=/obj TB --- 2011-11-23 07:17:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-11-23 07:17:52 - SRCCONF=/dev/null TB --- 2011-11-23 07:17:52 - TARGET=mips TB --- 2011-11-23 07:17:52 - TARGET_ARCH=mips TB --- 2011-11-23 07:17:52 - TZ=UTC TB --- 2011-11-23 07:17:52 - __MAKE_CONF=/dev/null TB --- 2011-11-23 07:17:52 - cd /src TB --- 2011-11-23 07:17:52 - /usr/bin/make -B buildworld >>> World build started on Wed Nov 23 07:17:52 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] gzip -cn /src/usr.bin/printf/printf.1 > printf.1.gz ===> usr.bin/procstat (all) cc -O -pipe -G0 -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/procstat/procstat.c cc -O -pipe -G0 -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/procstat/procstat_args.c cc -O -pipe -G0 -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/procstat/procstat_auxv.c cc1: warnings being treated as errors /src/usr.bin/procstat/procstat_auxv.c: In function 'procstat_auxv': /src/usr.bin/procstat/procstat_auxv.c:75: warning: cast increases required alignment of target type *** Error code 1 Stop in /src/usr.bin/procstat. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-11-23 08:10:21 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-11-23 08:10:21 - ERROR: failed to build world TB --- 2011-11-23 08:10:21 - 2265.15 user 628.24 system 3181.59 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-mips@FreeBSD.ORG Sat Nov 26 00:18:39 2011 Return-Path: Delivered-To: mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E312106566C; Sat, 26 Nov 2011 00:18:39 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id BC0388FC12; Sat, 26 Nov 2011 00:18:38 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.4) with ESMTP id pAQ0IbFm058686; Fri, 25 Nov 2011 19:18:38 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.4/Submit) id pAQ0IbLe058678; Sat, 26 Nov 2011 00:18:37 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Nov 2011 00:18:37 GMT Message-Id: <201111260018.pAQ0IbLe058678@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Nov 2011 00:18:39 -0000 TB --- 2011-11-26 00:06:21 - tinderbox 2.8 running on freebsd-current.sentex.ca TB --- 2011-11-26 00:06:21 - starting HEAD tinderbox run for mips/mips TB --- 2011-11-26 00:06:21 - cleaning the object tree TB --- 2011-11-26 00:06:30 - cvsupping the source tree TB --- 2011-11-26 00:06:30 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-11-26 00:06:43 - building world TB --- 2011-11-26 00:06:43 - CROSS_BUILD_TESTING=YES TB --- 2011-11-26 00:06:43 - MAKEOBJDIRPREFIX=/obj TB --- 2011-11-26 00:06:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-11-26 00:06:43 - SRCCONF=/dev/null TB --- 2011-11-26 00:06:43 - TARGET=mips TB --- 2011-11-26 00:06:43 - TARGET_ARCH=mips TB --- 2011-11-26 00:06:43 - TZ=UTC TB --- 2011-11-26 00:06:43 - __MAKE_CONF=/dev/null TB --- 2011-11-26 00:06:43 - cd /src TB --- 2011-11-26 00:06:43 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 26 00:06:43 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/memory.cc -o memory.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/auxhelper.cc -o auxhelper.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/exception.cc -o exception.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/stdexcept.cc -o stdexcept.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/typeinfo.cc -o typeinfo.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/guard.cc -o guard.So building shared library libcxxrt.so.1 /obj/mips.mipsel/src/tmp/usr/bin/ld: cannot find -lpthread *** Error code 1 Stop in /src/lib/libcxxrt. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-11-26 00:18:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-11-26 00:18:37 - ERROR: failed to build world TB --- 2011-11-26 00:18:37 - 547.46 user 125.25 system 736.53 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-mips@FreeBSD.ORG Sat Nov 26 00:58:01 2011 Return-Path: Delivered-To: mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C11FC106564A; Sat, 26 Nov 2011 00:58:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 695A28FC12; Sat, 26 Nov 2011 00:58:01 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.4) with ESMTP id pAQ0w0Xk007924; Fri, 25 Nov 2011 19:58:00 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.4/Submit) id pAQ0w0l5007905; Sat, 26 Nov 2011 00:58:00 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Nov 2011 00:58:00 GMT Message-Id: <201111260058.pAQ0w0l5007905@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Nov 2011 00:58:01 -0000 TB --- 2011-11-26 00:45:51 - tinderbox 2.8 running on freebsd-current.sentex.ca TB --- 2011-11-26 00:45:51 - starting HEAD tinderbox run for mips/mips TB --- 2011-11-26 00:45:51 - cleaning the object tree TB --- 2011-11-26 00:45:54 - cvsupping the source tree TB --- 2011-11-26 00:45:54 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-11-26 00:46:07 - building world TB --- 2011-11-26 00:46:07 - CROSS_BUILD_TESTING=YES TB --- 2011-11-26 00:46:07 - MAKEOBJDIRPREFIX=/obj TB --- 2011-11-26 00:46:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-11-26 00:46:07 - SRCCONF=/dev/null TB --- 2011-11-26 00:46:07 - TARGET=mips TB --- 2011-11-26 00:46:07 - TARGET_ARCH=mips TB --- 2011-11-26 00:46:07 - TZ=UTC TB --- 2011-11-26 00:46:07 - __MAKE_CONF=/dev/null TB --- 2011-11-26 00:46:07 - cd /src TB --- 2011-11-26 00:46:07 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 26 00:46:07 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/memory.cc -o memory.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/auxhelper.cc -o auxhelper.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/exception.cc -o exception.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/stdexcept.cc -o stdexcept.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/typeinfo.cc -o typeinfo.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/guard.cc -o guard.So building shared library libcxxrt.so.1 /obj/mips.mipsel/src/tmp/usr/bin/ld: cannot find -lpthread *** Error code 1 Stop in /src/lib/libcxxrt. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-11-26 00:58:00 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-11-26 00:58:00 - ERROR: failed to build world TB --- 2011-11-26 00:58:00 - 547.89 user 123.61 system 728.79 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-mips@FreeBSD.ORG Sat Nov 26 01:38:11 2011 Return-Path: Delivered-To: mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9BD71065673; Sat, 26 Nov 2011 01:38:11 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 6C6FC8FC12; Sat, 26 Nov 2011 01:38:11 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.4) with ESMTP id pAQ1cAVG054447; Fri, 25 Nov 2011 20:38:10 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.4/Submit) id pAQ1cAMS054417; Sat, 26 Nov 2011 01:38:10 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Nov 2011 01:38:10 GMT Message-Id: <201111260138.pAQ1cAMS054417@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Nov 2011 01:38:11 -0000 TB --- 2011-11-26 01:25:36 - tinderbox 2.8 running on freebsd-current.sentex.ca TB --- 2011-11-26 01:25:36 - starting HEAD tinderbox run for mips/mips TB --- 2011-11-26 01:25:36 - cleaning the object tree TB --- 2011-11-26 01:25:40 - cvsupping the source tree TB --- 2011-11-26 01:25:40 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-11-26 01:25:52 - building world TB --- 2011-11-26 01:25:52 - CROSS_BUILD_TESTING=YES TB --- 2011-11-26 01:25:52 - MAKEOBJDIRPREFIX=/obj TB --- 2011-11-26 01:25:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-11-26 01:25:52 - SRCCONF=/dev/null TB --- 2011-11-26 01:25:52 - TARGET=mips TB --- 2011-11-26 01:25:52 - TARGET_ARCH=mips TB --- 2011-11-26 01:25:52 - TZ=UTC TB --- 2011-11-26 01:25:52 - __MAKE_CONF=/dev/null TB --- 2011-11-26 01:25:52 - cd /src TB --- 2011-11-26 01:25:52 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 26 01:25:52 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/memory.cc -o memory.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/auxhelper.cc -o auxhelper.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/exception.cc -o exception.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/stdexcept.cc -o stdexcept.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/typeinfo.cc -o typeinfo.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/guard.cc -o guard.So building shared library libcxxrt.so.1 /obj/mips.mipsel/src/tmp/usr/bin/ld: cannot find -lpthread *** Error code 1 Stop in /src/lib/libcxxrt. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-11-26 01:38:10 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-11-26 01:38:10 - ERROR: failed to build world TB --- 2011-11-26 01:38:10 - 573.55 user 125.15 system 754.27 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-mips@FreeBSD.ORG Sat Nov 26 02:18:14 2011 Return-Path: Delivered-To: mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1918E106564A; Sat, 26 Nov 2011 02:18:14 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id AF9958FC19; Sat, 26 Nov 2011 02:18:13 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.4) with ESMTP id pAQ2ICed010907; Fri, 25 Nov 2011 21:18:12 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.4/Submit) id pAQ2ICIP010904; Sat, 26 Nov 2011 02:18:12 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Nov 2011 02:18:12 GMT Message-Id: <201111260218.pAQ2ICIP010904@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Nov 2011 02:18:14 -0000 TB --- 2011-11-26 02:05:34 - tinderbox 2.8 running on freebsd-current.sentex.ca TB --- 2011-11-26 02:05:34 - starting HEAD tinderbox run for mips/mips TB --- 2011-11-26 02:05:34 - cleaning the object tree TB --- 2011-11-26 02:05:38 - cvsupping the source tree TB --- 2011-11-26 02:05:38 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-11-26 02:05:50 - building world TB --- 2011-11-26 02:05:50 - CROSS_BUILD_TESTING=YES TB --- 2011-11-26 02:05:50 - MAKEOBJDIRPREFIX=/obj TB --- 2011-11-26 02:05:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-11-26 02:05:50 - SRCCONF=/dev/null TB --- 2011-11-26 02:05:50 - TARGET=mips TB --- 2011-11-26 02:05:50 - TARGET_ARCH=mips TB --- 2011-11-26 02:05:50 - TZ=UTC TB --- 2011-11-26 02:05:50 - __MAKE_CONF=/dev/null TB --- 2011-11-26 02:05:50 - cd /src TB --- 2011-11-26 02:05:50 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 26 02:05:51 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/memory.cc -o memory.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/auxhelper.cc -o auxhelper.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/exception.cc -o exception.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/stdexcept.cc -o stdexcept.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/typeinfo.cc -o typeinfo.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/guard.cc -o guard.So building shared library libcxxrt.so.1 /obj/mips.mipsel/src/tmp/usr/bin/ld: cannot find -lpthread *** Error code 1 Stop in /src/lib/libcxxrt. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-11-26 02:18:12 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-11-26 02:18:12 - ERROR: failed to build world TB --- 2011-11-26 02:18:12 - 569.16 user 131.09 system 758.43 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-mips@FreeBSD.ORG Sat Nov 26 02:58:17 2011 Return-Path: Delivered-To: mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44294106564A; Sat, 26 Nov 2011 02:58:17 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E06F88FC16; Sat, 26 Nov 2011 02:58:16 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.4) with ESMTP id pAQ2wGFw058470; Fri, 25 Nov 2011 21:58:16 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.4/Submit) id pAQ2wGhD058459; Sat, 26 Nov 2011 02:58:16 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Nov 2011 02:58:16 GMT Message-Id: <201111260258.pAQ2wGhD058459@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Nov 2011 02:58:17 -0000 TB --- 2011-11-26 02:45:43 - tinderbox 2.8 running on freebsd-current.sentex.ca TB --- 2011-11-26 02:45:43 - starting HEAD tinderbox run for mips/mips TB --- 2011-11-26 02:45:43 - cleaning the object tree TB --- 2011-11-26 02:45:46 - cvsupping the source tree TB --- 2011-11-26 02:45:46 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-11-26 02:45:59 - building world TB --- 2011-11-26 02:45:59 - CROSS_BUILD_TESTING=YES TB --- 2011-11-26 02:45:59 - MAKEOBJDIRPREFIX=/obj TB --- 2011-11-26 02:45:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-11-26 02:45:59 - SRCCONF=/dev/null TB --- 2011-11-26 02:45:59 - TARGET=mips TB --- 2011-11-26 02:45:59 - TARGET_ARCH=mips TB --- 2011-11-26 02:45:59 - TZ=UTC TB --- 2011-11-26 02:45:59 - __MAKE_CONF=/dev/null TB --- 2011-11-26 02:45:59 - cd /src TB --- 2011-11-26 02:45:59 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 26 02:45:59 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/memory.cc -o memory.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/auxhelper.cc -o auxhelper.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/exception.cc -o exception.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/stdexcept.cc -o stdexcept.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/typeinfo.cc -o typeinfo.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/guard.cc -o guard.So building shared library libcxxrt.so.1 /obj/mips.mipsel/src/tmp/usr/bin/ld: cannot find -lpthread *** Error code 1 Stop in /src/lib/libcxxrt. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-11-26 02:58:16 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-11-26 02:58:16 - ERROR: failed to build world TB --- 2011-11-26 02:58:16 - 573.74 user 125.01 system 752.68 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-mips@FreeBSD.ORG Sat Nov 26 03:38:10 2011 Return-Path: Delivered-To: mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A2F3F106566C; Sat, 26 Nov 2011 03:38:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 062258FC12; Sat, 26 Nov 2011 03:38:09 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.4) with ESMTP id pAQ3c9l6014869; Fri, 25 Nov 2011 22:38:09 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.4/Submit) id pAQ3c9IO014868; Sat, 26 Nov 2011 03:38:09 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Nov 2011 03:38:09 GMT Message-Id: <201111260338.pAQ3c9IO014868@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Nov 2011 03:38:10 -0000 TB --- 2011-11-26 03:25:31 - tinderbox 2.8 running on freebsd-current.sentex.ca TB --- 2011-11-26 03:25:31 - starting HEAD tinderbox run for mips/mips TB --- 2011-11-26 03:25:31 - cleaning the object tree TB --- 2011-11-26 03:25:35 - cvsupping the source tree TB --- 2011-11-26 03:25:35 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-11-26 03:25:47 - building world TB --- 2011-11-26 03:25:47 - CROSS_BUILD_TESTING=YES TB --- 2011-11-26 03:25:47 - MAKEOBJDIRPREFIX=/obj TB --- 2011-11-26 03:25:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-11-26 03:25:47 - SRCCONF=/dev/null TB --- 2011-11-26 03:25:47 - TARGET=mips TB --- 2011-11-26 03:25:47 - TARGET_ARCH=mips TB --- 2011-11-26 03:25:47 - TZ=UTC TB --- 2011-11-26 03:25:47 - __MAKE_CONF=/dev/null TB --- 2011-11-26 03:25:47 - cd /src TB --- 2011-11-26 03:25:47 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 26 03:25:47 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/memory.cc -o memory.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/auxhelper.cc -o auxhelper.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/exception.cc -o exception.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/stdexcept.cc -o stdexcept.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/typeinfo.cc -o typeinfo.So c++ -fpic -DPIC -O -pipe -G0 -I/src/lib/libcxxrt/../../contrib/libcxxrt -c /src/lib/libcxxrt/../../contrib/libcxxrt/guard.cc -o guard.So building shared library libcxxrt.so.1 /obj/mips.mipsel/src/tmp/usr/bin/ld: cannot find -lpthread *** Error code 1 Stop in /src/lib/libcxxrt. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-11-26 03:38:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-11-26 03:38:09 - ERROR: failed to build world TB --- 2011-11-26 03:38:09 - 572.02 user 126.98 system 757.43 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full