Re: msk0 freezes again

2013-05-17 Thread Anton Yuzhaninov
On Mon, 13 May 2013 09:13:14, kit wrote:
k the marvell network adapter on my shuttle box freezes easily with minimal 
network traffic..:(
k root@test:/home/ktsin # dhclient msk0DHCPDISCOVER on msk0 to 255.255.255.255 
port 67 interval 4DHCPDISCOVER on msk0 to 255.255.255.255 port 67 interval 
10DHCPDISCOVER on msk0 to 255.255.255.255 port 67 interval 8DHCPOFFER from 
192.168.100.1DHCPREQUEST on msk0 to 255.255.255.255 port 67DHCPACK from 
192.168.100.1bound to 192.168.100.200 -- renewal in 300 
seconds.root@test:/home/ktsin # vmstat -ia | grep mskirq259: mskc0         
               190          1root@test:/home/ktsin # vmstat -ia | 
grep mskirq259: mskc0                    1148176       
7654root@test:/home/ktsin # vmstat -ia | grep mskirq259: mskc0            
        3643520      22490root@test:/home/ktsin # uname -aFreeBSD 
test.yahoo.com 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r250365: Thu May  9 
07:18:39 MYT 2013     kt...@test.yahoo.com:/tmp/obj/usr/src/sys/SHUTTLE 
root@test:/home/ktsin # dmesg| grep mskmskc0: Marvell Yukon 88E8057 Gigabit 
Ethernet
k  port 0xe800-0xe8ff mem 0xfebfc000-0xfebf irq 18 at device 0.0 on 
pci3msk0: Marvell Technology Group Ltd. Yukon Ultra 2 Id 0xba Rev 0x00 on 
mskc0msk0: Ethernet address: 80:ee:73:09:d1:73miibus0: MII bus on msk0msk0: 
link state changed to DOWNmsk0: link state changed to UPmsk0: watchdog 
timeoutmsk0: link state changed to DOWN
k looks similar to http://www.freebsd.org/cgi/query-pr.cgi?pr=164569, but this 
time msk freezes on current but works fine on 9.x.
k any idea on how to troubleshoot?

I have msk card (card=0xe0001458 chip=0x436411ab rev=0x12), and this
card stop to work under load with default settings.

With

hw.msk.msi_disable=1

in /boot/loader.conf this card can work.

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

A PRIV_* flag for /dev/mem?

2013-05-17 Thread Jamie Gritton
I'm considering Alexander Leidinger's patch to make X11 work inside a 
jail (http://leidinger.net/FreeBSD/current-patches/0_jail.diff).  It 
allows a jail to optionally have access to /dev/io and DRI (provided the 
requisite device files are visible in the devfs ruleset).


I'm planning on putting this under a single jail permission, which would 
group those two together as device access that allows messing with 
kernel memory.  It seems more complete to put /dev/mem under that same 
umbrella, with the side benefit of letting me call it allow.dev_mem.


Currently, access is controlled only by device file permission and a 
securelevel check.  Jail access is allowed as long as the /dev/mem is in 
the jail's ruleset (it isn't by default).  Adding a prison_priv_check() 
call would allow some finer control over this.  Something like:


int
memopen(struct cdev *dev __unused, int flags, int fmt __unused,
struct thread *td)
{
int error;

error = priv_check(td, PRIV_FOO);
if (error != 0  (flags  FWRITE))
error = securelevel_gt(td-td_ucred, 0);

return (error);
}

The main question I'm coming up with here is, what PRIV_* flag should I 
use.  Does PRIV_IO make sense?  PRIV_DRIVER?  Something new like 
PRIV_KMEM?  Also, I'd appreciate if anyone familiar with this interface 
can tell me if memopen() is the right/only place to make this change.


- Jamie
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


bmake (installed as default make): make: illegal option -- J

2013-05-17 Thread Florent Peterschmitt
Hi,

With the r250749 revision of head, rebuilt world with make -j4
buildworld, all was fine.

Then install new world, reboot and so:

$ cd /usr/src
$ make -j4 kernel
--- buildkernel ---
make: illegal option -- J
usage: make [-BPSXeiknpqrstv] [-C directory] [-D variable]
[-d flags] [-E variable] [-f makefile] [-I directory]
[-j max_jobs] [-m directory] [-V variable]
[variable=value] [target ...]
*** [buildkernel] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src

It's not from bmake itself because if I build something anywhere (like
bmake itself), -jx works.

I tried to look in Makefile* and a grep -rn JFLAG in /usr/share/mk/,
but I really don't know where and what to search, sorry :(

Can someone help ?

-- 
Florent Peterschmitt
+33 (0)6 64 33 97 92
flor...@peterschmitt.fr


O ascii ribbon campaign
- stop html mail
- www.asciiribbon.org



signature.asc
Description: OpenPGP digital signature


WITHOUT_CLANG + WITHOUT_GCC vs XCC + WITHOUT_CROSS_COMPILER

2013-05-17 Thread Lev Serebryakov
Hello, Freebsd-current.

  I've explored new options to build world and kernel with external
compiler. My goal is not to use modern compiler or true
cross-compilation, but fast building of system, which (almost)
identical to host system and doesn't need compiler (NanoBSD image for
router).

 What I found, that if WITHOUT_LCNAG and WITHOUT_GCC are both set, and
WITHOUT_CROSS_COMPILER and XCC/XCXX/XCPP are NOT set, world and
kernel is build with system compiler, but without cross options
(like -isystem and --sysroot). So, it works only by accident, and not
in way, that user (developer) could expect.

   So, even if here is no any settings for cross-build, build goes by
 cross (external toolchain) path, with usage of plain cc / c++ /
 cpp binaries without full path and special options.

   What I expected, that in such case cross-clang will be built at
 stage 3: cross tools and used to build world, but no clang (And
 support libraries) or gcc will be built at stage 4.4: building
 everything.

  Do we need such mode? Is current behavior (risky on, IMHO) Ok? I
 think, ideal situation is when WITHOUT_CLANG + WITHOUT_GCC but no
 WITHOUT_CROSS_COMPILER IS supported as expected
 (compiler-as-cross-tool is built, but compiler-as-part-of-everything
 is not), but at least system need to abort both compilers are
 disabled and no cross-tools set configuration for now, am I right?

-- 
// Black Lion AKA Lev Serebryakov l...@freebsd.org

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on ia64/ia64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:27 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:27 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:27 - starting HEAD tinderbox run for ia64/ia64
TB --- 2013-05-17 21:20:27 - cleaning the object tree
TB --- 2013-05-17 21:20:27 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:32 - At svn revision 250753
TB --- 2013-05-17 21:20:33 - building world
TB --- 2013-05-17 21:20:33 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:33 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:33 - TARGET=ia64
TB --- 2013-05-17 21:20:33 - TARGET_ARCH=ia64
TB --- 2013-05-17 21:20:33 - TZ=UTC
TB --- 2013-05-17 21:20:33 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:33 - cd /src
TB --- 2013-05-17 21:20:33 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:33 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:33 - ERROR: failed to build world
TB --- 2013-05-17 21:20:33 - 1.66 user 2.59 system 6.12 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-ia64-ia64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/pc98

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:27 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:27 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:27 - starting HEAD tinderbox run for i386/pc98
TB --- 2013-05-17 21:20:27 - cleaning the object tree
TB --- 2013-05-17 21:20:27 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:32 - At svn revision 250753
TB --- 2013-05-17 21:20:33 - building world
TB --- 2013-05-17 21:20:33 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:33 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:33 - TARGET=pc98
TB --- 2013-05-17 21:20:33 - TARGET_ARCH=i386
TB --- 2013-05-17 21:20:33 - TZ=UTC
TB --- 2013-05-17 21:20:33 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:33 - cd /src
TB --- 2013-05-17 21:20:33 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:33 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:33 - ERROR: failed to build world
TB --- 2013-05-17 21:20:33 - 1.66 user 2.58 system 6.09 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-pc98.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on armv6/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:21 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:21 - starting HEAD tinderbox run for armv6/arm
TB --- 2013-05-17 21:20:21 - cleaning the object tree
TB --- 2013-05-17 21:20:21 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:26 - At svn revision 250753
TB --- 2013-05-17 21:20:27 - building world
TB --- 2013-05-17 21:20:27 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:27 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:27 - TARGET=arm
TB --- 2013-05-17 21:20:27 - TARGET_ARCH=armv6
TB --- 2013-05-17 21:20:27 - TZ=UTC
TB --- 2013-05-17 21:20:27 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:27 - cd /src
TB --- 2013-05-17 21:20:27 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:27 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:27 - ERROR: failed to build world
TB --- 2013-05-17 21:20:27 - 1.86 user 2.41 system 5.44 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-armv6-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on amd64/amd64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:21 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:21 - starting HEAD tinderbox run for amd64/amd64
TB --- 2013-05-17 21:20:21 - cleaning the object tree
TB --- 2013-05-17 21:20:21 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:26 - At svn revision 250753
TB --- 2013-05-17 21:20:27 - building world
TB --- 2013-05-17 21:20:27 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:27 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:27 - TARGET=amd64
TB --- 2013-05-17 21:20:27 - TARGET_ARCH=amd64
TB --- 2013-05-17 21:20:27 - TZ=UTC
TB --- 2013-05-17 21:20:27 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:27 - cd /src
TB --- 2013-05-17 21:20:27 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:27 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:27 - ERROR: failed to build world
TB --- 2013-05-17 21:20:27 - 1.53 user 2.80 system 5.52 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips64/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:27 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:27 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:27 - starting HEAD tinderbox run for mips64/mips
TB --- 2013-05-17 21:20:27 - cleaning the object tree
TB --- 2013-05-17 21:20:27 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:32 - At svn revision 250753
TB --- 2013-05-17 21:20:33 - building world
TB --- 2013-05-17 21:20:33 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:33 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:33 - TARGET=mips
TB --- 2013-05-17 21:20:33 - TARGET_ARCH=mips64
TB --- 2013-05-17 21:20:33 - TZ=UTC
TB --- 2013-05-17 21:20:33 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:33 - cd /src
TB --- 2013-05-17 21:20:33 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:33 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:33 - ERROR: failed to build world
TB --- 2013-05-17 21:20:33 - 1.70 user 2.55 system 6.09 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips64-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on arm/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:21 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:21 - starting HEAD tinderbox run for arm/arm
TB --- 2013-05-17 21:20:21 - cleaning the object tree
TB --- 2013-05-17 21:20:21 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:25 - At svn revision 250753
TB --- 2013-05-17 21:20:26 - building world
TB --- 2013-05-17 21:20:26 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:26 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:26 - TARGET=arm
TB --- 2013-05-17 21:20:26 - TARGET_ARCH=arm
TB --- 2013-05-17 21:20:26 - TZ=UTC
TB --- 2013-05-17 21:20:26 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:26 - cd /src
TB --- 2013-05-17 21:20:26 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:27 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:27 - ERROR: failed to build world
TB --- 2013-05-17 21:20:27 - 1.63 user 2.65 system 5.37 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-arm-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/i386

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:21 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:21 - starting HEAD tinderbox run for i386/i386
TB --- 2013-05-17 21:20:21 - cleaning the object tree
TB --- 2013-05-17 21:20:21 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:26 - At svn revision 250753
TB --- 2013-05-17 21:20:27 - building world
TB --- 2013-05-17 21:20:27 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:27 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:27 - TARGET=i386
TB --- 2013-05-17 21:20:27 - TARGET_ARCH=i386
TB --- 2013-05-17 21:20:27 - TZ=UTC
TB --- 2013-05-17 21:20:27 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:27 - cd /src
TB --- 2013-05-17 21:20:27 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:27 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:27 - ERROR: failed to build world
TB --- 2013-05-17 21:20:27 - 1.54 user 2.72 system 5.48 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-i386.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:27 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:27 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:27 - starting HEAD tinderbox run for mips/mips
TB --- 2013-05-17 21:20:27 - cleaning the object tree
TB --- 2013-05-17 21:20:27 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:32 - At svn revision 250753
TB --- 2013-05-17 21:20:33 - building world
TB --- 2013-05-17 21:20:33 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:33 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:33 - TARGET=mips
TB --- 2013-05-17 21:20:33 - TARGET_ARCH=mips
TB --- 2013-05-17 21:20:33 - TZ=UTC
TB --- 2013-05-17 21:20:33 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:33 - cd /src
TB --- 2013-05-17 21:20:33 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:33 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:33 - ERROR: failed to build world
TB --- 2013-05-17 21:20:33 - 1.59 user 2.67 system 6.05 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on sparc64/sparc64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:33 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:33 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:33 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2013-05-17 21:20:33 - cleaning the object tree
TB --- 2013-05-17 21:20:33 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:37 - At svn revision 250753
TB --- 2013-05-17 21:20:38 - building world
TB --- 2013-05-17 21:20:38 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:38 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:38 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:38 - TARGET=sparc64
TB --- 2013-05-17 21:20:38 - TARGET_ARCH=sparc64
TB --- 2013-05-17 21:20:38 - TZ=UTC
TB --- 2013-05-17 21:20:38 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:38 - cd /src
TB --- 2013-05-17 21:20:38 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:38 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:38 - ERROR: failed to build world
TB --- 2013-05-17 21:20:38 - 1.59 user 2.20 system 4.83 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:33 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:33 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:33 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2013-05-17 21:20:33 - cleaning the object tree
TB --- 2013-05-17 21:20:33 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:37 - At svn revision 250753
TB --- 2013-05-17 21:20:38 - building world
TB --- 2013-05-17 21:20:38 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:38 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:38 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:38 - TARGET=powerpc
TB --- 2013-05-17 21:20:38 - TARGET_ARCH=powerpc
TB --- 2013-05-17 21:20:38 - TZ=UTC
TB --- 2013-05-17 21:20:38 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:38 - cd /src
TB --- 2013-05-17 21:20:38 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:38 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:38 - ERROR: failed to build world
TB --- 2013-05-17 21:20:38 - 1.57 user 2.22 system 4.95 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc64/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:20:33 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:20:33 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:20:33 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2013-05-17 21:20:33 - cleaning the object tree
TB --- 2013-05-17 21:20:33 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:20:37 - At svn revision 250753
TB --- 2013-05-17 21:20:38 - building world
TB --- 2013-05-17 21:20:38 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:20:38 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:20:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:20:38 - SRCCONF=/dev/null
TB --- 2013-05-17 21:20:38 - TARGET=powerpc
TB --- 2013-05-17 21:20:38 - TARGET_ARCH=powerpc64
TB --- 2013-05-17 21:20:38 - TZ=UTC
TB --- 2013-05-17 21:20:38 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:20:38 - cd /src
TB --- 2013-05-17 21:20:38 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:20:38 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:20:38 - ERROR: failed to build world
TB --- 2013-05-17 21:20:38 - 1.74 user 2.04 system 4.96 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc64-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on arm/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:17 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:17 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:17 - starting HEAD tinderbox run for arm/arm
TB --- 2013-05-17 21:30:17 - cleaning the object tree
TB --- 2013-05-17 21:30:17 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:21 - At svn revision 250753
TB --- 2013-05-17 21:30:22 - building world
TB --- 2013-05-17 21:30:22 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:22 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:22 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:22 - TARGET=arm
TB --- 2013-05-17 21:30:22 - TARGET_ARCH=arm
TB --- 2013-05-17 21:30:22 - TZ=UTC
TB --- 2013-05-17 21:30:22 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:22 - cd /src
TB --- 2013-05-17 21:30:22 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:23 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:23 - ERROR: failed to build world
TB --- 2013-05-17 21:30:23 - 1.72 user 2.63 system 5.37 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-arm-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on amd64/amd64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:17 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:17 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:17 - starting HEAD tinderbox run for amd64/amd64
TB --- 2013-05-17 21:30:17 - cleaning the object tree
TB --- 2013-05-17 21:30:17 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:21 - At svn revision 250753
TB --- 2013-05-17 21:30:22 - building world
TB --- 2013-05-17 21:30:22 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:22 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:22 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:22 - TARGET=amd64
TB --- 2013-05-17 21:30:22 - TARGET_ARCH=amd64
TB --- 2013-05-17 21:30:22 - TZ=UTC
TB --- 2013-05-17 21:30:22 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:22 - cd /src
TB --- 2013-05-17 21:30:22 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:23 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:23 - ERROR: failed to build world
TB --- 2013-05-17 21:30:23 - 1.79 user 2.57 system 5.38 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/i386

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:17 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:17 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:17 - starting HEAD tinderbox run for i386/i386
TB --- 2013-05-17 21:30:17 - cleaning the object tree
TB --- 2013-05-17 21:30:17 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:21 - At svn revision 250753
TB --- 2013-05-17 21:30:22 - building world
TB --- 2013-05-17 21:30:22 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:22 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:22 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:22 - TARGET=i386
TB --- 2013-05-17 21:30:22 - TARGET_ARCH=i386
TB --- 2013-05-17 21:30:22 - TZ=UTC
TB --- 2013-05-17 21:30:22 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:22 - cd /src
TB --- 2013-05-17 21:30:22 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:23 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:23 - ERROR: failed to build world
TB --- 2013-05-17 21:30:23 - 1.70 user 2.66 system 5.38 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-i386.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on armv6/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:17 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:17 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:17 - starting HEAD tinderbox run for armv6/arm
TB --- 2013-05-17 21:30:17 - cleaning the object tree
TB --- 2013-05-17 21:30:17 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:21 - At svn revision 250753
TB --- 2013-05-17 21:30:22 - building world
TB --- 2013-05-17 21:30:22 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:22 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:22 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:22 - TARGET=arm
TB --- 2013-05-17 21:30:22 - TARGET_ARCH=armv6
TB --- 2013-05-17 21:30:22 - TZ=UTC
TB --- 2013-05-17 21:30:22 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:22 - cd /src
TB --- 2013-05-17 21:30:22 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:23 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:23 - ERROR: failed to build world
TB --- 2013-05-17 21:30:23 - 1.61 user 2.75 system 5.38 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-armv6-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:23 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:23 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:23 - starting HEAD tinderbox run for mips/mips
TB --- 2013-05-17 21:30:23 - cleaning the object tree
TB --- 2013-05-17 21:30:23 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:27 - At svn revision 250753
TB --- 2013-05-17 21:30:28 - building world
TB --- 2013-05-17 21:30:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:28 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:28 - TARGET=mips
TB --- 2013-05-17 21:30:28 - TARGET_ARCH=mips
TB --- 2013-05-17 21:30:28 - TZ=UTC
TB --- 2013-05-17 21:30:28 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:28 - cd /src
TB --- 2013-05-17 21:30:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:28 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:28 - ERROR: failed to build world
TB --- 2013-05-17 21:30:28 - 1.62 user 2.70 system 5.36 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/pc98

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:23 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:23 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:23 - starting HEAD tinderbox run for i386/pc98
TB --- 2013-05-17 21:30:23 - cleaning the object tree
TB --- 2013-05-17 21:30:23 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:27 - At svn revision 250753
TB --- 2013-05-17 21:30:28 - building world
TB --- 2013-05-17 21:30:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:28 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:28 - TARGET=pc98
TB --- 2013-05-17 21:30:28 - TARGET_ARCH=i386
TB --- 2013-05-17 21:30:28 - TZ=UTC
TB --- 2013-05-17 21:30:28 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:28 - cd /src
TB --- 2013-05-17 21:30:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:28 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:28 - ERROR: failed to build world
TB --- 2013-05-17 21:30:28 - 1.73 user 2.61 system 5.36 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-pc98.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips64/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:23 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:23 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:23 - starting HEAD tinderbox run for mips64/mips
TB --- 2013-05-17 21:30:23 - cleaning the object tree
TB --- 2013-05-17 21:30:23 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:27 - At svn revision 250753
TB --- 2013-05-17 21:30:28 - building world
TB --- 2013-05-17 21:30:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:28 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:28 - TARGET=mips
TB --- 2013-05-17 21:30:28 - TARGET_ARCH=mips64
TB --- 2013-05-17 21:30:28 - TZ=UTC
TB --- 2013-05-17 21:30:28 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:28 - cd /src
TB --- 2013-05-17 21:30:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:28 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:28 - ERROR: failed to build world
TB --- 2013-05-17 21:30:28 - 1.55 user 2.77 system 5.34 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips64-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on ia64/ia64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:23 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:23 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:23 - starting HEAD tinderbox run for ia64/ia64
TB --- 2013-05-17 21:30:23 - cleaning the object tree
TB --- 2013-05-17 21:30:23 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:27 - At svn revision 250753
TB --- 2013-05-17 21:30:28 - building world
TB --- 2013-05-17 21:30:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:28 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:28 - TARGET=ia64
TB --- 2013-05-17 21:30:28 - TARGET_ARCH=ia64
TB --- 2013-05-17 21:30:28 - TZ=UTC
TB --- 2013-05-17 21:30:28 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:28 - cd /src
TB --- 2013-05-17 21:30:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:28 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:28 - ERROR: failed to build world
TB --- 2013-05-17 21:30:28 - 1.84 user 2.49 system 5.37 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-ia64-ia64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:28 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:28 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:28 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2013-05-17 21:30:28 - cleaning the object tree
TB --- 2013-05-17 21:30:28 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:32 - At svn revision 250753
TB --- 2013-05-17 21:30:33 - building world
TB --- 2013-05-17 21:30:33 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:33 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:33 - TARGET=powerpc
TB --- 2013-05-17 21:30:33 - TARGET_ARCH=powerpc
TB --- 2013-05-17 21:30:33 - TZ=UTC
TB --- 2013-05-17 21:30:33 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:33 - cd /src
TB --- 2013-05-17 21:30:33 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:33 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:33 - ERROR: failed to build world
TB --- 2013-05-17 21:30:33 - 1.77 user 2.11 system 5.05 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc64/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:28 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:28 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:28 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2013-05-17 21:30:28 - cleaning the object tree
TB --- 2013-05-17 21:30:28 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:32 - At svn revision 250753
TB --- 2013-05-17 21:30:33 - building world
TB --- 2013-05-17 21:30:33 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:33 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:33 - TARGET=powerpc
TB --- 2013-05-17 21:30:33 - TARGET_ARCH=powerpc64
TB --- 2013-05-17 21:30:33 - TZ=UTC
TB --- 2013-05-17 21:30:33 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:33 - cd /src
TB --- 2013-05-17 21:30:33 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:33 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:33 - ERROR: failed to build world
TB --- 2013-05-17 21:30:33 - 1.61 user 2.27 system 5.06 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc64-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on sparc64/sparc64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:30:28 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:30:28 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:30:28 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2013-05-17 21:30:28 - cleaning the object tree
TB --- 2013-05-17 21:30:28 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:30:32 - At svn revision 250753
TB --- 2013-05-17 21:30:33 - building world
TB --- 2013-05-17 21:30:33 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:30:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:30:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:30:33 - SRCCONF=/dev/null
TB --- 2013-05-17 21:30:33 - TARGET=sparc64
TB --- 2013-05-17 21:30:33 - TARGET_ARCH=sparc64
TB --- 2013-05-17 21:30:33 - TZ=UTC
TB --- 2013-05-17 21:30:33 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:30:33 - cd /src
TB --- 2013-05-17 21:30:33 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:30:33 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:30:33 - ERROR: failed to build world
TB --- 2013-05-17 21:30:33 - 1.62 user 2.26 system 5.05 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: WITHOUT_CLANG + WITHOUT_GCC vs XCC + WITHOUT_CROSS_COMPILER

2013-05-17 Thread Dimitry Andric
On May 17, 2013, at 22:46, Lev Serebryakov l...@freebsd.org wrote:
  I've explored new options to build world and kernel with external
 compiler. My goal is not to use modern compiler or true
 cross-compilation, but fast building of system, which (almost)
 identical to host system and doesn't need compiler (NanoBSD image for
 router).
 
 What I found, that if WITHOUT_LCNAG and WITHOUT_GCC are both set, and
 WITHOUT_CROSS_COMPILER and XCC/XCXX/XCPP are NOT set, world and
 kernel is build with system compiler, but without cross options
 (like -isystem and --sysroot). So, it works only by accident, and not
 in way, that user (developer) could expect.

For some historic reason, the cross-tools compiler is always built with
its default sysroot path set to ${WORLDTMP}.  I used quotes, because
it is not only about finding headers and libraries, but also to find
other toolchain binaries (cc1, as, ld and so on) under ${WORLDTMP}.  I
suspect this was all done before gcc and the other toolchain components
grew proper sysroot support.

Indeed, it would probably be better to revert that, and compile all
stages after cross-tools with --sysroot=${WORLDTMP} (and probably
-B${WORLDTMP}/usr/bin).  It might not be trivial to get this properly
working for all edge cases, though.


   What I expected, that in such case cross-clang will be built at
 stage 3: cross tools and used to build world, but no clang (And
 support libraries) or gcc will be built at stage 4.4: building
 everything.

Currently, if you set WITHOUT_CLANG, it will not build clang, not in any
stage.  Similar for WITHOUT_GCC.


  Do we need such mode?

Well, if you are not interested in having any compilers (or toolchain
components) in your final world, they should not be built, right?


 Is current behavior (risky on, IMHO) Ok?

No, obviously not.  If you build world with old system headers (for
example when building head on stable/9), there will be trouble.


 I think, ideal situation is when WITHOUT_CLANG + WITHOUT_GCC but no
 WITHOUT_CROSS_COMPILER IS supported as expected
 (compiler-as-cross-tool is built, but compiler-as-part-of-everything
 is not), but at least system need to abort both compilers are
 disabled and no cross-tools set configuration for now, am I right?

Yes, a seatbelt would probably be wise for the time being.

-Dimitry

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on amd64/amd64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:13 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:13 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:13 - starting HEAD tinderbox run for amd64/amd64
TB --- 2013-05-17 21:40:13 - cleaning the object tree
TB --- 2013-05-17 21:40:13 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:17 - At svn revision 250753
TB --- 2013-05-17 21:40:18 - building world
TB --- 2013-05-17 21:40:18 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:18 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:18 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:18 - TARGET=amd64
TB --- 2013-05-17 21:40:18 - TARGET_ARCH=amd64
TB --- 2013-05-17 21:40:18 - TZ=UTC
TB --- 2013-05-17 21:40:18 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:18 - cd /src
TB --- 2013-05-17 21:40:18 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:19 - ERROR: failed to build world
TB --- 2013-05-17 21:40:19 - 1.62 user 2.73 system 5.36 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on armv6/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:13 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:13 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:13 - starting HEAD tinderbox run for armv6/arm
TB --- 2013-05-17 21:40:13 - cleaning the object tree
TB --- 2013-05-17 21:40:13 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:17 - At svn revision 250753
TB --- 2013-05-17 21:40:18 - building world
TB --- 2013-05-17 21:40:18 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:18 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:18 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:18 - TARGET=arm
TB --- 2013-05-17 21:40:18 - TARGET_ARCH=armv6
TB --- 2013-05-17 21:40:18 - TZ=UTC
TB --- 2013-05-17 21:40:18 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:18 - cd /src
TB --- 2013-05-17 21:40:18 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:19 - ERROR: failed to build world
TB --- 2013-05-17 21:40:19 - 1.78 user 2.55 system 5.38 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-armv6-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/i386

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:13 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:13 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:13 - starting HEAD tinderbox run for i386/i386
TB --- 2013-05-17 21:40:13 - cleaning the object tree
TB --- 2013-05-17 21:40:13 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:17 - At svn revision 250753
TB --- 2013-05-17 21:40:18 - building world
TB --- 2013-05-17 21:40:18 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:18 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:18 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:18 - TARGET=i386
TB --- 2013-05-17 21:40:18 - TARGET_ARCH=i386
TB --- 2013-05-17 21:40:18 - TZ=UTC
TB --- 2013-05-17 21:40:18 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:18 - cd /src
TB --- 2013-05-17 21:40:18 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:19 - ERROR: failed to build world
TB --- 2013-05-17 21:40:19 - 1.54 user 2.80 system 5.37 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-i386.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on arm/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:13 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:13 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:13 - starting HEAD tinderbox run for arm/arm
TB --- 2013-05-17 21:40:13 - cleaning the object tree
TB --- 2013-05-17 21:40:13 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:17 - At svn revision 250753
TB --- 2013-05-17 21:40:18 - building world
TB --- 2013-05-17 21:40:18 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:18 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:18 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:18 - TARGET=arm
TB --- 2013-05-17 21:40:18 - TARGET_ARCH=arm
TB --- 2013-05-17 21:40:18 - TZ=UTC
TB --- 2013-05-17 21:40:18 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:18 - cd /src
TB --- 2013-05-17 21:40:18 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:19 - ERROR: failed to build world
TB --- 2013-05-17 21:40:19 - 1.76 user 2.59 system 5.36 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-arm-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips64/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:19 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:19 - starting HEAD tinderbox run for mips64/mips
TB --- 2013-05-17 21:40:19 - cleaning the object tree
TB --- 2013-05-17 21:40:19 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:23 - At svn revision 250753
TB --- 2013-05-17 21:40:24 - building world
TB --- 2013-05-17 21:40:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:24 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:24 - TARGET=mips
TB --- 2013-05-17 21:40:24 - TARGET_ARCH=mips64
TB --- 2013-05-17 21:40:24 - TZ=UTC
TB --- 2013-05-17 21:40:24 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:24 - cd /src
TB --- 2013-05-17 21:40:24 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:24 - ERROR: failed to build world
TB --- 2013-05-17 21:40:24 - 1.62 user 2.70 system 5.35 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips64-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/pc98

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:19 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:19 - starting HEAD tinderbox run for i386/pc98
TB --- 2013-05-17 21:40:19 - cleaning the object tree
TB --- 2013-05-17 21:40:19 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:23 - At svn revision 250753
TB --- 2013-05-17 21:40:24 - building world
TB --- 2013-05-17 21:40:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:24 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:24 - TARGET=pc98
TB --- 2013-05-17 21:40:24 - TARGET_ARCH=i386
TB --- 2013-05-17 21:40:24 - TZ=UTC
TB --- 2013-05-17 21:40:24 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:24 - cd /src
TB --- 2013-05-17 21:40:24 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:24 - ERROR: failed to build world
TB --- 2013-05-17 21:40:24 - 1.69 user 2.65 system 5.36 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-pc98.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:19 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:19 - starting HEAD tinderbox run for mips/mips
TB --- 2013-05-17 21:40:19 - cleaning the object tree
TB --- 2013-05-17 21:40:19 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:23 - At svn revision 250753
TB --- 2013-05-17 21:40:24 - building world
TB --- 2013-05-17 21:40:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:24 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:24 - TARGET=mips
TB --- 2013-05-17 21:40:24 - TARGET_ARCH=mips
TB --- 2013-05-17 21:40:24 - TZ=UTC
TB --- 2013-05-17 21:40:24 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:24 - cd /src
TB --- 2013-05-17 21:40:24 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:24 - ERROR: failed to build world
TB --- 2013-05-17 21:40:24 - 1.70 user 2.64 system 5.35 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on ia64/ia64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:19 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:19 - starting HEAD tinderbox run for ia64/ia64
TB --- 2013-05-17 21:40:19 - cleaning the object tree
TB --- 2013-05-17 21:40:19 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:23 - At svn revision 250753
TB --- 2013-05-17 21:40:24 - building world
TB --- 2013-05-17 21:40:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:24 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:24 - TARGET=ia64
TB --- 2013-05-17 21:40:24 - TARGET_ARCH=ia64
TB --- 2013-05-17 21:40:24 - TZ=UTC
TB --- 2013-05-17 21:40:24 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:24 - cd /src
TB --- 2013-05-17 21:40:24 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:24 - ERROR: failed to build world
TB --- 2013-05-17 21:40:24 - 1.71 user 2.62 system 5.34 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-ia64-ia64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:29 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:29 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:29 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2013-05-17 21:40:29 - cleaning the object tree
TB --- 2013-05-17 21:40:29 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:33 - At svn revision 250753
TB --- 2013-05-17 21:40:34 - building world
TB --- 2013-05-17 21:40:34 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:34 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:34 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:34 - TARGET=powerpc
TB --- 2013-05-17 21:40:34 - TARGET_ARCH=powerpc
TB --- 2013-05-17 21:40:34 - TZ=UTC
TB --- 2013-05-17 21:40:34 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:34 - cd /src
TB --- 2013-05-17 21:40:34 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:34 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:34 - ERROR: failed to build world
TB --- 2013-05-17 21:40:34 - 1.64 user 2.16 system 4.80 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on sparc64/sparc64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:29 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:29 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:29 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2013-05-17 21:40:29 - cleaning the object tree
TB --- 2013-05-17 21:40:29 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:33 - At svn revision 250753
TB --- 2013-05-17 21:40:34 - building world
TB --- 2013-05-17 21:40:34 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:34 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:34 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:34 - TARGET=sparc64
TB --- 2013-05-17 21:40:34 - TARGET_ARCH=sparc64
TB --- 2013-05-17 21:40:34 - TZ=UTC
TB --- 2013-05-17 21:40:34 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:34 - cd /src
TB --- 2013-05-17 21:40:34 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:34 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:34 - ERROR: failed to build world
TB --- 2013-05-17 21:40:34 - 1.59 user 2.27 system 4.87 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc64/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:40:29 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:40:29 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:40:29 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2013-05-17 21:40:29 - cleaning the object tree
TB --- 2013-05-17 21:40:29 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:40:33 - At svn revision 250753
TB --- 2013-05-17 21:40:34 - building world
TB --- 2013-05-17 21:40:34 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:40:34 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:40:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:40:34 - SRCCONF=/dev/null
TB --- 2013-05-17 21:40:34 - TARGET=powerpc
TB --- 2013-05-17 21:40:34 - TARGET_ARCH=powerpc64
TB --- 2013-05-17 21:40:34 - TZ=UTC
TB --- 2013-05-17 21:40:34 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:40:34 - cd /src
TB --- 2013-05-17 21:40:34 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:40:34 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:40:34 - ERROR: failed to build world
TB --- 2013-05-17 21:40:34 - 1.51 user 2.35 system 4.87 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc64-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on amd64/amd64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:15 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:15 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:15 - starting HEAD tinderbox run for amd64/amd64
TB --- 2013-05-17 21:50:15 - cleaning the object tree
TB --- 2013-05-17 21:50:15 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:19 - At svn revision 250754
TB --- 2013-05-17 21:50:20 - building world
TB --- 2013-05-17 21:50:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:20 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:20 - TARGET=amd64
TB --- 2013-05-17 21:50:20 - TARGET_ARCH=amd64
TB --- 2013-05-17 21:50:20 - TZ=UTC
TB --- 2013-05-17 21:50:20 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:20 - cd /src
TB --- 2013-05-17 21:50:20 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:21 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:21 - ERROR: failed to build world
TB --- 2013-05-17 21:50:21 - 1.54 user 2.78 system 5.35 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on arm/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:15 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:15 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:15 - starting HEAD tinderbox run for arm/arm
TB --- 2013-05-17 21:50:15 - cleaning the object tree
TB --- 2013-05-17 21:50:15 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:19 - At svn revision 250754
TB --- 2013-05-17 21:50:20 - building world
TB --- 2013-05-17 21:50:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:20 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:20 - TARGET=arm
TB --- 2013-05-17 21:50:20 - TARGET_ARCH=arm
TB --- 2013-05-17 21:50:20 - TZ=UTC
TB --- 2013-05-17 21:50:20 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:20 - cd /src
TB --- 2013-05-17 21:50:20 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:21 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:21 - ERROR: failed to build world
TB --- 2013-05-17 21:50:21 - 1.55 user 2.77 system 5.36 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-arm-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/i386

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:15 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:15 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:15 - starting HEAD tinderbox run for i386/i386
TB --- 2013-05-17 21:50:15 - cleaning the object tree
TB --- 2013-05-17 21:50:15 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:19 - At svn revision 250754
TB --- 2013-05-17 21:50:20 - building world
TB --- 2013-05-17 21:50:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:20 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:20 - TARGET=i386
TB --- 2013-05-17 21:50:20 - TARGET_ARCH=i386
TB --- 2013-05-17 21:50:20 - TZ=UTC
TB --- 2013-05-17 21:50:20 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:20 - cd /src
TB --- 2013-05-17 21:50:20 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:20 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:20 - ERROR: failed to build world
TB --- 2013-05-17 21:50:20 - 1.65 user 2.69 system 5.34 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-i386.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on armv6/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:15 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:15 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:15 - starting HEAD tinderbox run for armv6/arm
TB --- 2013-05-17 21:50:15 - cleaning the object tree
TB --- 2013-05-17 21:50:15 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:19 - At svn revision 250754
TB --- 2013-05-17 21:50:20 - building world
TB --- 2013-05-17 21:50:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:20 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:20 - TARGET=arm
TB --- 2013-05-17 21:50:20 - TARGET_ARCH=armv6
TB --- 2013-05-17 21:50:20 - TZ=UTC
TB --- 2013-05-17 21:50:20 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:20 - cd /src
TB --- 2013-05-17 21:50:20 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:20 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:20 - ERROR: failed to build world
TB --- 2013-05-17 21:50:20 - 1.62 user 2.70 system 5.34 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-armv6-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on ia64/ia64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:21 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:21 - starting HEAD tinderbox run for ia64/ia64
TB --- 2013-05-17 21:50:21 - cleaning the object tree
TB --- 2013-05-17 21:50:21 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:25 - At svn revision 250754
TB --- 2013-05-17 21:50:26 - building world
TB --- 2013-05-17 21:50:26 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:26 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:26 - TARGET=ia64
TB --- 2013-05-17 21:50:26 - TARGET_ARCH=ia64
TB --- 2013-05-17 21:50:26 - TZ=UTC
TB --- 2013-05-17 21:50:26 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:26 - cd /src
TB --- 2013-05-17 21:50:26 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:26 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:26 - ERROR: failed to build world
TB --- 2013-05-17 21:50:26 - 1.59 user 2.70 system 5.32 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-ia64-ia64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/pc98

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:21 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:21 - starting HEAD tinderbox run for i386/pc98
TB --- 2013-05-17 21:50:21 - cleaning the object tree
TB --- 2013-05-17 21:50:21 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:25 - At svn revision 250754
TB --- 2013-05-17 21:50:26 - building world
TB --- 2013-05-17 21:50:26 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:26 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:26 - TARGET=pc98
TB --- 2013-05-17 21:50:26 - TARGET_ARCH=i386
TB --- 2013-05-17 21:50:26 - TZ=UTC
TB --- 2013-05-17 21:50:26 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:26 - cd /src
TB --- 2013-05-17 21:50:26 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:26 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:26 - ERROR: failed to build world
TB --- 2013-05-17 21:50:26 - 1.55 user 2.77 system 5.32 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-pc98.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:21 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:21 - starting HEAD tinderbox run for mips/mips
TB --- 2013-05-17 21:50:21 - cleaning the object tree
TB --- 2013-05-17 21:50:21 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:25 - At svn revision 250754
TB --- 2013-05-17 21:50:26 - building world
TB --- 2013-05-17 21:50:26 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:26 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:26 - TARGET=mips
TB --- 2013-05-17 21:50:26 - TARGET_ARCH=mips
TB --- 2013-05-17 21:50:26 - TZ=UTC
TB --- 2013-05-17 21:50:26 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:26 - cd /src
TB --- 2013-05-17 21:50:26 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:26 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:26 - ERROR: failed to build world
TB --- 2013-05-17 21:50:26 - 1.73 user 2.57 system 5.32 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips64/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:21 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:21 - starting HEAD tinderbox run for mips64/mips
TB --- 2013-05-17 21:50:21 - cleaning the object tree
TB --- 2013-05-17 21:50:21 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:25 - At svn revision 250754
TB --- 2013-05-17 21:50:26 - building world
TB --- 2013-05-17 21:50:26 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:26 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:26 - TARGET=mips
TB --- 2013-05-17 21:50:26 - TARGET_ARCH=mips64
TB --- 2013-05-17 21:50:26 - TZ=UTC
TB --- 2013-05-17 21:50:26 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:26 - cd /src
TB --- 2013-05-17 21:50:26 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:26 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:26 - ERROR: failed to build world
TB --- 2013-05-17 21:50:26 - 1.64 user 2.66 system 5.31 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips64-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on sparc64/sparc64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:26 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:26 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:26 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2013-05-17 21:50:26 - cleaning the object tree
TB --- 2013-05-17 21:50:26 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:30 - At svn revision 250754
TB --- 2013-05-17 21:50:31 - building world
TB --- 2013-05-17 21:50:31 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:31 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:31 - TARGET=sparc64
TB --- 2013-05-17 21:50:31 - TARGET_ARCH=sparc64
TB --- 2013-05-17 21:50:31 - TZ=UTC
TB --- 2013-05-17 21:50:31 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:31 - cd /src
TB --- 2013-05-17 21:50:31 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:31 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:31 - ERROR: failed to build world
TB --- 2013-05-17 21:50:31 - 1.53 user 2.29 system 4.82 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:26 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:26 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:26 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2013-05-17 21:50:26 - cleaning the object tree
TB --- 2013-05-17 21:50:26 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:30 - At svn revision 250754
TB --- 2013-05-17 21:50:31 - building world
TB --- 2013-05-17 21:50:31 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:31 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:31 - TARGET=powerpc
TB --- 2013-05-17 21:50:31 - TARGET_ARCH=powerpc
TB --- 2013-05-17 21:50:31 - TZ=UTC
TB --- 2013-05-17 21:50:31 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:31 - cd /src
TB --- 2013-05-17 21:50:31 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:31 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:31 - ERROR: failed to build world
TB --- 2013-05-17 21:50:31 - 1.61 user 2.20 system 4.80 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc64/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 21:50:26 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 21:50:26 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 21:50:26 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2013-05-17 21:50:26 - cleaning the object tree
TB --- 2013-05-17 21:50:26 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 21:50:30 - At svn revision 250754
TB --- 2013-05-17 21:50:31 - building world
TB --- 2013-05-17 21:50:31 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 21:50:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 21:50:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 21:50:31 - SRCCONF=/dev/null
TB --- 2013-05-17 21:50:31 - TARGET=powerpc
TB --- 2013-05-17 21:50:31 - TARGET_ARCH=powerpc64
TB --- 2013-05-17 21:50:31 - TZ=UTC
TB --- 2013-05-17 21:50:31 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 21:50:31 - cd /src
TB --- 2013-05-17 21:50:31 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 21:50:31 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 21:50:31 - ERROR: failed to build world
TB --- 2013-05-17 21:50:31 - 1.45 user 2.38 system 4.83 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc64-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: WITHOUT_CLANG + WITHOUT_GCC vs XCC + WITHOUT_CROSS_COMPILER

2013-05-17 Thread Lev Serebryakov
Hello, Dimitry.
You wrote 18 мая 2013 г., 1:35:25:

  Do we need such mode?
DA Well, if you are not interested in having any compilers (or toolchain
DA components) in your final world, they should not be built, right?
  Yes, it is perfectly valid to build system without compiler at all,
IMHO. I mean, do we need mode, when some tools is used for
compilation, and compiler is not configured by hands (via new XCxx
variables) and not build at cross-tools stage.

  As I already said, I will be glad to see DIFFERENT knobs to
select stage-3-built (and later used) compiler (external, configured
explicitly via XCxx variables OR clang from sources OR gcc from
sources -- three variants, clang from sources by default, as it is
now) and other set of knobs (current WITHOUT_CLANG and WITHOUT_GCC) to
disable these compilers as parts of TARGET system, like WITHOUT_BIND
and others WITHOUT_xxx.

  These two+ compilers are different ones! And now we haven't any way
to control them separately. Or, really, we have half-backed control:
we could say don't build cross-compiler, use external one, but we
have no way to say build cross-compiler, but not target one. It
annoys me. But I afraid, I don't understand out build system well
enough to provide patches, sorry.

 BTW, there is no way not to build binutils, as install -s used on
installworld stage needs strip.

 Is current behavior (risky on, IMHO) Ok?
DA No, obviously not.  If you build world with old system headers (for
DA example when building head on stable/9), there will be trouble.
  Exactly!

-- 
// Black Lion AKA Lev Serebryakov l...@freebsd.org

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

[head tinderbox] failure on i386/i386

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:13 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:13 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:13 - starting HEAD tinderbox run for i386/i386
TB --- 2013-05-17 22:00:13 - cleaning the object tree
TB --- 2013-05-17 22:00:13 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:17 - At svn revision 250754
TB --- 2013-05-17 22:00:18 - building world
TB --- 2013-05-17 22:00:18 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:18 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:18 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:18 - TARGET=i386
TB --- 2013-05-17 22:00:18 - TARGET_ARCH=i386
TB --- 2013-05-17 22:00:18 - TZ=UTC
TB --- 2013-05-17 22:00:18 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:18 - cd /src
TB --- 2013-05-17 22:00:18 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:19 - ERROR: failed to build world
TB --- 2013-05-17 22:00:19 - 1.46 user 2.88 system 5.37 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-i386.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on arm/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:13 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:13 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:13 - starting HEAD tinderbox run for arm/arm
TB --- 2013-05-17 22:00:13 - cleaning the object tree
TB --- 2013-05-17 22:00:13 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:17 - At svn revision 250754
TB --- 2013-05-17 22:00:18 - building world
TB --- 2013-05-17 22:00:18 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:18 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:18 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:18 - TARGET=arm
TB --- 2013-05-17 22:00:18 - TARGET_ARCH=arm
TB --- 2013-05-17 22:00:18 - TZ=UTC
TB --- 2013-05-17 22:00:18 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:18 - cd /src
TB --- 2013-05-17 22:00:18 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:19 - ERROR: failed to build world
TB --- 2013-05-17 22:00:19 - 1.70 user 2.65 system 5.37 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-arm-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on amd64/amd64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:13 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:13 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:13 - starting HEAD tinderbox run for amd64/amd64
TB --- 2013-05-17 22:00:13 - cleaning the object tree
TB --- 2013-05-17 22:00:13 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:17 - At svn revision 250754
TB --- 2013-05-17 22:00:18 - building world
TB --- 2013-05-17 22:00:18 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:18 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:18 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:18 - TARGET=amd64
TB --- 2013-05-17 22:00:18 - TARGET_ARCH=amd64
TB --- 2013-05-17 22:00:18 - TZ=UTC
TB --- 2013-05-17 22:00:18 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:18 - cd /src
TB --- 2013-05-17 22:00:18 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:19 - ERROR: failed to build world
TB --- 2013-05-17 22:00:19 - 1.69 user 2.66 system 5.37 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on armv6/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:13 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:13 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:13 - starting HEAD tinderbox run for armv6/arm
TB --- 2013-05-17 22:00:13 - cleaning the object tree
TB --- 2013-05-17 22:00:13 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:17 - At svn revision 250754
TB --- 2013-05-17 22:00:18 - building world
TB --- 2013-05-17 22:00:18 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:18 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:18 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:18 - TARGET=arm
TB --- 2013-05-17 22:00:18 - TARGET_ARCH=armv6
TB --- 2013-05-17 22:00:18 - TZ=UTC
TB --- 2013-05-17 22:00:18 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:18 - cd /src
TB --- 2013-05-17 22:00:18 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:19 - ERROR: failed to build world
TB --- 2013-05-17 22:00:19 - 1.68 user 2.66 system 5.36 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-armv6-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/pc98

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:19 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:19 - starting HEAD tinderbox run for i386/pc98
TB --- 2013-05-17 22:00:19 - cleaning the object tree
TB --- 2013-05-17 22:00:19 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:23 - At svn revision 250754
TB --- 2013-05-17 22:00:24 - building world
TB --- 2013-05-17 22:00:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:24 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:24 - TARGET=pc98
TB --- 2013-05-17 22:00:24 - TARGET_ARCH=i386
TB --- 2013-05-17 22:00:24 - TZ=UTC
TB --- 2013-05-17 22:00:24 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:24 - cd /src
TB --- 2013-05-17 22:00:24 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:24 - ERROR: failed to build world
TB --- 2013-05-17 22:00:24 - 1.61 user 2.60 system 5.21 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-pc98.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on ia64/ia64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:19 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:19 - starting HEAD tinderbox run for ia64/ia64
TB --- 2013-05-17 22:00:19 - cleaning the object tree
TB --- 2013-05-17 22:00:19 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:23 - At svn revision 250754
TB --- 2013-05-17 22:00:24 - building world
TB --- 2013-05-17 22:00:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:24 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:24 - TARGET=ia64
TB --- 2013-05-17 22:00:24 - TARGET_ARCH=ia64
TB --- 2013-05-17 22:00:24 - TZ=UTC
TB --- 2013-05-17 22:00:24 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:24 - cd /src
TB --- 2013-05-17 22:00:24 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:24 - ERROR: failed to build world
TB --- 2013-05-17 22:00:24 - 1.70 user 2.55 system 5.30 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-ia64-ia64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:19 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:19 - starting HEAD tinderbox run for mips/mips
TB --- 2013-05-17 22:00:19 - cleaning the object tree
TB --- 2013-05-17 22:00:19 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:23 - At svn revision 250754
TB --- 2013-05-17 22:00:24 - building world
TB --- 2013-05-17 22:00:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:24 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:24 - TARGET=mips
TB --- 2013-05-17 22:00:24 - TARGET_ARCH=mips
TB --- 2013-05-17 22:00:24 - TZ=UTC
TB --- 2013-05-17 22:00:24 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:24 - cd /src
TB --- 2013-05-17 22:00:24 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:24 - ERROR: failed to build world
TB --- 2013-05-17 22:00:24 - 1.73 user 2.54 system 5.30 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips64/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:19 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:19 - starting HEAD tinderbox run for mips64/mips
TB --- 2013-05-17 22:00:19 - cleaning the object tree
TB --- 2013-05-17 22:00:19 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:23 - At svn revision 250754
TB --- 2013-05-17 22:00:24 - building world
TB --- 2013-05-17 22:00:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:24 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:24 - TARGET=mips
TB --- 2013-05-17 22:00:24 - TARGET_ARCH=mips64
TB --- 2013-05-17 22:00:24 - TZ=UTC
TB --- 2013-05-17 22:00:24 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:24 - cd /src
TB --- 2013-05-17 22:00:24 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:24 - ERROR: failed to build world
TB --- 2013-05-17 22:00:24 - 1.60 user 2.66 system 5.29 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips64-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:24 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:24 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:24 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2013-05-17 22:00:24 - cleaning the object tree
TB --- 2013-05-17 22:00:24 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:28 - At svn revision 250754
TB --- 2013-05-17 22:00:29 - building world
TB --- 2013-05-17 22:00:29 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:29 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:29 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:29 - TARGET=powerpc
TB --- 2013-05-17 22:00:29 - TARGET_ARCH=powerpc
TB --- 2013-05-17 22:00:29 - TZ=UTC
TB --- 2013-05-17 22:00:29 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:29 - cd /src
TB --- 2013-05-17 22:00:29 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:29 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:29 - ERROR: failed to build world
TB --- 2013-05-17 22:00:29 - 1.50 user 2.21 system 4.72 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on sparc64/sparc64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:24 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:24 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:24 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2013-05-17 22:00:24 - cleaning the object tree
TB --- 2013-05-17 22:00:24 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:28 - At svn revision 250754
TB --- 2013-05-17 22:00:29 - building world
TB --- 2013-05-17 22:00:29 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:29 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:29 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:29 - TARGET=sparc64
TB --- 2013-05-17 22:00:29 - TARGET_ARCH=sparc64
TB --- 2013-05-17 22:00:29 - TZ=UTC
TB --- 2013-05-17 22:00:29 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:29 - cd /src
TB --- 2013-05-17 22:00:29 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:29 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:29 - ERROR: failed to build world
TB --- 2013-05-17 22:00:29 - 1.66 user 2.15 system 4.80 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc64/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:00:24 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:00:24 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:00:24 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2013-05-17 22:00:24 - cleaning the object tree
TB --- 2013-05-17 22:00:24 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:00:28 - At svn revision 250754
TB --- 2013-05-17 22:00:29 - building world
TB --- 2013-05-17 22:00:29 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:00:29 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:00:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:00:29 - SRCCONF=/dev/null
TB --- 2013-05-17 22:00:29 - TARGET=powerpc
TB --- 2013-05-17 22:00:29 - TARGET_ARCH=powerpc64
TB --- 2013-05-17 22:00:29 - TZ=UTC
TB --- 2013-05-17 22:00:29 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:00:29 - cd /src
TB --- 2013-05-17 22:00:29 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:00:29 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:00:29 - ERROR: failed to build world
TB --- 2013-05-17 22:00:29 - 1.66 user 2.16 system 4.81 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc64-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on arm/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:14 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:14 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:14 - starting HEAD tinderbox run for arm/arm
TB --- 2013-05-17 22:10:14 - cleaning the object tree
TB --- 2013-05-17 22:10:14 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:18 - At svn revision 250754
TB --- 2013-05-17 22:10:19 - building world
TB --- 2013-05-17 22:10:19 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:19 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:19 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:19 - TARGET=arm
TB --- 2013-05-17 22:10:19 - TARGET_ARCH=arm
TB --- 2013-05-17 22:10:19 - TZ=UTC
TB --- 2013-05-17 22:10:19 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:19 - cd /src
TB --- 2013-05-17 22:10:19 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:20 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:20 - ERROR: failed to build world
TB --- 2013-05-17 22:10:20 - 1.68 user 2.65 system 5.34 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-arm-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on amd64/amd64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:14 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:14 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:14 - starting HEAD tinderbox run for amd64/amd64
TB --- 2013-05-17 22:10:14 - cleaning the object tree
TB --- 2013-05-17 22:10:14 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:18 - At svn revision 250754
TB --- 2013-05-17 22:10:19 - building world
TB --- 2013-05-17 22:10:19 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:19 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:19 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:19 - TARGET=amd64
TB --- 2013-05-17 22:10:19 - TARGET_ARCH=amd64
TB --- 2013-05-17 22:10:19 - TZ=UTC
TB --- 2013-05-17 22:10:19 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:19 - cd /src
TB --- 2013-05-17 22:10:19 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:19 - ERROR: failed to build world
TB --- 2013-05-17 22:10:19 - 1.64 user 2.68 system 5.33 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/i386

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:14 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:14 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:14 - starting HEAD tinderbox run for i386/i386
TB --- 2013-05-17 22:10:14 - cleaning the object tree
TB --- 2013-05-17 22:10:14 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:18 - At svn revision 250754
TB --- 2013-05-17 22:10:19 - building world
TB --- 2013-05-17 22:10:19 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:19 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:19 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:19 - TARGET=i386
TB --- 2013-05-17 22:10:19 - TARGET_ARCH=i386
TB --- 2013-05-17 22:10:19 - TZ=UTC
TB --- 2013-05-17 22:10:19 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:19 - cd /src
TB --- 2013-05-17 22:10:19 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:20 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:20 - ERROR: failed to build world
TB --- 2013-05-17 22:10:20 - 1.54 user 2.78 system 5.35 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-i386.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on armv6/arm

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:14 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:14 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:14 - starting HEAD tinderbox run for armv6/arm
TB --- 2013-05-17 22:10:14 - cleaning the object tree
TB --- 2013-05-17 22:10:14 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:18 - At svn revision 250754
TB --- 2013-05-17 22:10:19 - building world
TB --- 2013-05-17 22:10:19 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:19 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:19 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:19 - TARGET=arm
TB --- 2013-05-17 22:10:19 - TARGET_ARCH=armv6
TB --- 2013-05-17 22:10:19 - TZ=UTC
TB --- 2013-05-17 22:10:19 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:19 - cd /src
TB --- 2013-05-17 22:10:19 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:20 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:20 - ERROR: failed to build world
TB --- 2013-05-17 22:10:20 - 1.66 user 2.67 system 5.35 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-armv6-arm.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/pc98

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:20 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:20 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:20 - starting HEAD tinderbox run for i386/pc98
TB --- 2013-05-17 22:10:20 - cleaning the object tree
TB --- 2013-05-17 22:10:20 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:24 - At svn revision 250754
TB --- 2013-05-17 22:10:25 - building world
TB --- 2013-05-17 22:10:25 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:25 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:25 - TARGET=pc98
TB --- 2013-05-17 22:10:25 - TARGET_ARCH=i386
TB --- 2013-05-17 22:10:25 - TZ=UTC
TB --- 2013-05-17 22:10:25 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:25 - cd /src
TB --- 2013-05-17 22:10:25 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:25 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:25 - ERROR: failed to build world
TB --- 2013-05-17 22:10:25 - 1.56 user 2.61 system 5.22 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-pc98.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:20 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:20 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:20 - starting HEAD tinderbox run for mips/mips
TB --- 2013-05-17 22:10:20 - cleaning the object tree
TB --- 2013-05-17 22:10:20 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:24 - At svn revision 250754
TB --- 2013-05-17 22:10:25 - building world
TB --- 2013-05-17 22:10:25 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:25 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:25 - TARGET=mips
TB --- 2013-05-17 22:10:25 - TARGET_ARCH=mips
TB --- 2013-05-17 22:10:25 - TZ=UTC
TB --- 2013-05-17 22:10:25 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:25 - cd /src
TB --- 2013-05-17 22:10:25 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:25 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:25 - ERROR: failed to build world
TB --- 2013-05-17 22:10:25 - 1.48 user 2.78 system 5.27 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc64/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:25 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:25 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:25 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2013-05-17 22:10:25 - cleaning the object tree
TB --- 2013-05-17 22:10:25 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:29 - At svn revision 250754
TB --- 2013-05-17 22:10:30 - building world
TB --- 2013-05-17 22:10:30 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:30 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:30 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:30 - TARGET=powerpc
TB --- 2013-05-17 22:10:30 - TARGET_ARCH=powerpc64
TB --- 2013-05-17 22:10:30 - TZ=UTC
TB --- 2013-05-17 22:10:30 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:30 - cd /src
TB --- 2013-05-17 22:10:30 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:30 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:30 - ERROR: failed to build world
TB --- 2013-05-17 22:10:30 - 1.53 user 2.27 system 4.80 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc64-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on ia64/ia64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:20 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:20 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:20 - starting HEAD tinderbox run for ia64/ia64
TB --- 2013-05-17 22:10:20 - cleaning the object tree
TB --- 2013-05-17 22:10:20 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:24 - At svn revision 250754
TB --- 2013-05-17 22:10:25 - building world
TB --- 2013-05-17 22:10:25 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:25 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:25 - TARGET=ia64
TB --- 2013-05-17 22:10:25 - TARGET_ARCH=ia64
TB --- 2013-05-17 22:10:25 - TZ=UTC
TB --- 2013-05-17 22:10:25 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:25 - cd /src
TB --- 2013-05-17 22:10:25 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:25 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:25 - ERROR: failed to build world
TB --- 2013-05-17 22:10:25 - 1.39 user 2.83 system 5.30 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-ia64-ia64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips64/mips

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:20 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:20 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:20 - starting HEAD tinderbox run for mips64/mips
TB --- 2013-05-17 22:10:20 - cleaning the object tree
TB --- 2013-05-17 22:10:20 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:24 - At svn revision 250754
TB --- 2013-05-17 22:10:25 - building world
TB --- 2013-05-17 22:10:25 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:25 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:25 - TARGET=mips
TB --- 2013-05-17 22:10:25 - TARGET_ARCH=mips64
TB --- 2013-05-17 22:10:25 - TZ=UTC
TB --- 2013-05-17 22:10:25 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:25 - cd /src
TB --- 2013-05-17 22:10:25 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:25 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:25 - ERROR: failed to build world
TB --- 2013-05-17 22:10:25 - 1.64 user 2.61 system 5.27 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips64-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on sparc64/sparc64

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:25 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:25 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:25 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2013-05-17 22:10:25 - cleaning the object tree
TB --- 2013-05-17 22:10:25 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:29 - At svn revision 250754
TB --- 2013-05-17 22:10:30 - building world
TB --- 2013-05-17 22:10:30 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:30 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:30 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:30 - TARGET=sparc64
TB --- 2013-05-17 22:10:30 - TARGET_ARCH=sparc64
TB --- 2013-05-17 22:10:30 - TZ=UTC
TB --- 2013-05-17 22:10:30 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:30 - cd /src
TB --- 2013-05-17 22:10:30 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:30 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:30 - ERROR: failed to build world
TB --- 2013-05-17 22:10:30 - 1.53 user 2.25 system 4.79 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc/powerpc

2013-05-17 Thread FreeBSD Tinderbox
TB --- 2013-05-17 22:10:25 - tinderbox 2.10 running on freebsd-current.sentex.ca
TB --- 2013-05-17 22:10:25 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-05-17 22:10:25 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2013-05-17 22:10:25 - cleaning the object tree
TB --- 2013-05-17 22:10:25 - /usr/local/bin/svn stat /src
TB --- 2013-05-17 22:10:29 - At svn revision 250754
TB --- 2013-05-17 22:10:30 - building world
TB --- 2013-05-17 22:10:30 - CROSS_BUILD_TESTING=YES
TB --- 2013-05-17 22:10:30 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-05-17 22:10:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-05-17 22:10:30 - SRCCONF=/dev/null
TB --- 2013-05-17 22:10:30 - TARGET=powerpc
TB --- 2013-05-17 22:10:30 - TARGET_ARCH=powerpc
TB --- 2013-05-17 22:10:30 - TZ=UTC
TB --- 2013-05-17 22:10:30 - __MAKE_CONF=/dev/null
TB --- 2013-05-17 22:10:30 - cd /src
TB --- 2013-05-17 22:10:30 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
--
../../share/mk/bsd.own.mk, line 600: Could not find bsd.compiler.mk
../../share/mk/bsd.own.mk, line 609: Malformed conditional 
(${COMPILER_FEATURES:Mc++11})
Makefile.inc, line 8: if-less endif
/usr/share/mk/bsd.libnames.mk, line 95: Malformed conditional (${MK_NCP} != 
no)
/usr/share/mk/bsd.libnames.mk, line 97: if-less endif
make: fatal errors encountered -- cannot continue
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2013-05-17 22:10:30 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-05-17 22:10:30 - ERROR: failed to build world
TB --- 2013-05-17 22:10:30 - 1.59 user 2.20 system 4.77 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


FreeBSD CURRENT LSI mps timeouts

2013-05-17 Thread Outback Dingo
Im getting a ton of times outs while trying to simply compile ports on
CURRENT, on a zpool
using multipath.

FreeBSD  10.0-CURRENT FreeBSD 10.0-CURRENT #3 r250692M: Thu May 16 04:17:59
UTC 2013 root@:/usr/obj/usr/src/sys/GENERIC  amd64

mps1: mpssas_alloc_tm freezing simq
mps1: timedout cm 0xff800111d680 allocated tm 0xff80010fb9c0
(da58:mps1:0:38:0): WRITE(6). CDB: 0a 00 79 a0 e8 00 length 118784 SMID 456
completed timedout cm 0xff800111d680 ccb 0xfe01c4101000 during
recovery ioc 8048 scsi 0 state c xfer 0
(noperiph:mps1:0:38:0): SMID 44 abort TaskMID 456 status 0x4a code 0x0
count 1
(noperiph:mps1:0:38:0): SMID 44 finished recovery after aborting TaskMID
456
mps1: mpssas_free_tm releasing simq
(da58:mps1:0:38:0): WRITE(6). CDB: 0a 00 79 a0 e8 00
(da58:mps1:0:38:0): CAM status: Command timeout
(da58:mps1:0:38:0): Retrying command
mps1: mpssas_scsiio_timeout checking sc 0xff80010e5000 cm
0xff800111a0b0
(da58:mps1:0:38:0): WRITE(6). CDB: 0a 00 78 a0 f0 00 length 122880 SMID 415
command timeout cm 0xff800111a0b0 ccb 0xfe01c40fd000
mps1: mpssas_alloc_tm freezing simq
mps1: timedout cm 0xff800111a0b0 allocated tm 0xff80010fbb10
(da58:mps1:0:38:0): WRITE(6). CDB: 0a 00 78 a0 f0 00 length 122880 SMID 415
completed timedout cm 0xff800111a0b0 ccb 0xfe01c40fd000 during
recovery ioc 8048 scsi 0 state c xfer 0
(noperiph:mps1:0:38:0): SMID 45 abort TaskMID 415 status 0x4a code 0x0
count 1
(noperiph:mps1:0:38:0): SMID 45 finished recovery after aborting TaskMID 415
mps1: mpssas_free_tm releasing simq
(da58:mps1:0:38:0): WRITE(6). CDB: 0a 00 78 a0 f0 00
(da58:mps1:0:38:0): CAM status: Command timeout
(da58:mps1:0:38:0): Error 5, Retries exhausted
GEOM_MULTIPATH: Error 5, da58 in SATA_LUN06 marked FAIL
GEOM_MULTIPATH: all paths in SATA_LUN06 were marked FAIL, restore da5
GEOM_MULTIPATH: da5 is now active path in SATA_LUN06
mps1: mpssas_scsiio_timeout checking sc 0xff80010e5000 cm
0xff800112c560
(da58:mps1:0:38:0): READ(10). CDB: 28 00 17 49 ec 10 00 00 10 00 length
8192 SMID 638 command timeout cm 0xff800112c560 ccb 0xfe01c4142800
mps1: mpssas_alloc_tm freezing simq
mps1: timedout cm 0xff800112c560 allocated tm 0xff80010fa760
(da58:mps1:0:38:0): READ(10). CDB: 28 00 17 49 ec 10 00 00 10 00 length
8192 SMID 638 completed timedout cm 0xff800112c560 ccb
0xfe01c4142800 during recovery ioc 8048 scsi 0 state c
x(noperiph:mps1:0:38:0): SMID 30 abort TaskMID 638 status 0x4a code 0x0
count 1
(noperiph:mps1:0:38:0): SMID 30 finished recovery after aborting TaskMID 638
mps1: mpssas_free_tm releasing simq
(da58:mps1:0:38:0): READ(10). CDB: 28 00 17 49 ec 10 00 00 10 00
(da58:mps1:0:38:0): CAM status: Command timeout
(da58:mps1:0:38:0): Error 5, Retries exhausted
mps1: mpssas_scsiio_timeout checking sc 0xff80010e5000 cm
0xff8001133250
(da58:mps1:0:38:0): READ(10). CDB: 28 00 17 49 ee 10 00 00 10 00 length
8192 SMID 721 command timeout cm 0xff8001133250 ccb 0xfe01c40fe000
mps1: mpssas_alloc_tm freezing simq
mps1: timedout cm 0xff8001133250 allocated tm 0xff80010fb9c0
(da58:mps1:0:38:0): READ(10). CDB: 28 00 17 49 ee 10 00 00 10 00 length
8192 SMID 721 completed timedout cm 0xff8001133250 ccb
0xfe01c40fe000 during recovery ioc 8048 scsi 0 state c
x(noperiph:mps1:0:38:0): SMID 44 abort TaskMID 721 status 0x4a code 0x0
count 1
(noperiph:mps1:0:38:0): SMID 44 finished recovery after aborting TaskMID 721
mps1: mpssas_free_tm releasing simq
(da58:mps1:0:38:0): READ(10). CDB: 28 00 17 49 ee 10 00 00 10 00
(da58:mps1:0:38:0): CAM status: Command timeout
(da58:mps1:0:38:0): Error 5, Retries exhausted
mps0: mpssas_scsiio_timeout checking sc 0xff8000dae000 cm
0xff8000eb6520
(da5:mps0:0:16:0): READ(10). CDB: 28 00 17 49 ec 10 00 00 10 00 length 8192
SMID 138 command timeout cm 0xff8000eb6520 ccb 0xfe01aceed000
mps0: mpssas_alloc_tm freezing simq
mps0: timedout cm 0xff8000eb6520 allocated tm 0xff8000eacb90
mps0: mpssas_scsiio_timeout checking sc 0xff8000dae000 cm
0xff8000ed7a00
(da5:mps0:0:16:0): READ(6). CDB: 08 00 02 10 10 00 length 8192 SMID 544
command timeout cm 0xff8000ed7a00 ccb 0xfe01c400e000
mps0: queued timedout cm 0xff8000ed7a00 for processing by tm
0xff8000eacb90
mps0: mpssas_scsiio_timeout checking sc 0xff8000dae000 cm
0xff8000eb1900
(da5:mps0:0:16:0): READ(10). CDB: 28 00 17 49 f1 ae 00 00 01 00 length 512
SMID 80 command timeout cm 0xff8000eb1900 ccb 0xfe01c40c3000
mps0: queued timedout cm 0xff8000eb1900 for processing by tm
0xff8000eacb90
mps0: mpssas_scsiio_timeout checking sc 0xff8000dae000 cm
0xff8000eb8740
(da5:mps0:0:16:0): READ(10). CDB: 28 00 17 49 ee 10 00 00 10 00 length 8192
SMID 164 command timeout cm 0xff8000eb8740 ccb 0xfe01acf11000
mps0: queued timedout cm 0xff8000eb8740 for processing by tm
0xff8000eacb90
(da5:mps0:0:16:0): READ(10). CDB: 28 00 17 49 ec 10 00 00 10 00 length 8192
SMID 138 completed timedout