Re: Double free() in libc or gdb ?

2012-03-13 Thread Alexandre Martins
On Monday 12 March 2012 18:55:55 Konstantin Belousov wrote:
 On Mon, Mar 12, 2012 at 05:50:33PM +0100, Alexandre Martins wrote:
  Dear all,
  
  I'm currently having some trouble with the dynamic loader.
  
  I have the libc compilled with MALLOC_DEBUG flag to detect double free.
  When i run this piece of code (attached file) thought GDB, i have this
  assertion :
  
  Assertion failed: ((run-regs_mask[elm]  (1U  bit)) == 0), function
  arena_run_reg_dalloc, file /usr/src/lib/libc/stdlib/malloc.c, line 2543.
  
  But when i run the same binary without GDB, no assert.
  
  I'm very confused. Can you help me to debug that ?
 
 There is no attachment.  Put the source somewhere on web.

Sorry, I'll past code here :

first.c:

#include stdio.h

void print_name(void)
{
printf(I'm  __FILE__  at line %d\n, __LINE__);
}


second.c

#include stdio.h

void second_name(void)
{
printf(I'm  __FILE__  at line %d\n, __LINE__);
}

void print_name(void)
{
printf(I'm  __FILE__  at line %d\n, __LINE__);
}


main.c

#include stdio.h
#include dlfcn.h

extern void print_name(void);

int main(int argc, char *argv[])
{
void (*second_name)(void);
void *handle;
int count = 0;

while(42)
{
print_name();
handle = dlopen(second.so, RTLD_NOW);
print_name();
if (handle != NULL)
{
second_name = dlsym(handle, second_name);
if (second_name != NULL)
{
printf(second : );
second_name();
}
dlclose(handle);
}
else
fprintf(stderr, Error : %s\n, dlerror());
}
}


Compilation and execution :

gcc -shared -O0 -g second.c -o second.so
gcc -shared -O0 -g first.c -o libfirst.so
gcc -O0 -g toto.c -lfirst -L. -o test
export LD_LIBRARY_PATH=$PWD
gdb ./test


Thank you for your help
-- 
Alexandre Martins
NETASQ -- We secure IT



Re: Double free() in libc or gdb ?

2012-03-13 Thread Konstantin Belousov
On Tue, Mar 13, 2012 at 11:08:40AM +0100, Alexandre Martins wrote:
 On Monday 12 March 2012 18:55:55 Konstantin Belousov wrote:
  On Mon, Mar 12, 2012 at 05:50:33PM +0100, Alexandre Martins wrote:
   Dear all,
   
   I'm currently having some trouble with the dynamic loader.
   
   I have the libc compilled with MALLOC_DEBUG flag to detect double free.
   When i run this piece of code (attached file) thought GDB, i have this
   assertion :
   
   Assertion failed: ((run-regs_mask[elm]  (1U  bit)) == 0), function
   arena_run_reg_dalloc, file /usr/src/lib/libc/stdlib/malloc.c, line 2543.
   
   But when i run the same binary without GDB, no assert.
   
   I'm very confused. Can you help me to debug that ?
  
  There is no attachment.  Put the source somewhere on web.
 
 Sorry, I'll past code here :
 
 first.c:
 
 #include stdio.h
 
 void print_name(void)
 {
 printf(I'm  __FILE__  at line %d\n, __LINE__);
 }
 
 
 second.c
 
 #include stdio.h
 
 void second_name(void)
 {
 printf(I'm  __FILE__  at line %d\n, __LINE__);
 }
 
 void print_name(void)
 {
 printf(I'm  __FILE__  at line %d\n, __LINE__);
 }
 
 
 main.c
 
 #include stdio.h
 #include dlfcn.h
 
 extern void print_name(void);
 
 int main(int argc, char *argv[])
 {
 void (*second_name)(void);
 void *handle;
 int count = 0;
 
 while(42)
 {
 print_name();
 handle = dlopen(second.so, RTLD_NOW);
 print_name();
 if (handle != NULL)
 {
 second_name = dlsym(handle, second_name);
 if (second_name != NULL)
 {
 printf(second : );
 second_name();
 }
 dlclose(handle);
 }
 else
 fprintf(stderr, Error : %s\n, dlerror());
 }
 }
 
 
 Compilation and execution :
 
 gcc -shared -O0 -g second.c -o second.so
 gcc -shared -O0 -g first.c -o libfirst.so
 gcc -O0 -g toto.c -lfirst -L. -o test
 export LD_LIBRARY_PATH=$PWD
 gdb ./test
 
First, the libc malloc is not used inside rtld, so assertion which you
see points to somebody else. This somebody could be the stdio in your
example, or it could be gdb.

On the HEAD r232862, I indeed get the assertion, that obviously comes
from gdb. So this is a bug in gdb. Probably, try devel/gdb from ports,
I hardly can help you with gdb bug.


pgpImfzbk6lrz.pgp
Description: PGP signature


Re: Double free() in libc or gdb ?

2012-03-13 Thread Alexandre Martins
On Tuesday 13 March 2012 13:17:52 Konstantin Belousov wrote:
 On Tue, Mar 13, 2012 at 11:08:40AM +0100, Alexandre Martins wrote:
  On Monday 12 March 2012 18:55:55 Konstantin Belousov wrote:
   On Mon, Mar 12, 2012 at 05:50:33PM +0100, Alexandre Martins wrote:
Dear all,

I'm currently having some trouble with the dynamic loader.

I have the libc compilled with MALLOC_DEBUG flag to detect double
free. When i run this piece of code (attached file) thought GDB, i
have this assertion :

Assertion failed: ((run-regs_mask[elm]  (1U  bit)) == 0),
function arena_run_reg_dalloc, file
/usr/src/lib/libc/stdlib/malloc.c, line 2543.

But when i run the same binary without GDB, no assert.

I'm very confused. Can you help me to debug that ?
   
   There is no attachment.  Put the source somewhere on web.
  
  Sorry, I'll past code here :
  
  first.c:
  
  #include stdio.h
  
  void print_name(void)
  {
  
  printf(I'm  __FILE__  at line %d\n, __LINE__);
  
  }
  
  
  second.c
  
  #include stdio.h
  
  void second_name(void)
  {
  
  printf(I'm  __FILE__  at line %d\n, __LINE__);
  
  }
  
  void print_name(void)
  {
  
  printf(I'm  __FILE__  at line %d\n, __LINE__);
  
  }
  
  
  main.c
  
  #include stdio.h
  #include dlfcn.h
  
  extern void print_name(void);
  
  int main(int argc, char *argv[])
  {
  
  void (*second_name)(void);
  void *handle;
  int count = 0;
  
  while(42)
  {
  
  print_name();
  handle = dlopen(second.so, RTLD_NOW);
  print_name();
  if (handle != NULL)
  {
  
  second_name = dlsym(handle, second_name);
  if (second_name != NULL)
  {
  
  printf(second : );
  second_name();
  
  }
  dlclose(handle);
  
  }
  else
  
  fprintf(stderr, Error : %s\n, dlerror());
  
  }
  
  }
  
  
  Compilation and execution :
  
  gcc -shared -O0 -g second.c -o second.so
  gcc -shared -O0 -g first.c -o libfirst.so
  gcc -O0 -g toto.c -lfirst -L. -o test
  export LD_LIBRARY_PATH=$PWD
  gdb ./test
 
 First, the libc malloc is not used inside rtld, so assertion which you
 see points to somebody else. This somebody could be the stdio in your
 example, or it could be gdb.
 
 On the HEAD r232862, I indeed get the assertion, that obviously comes
 from gdb. So this is a bug in gdb. Probably, try devel/gdb from ports,
 I hardly can help you with gdb bug.

Dear,

Thank for your response.

Two other thing
 - The process consume memory, but there is no allocation in my code. Maybe a 
leak in the libc ?
 - My kernel have crashed after some minute of leak (i have removed printf for 
better perf on the loop). Maybe unrelated, but ...

Regards,

-- 
Alexandre Martins
NETASQ -- We secure IT



Re: Double free() in libc or gdb ?

2012-03-13 Thread jb
Alexandre Martins alexandre.martins at netasq.com writes:

 ... 
 first.c:
 ...
 second.c
 ...
 main.c
 ...
 while(42)

How do you exit that loop ?

 ...
 Compilation and execution :
 
 gcc -shared -O0 -g second.c -o second.so
 gcc -shared -O0 -g first.c -o libfirst.so
 gcc -O0 -g toto.c -lfirst -L. -o test
 export LD_LIBRARY_PATH=$PWD
 gdb ./test
 ...

What is your toto.c (source code) ?
What about your main.c in compilation ?

jb
   





___
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: Improved Intel Turbo Boost status/control

2012-03-13 Thread Ian Lepore
On Mon, 2012-03-12 at 22:52 +0200, Alexander Motin wrote:
 On 03/12/12 22:45, Ian Lepore wrote:
  On Mon, 2012-03-12 at 21:15 +0200, Alexander Motin wrote:
  I'd like to note that recent r232793 change to cpufreq(4) in HEAD opened
  simple access to the  Intel Turbo Boost status/control. I've found that
  at least two of my desktop systems (based Nehalem and SandyBridge Core
  i7s) with enabled Intel Turbo Boost in BIOS it is not use it by default,
  unless powerd is enabled. And before this change it was difficult to
  detect/fix.
 
  ACPI reports extra performance level with frequency 1MHz above the
  nominal to control Intel Turbo Boost operation. It is not a bug, but
  feature:
  dev.cpu.0.freq_levels: 2934/106000 2933/95000 2800/82000 ...
  In this case value 2933 means 2.93GHz, but 2934 means 3.2-3.6GHz.
 
  After boot with default settings I see:
  dev.cpu.0.freq: 2933
  , that means Turbo Boost is disabled.
 
  Enabling powerd or just adding to rc.conf
  performance_cpu_freq=HIGH
  enables Turbo Boost and adds extra 10-20% to the system performance.
 
  Turbo Boost operation can be monitored in run-time via the PMC with
  command that prints number or really executed cycles per CPU core:
  pmcstat -s unhalted-core-cycles -w 1
 
 
  The r232793 patch applies cleanly to 8-stable and builds just fine, but
  after install/reboot I don't see a change in the freq_levels
 
   revolution  sysctl dev.cpu.0
   dev.cpu.0.%desc: ACPI CPU
   dev.cpu.0.%driver: cpu
   dev.cpu.0.%location: handle=\_PR_.P001
   dev.cpu.0.%pnpinfo: _HID=none _UID=0
   dev.cpu.0.%parent: acpi0
   dev.cpu.0.coretemp.delta: 70
   dev.cpu.0.coretemp.resolution: 1
   dev.cpu.0.coretemp.tjmax: 101.0C
   dev.cpu.0.coretemp.throttle_log: 0
   dev.cpu.0.temperature: 31.0C
   dev.cpu.0.freq: 
   dev.cpu.0.freq_levels: /13 3200/117000 3067/105000
   2933/94000 2800/85000 2667/76000 2533/68000 2400/61000
   2267/54000 2133/48000 2000/43000 1867/39000 1733/35000
   1600/32000 1400/28000 1200/24000 1000/2 800/16000 600/12000
   400/8000 200/4000
   dev.cpu.0.cx_supported: C1/32 C2/96 C3/128
   dev.cpu.0.cx_lowest: C1
   dev.cpu.0.cx_usage: 100.00% 0.00% 0.00% last 657us
   revolution
 
 
  I would have expected a 3334 entry to appear after the reboot.  Is this
  expected (like are there other required changes missing in 8-stable), or
  do I have something misconfigured?  (I can post more info, but don't
  want to spam the list if the answer is going to be this shouldn't work
  in 8.x).
 
 I don't know any reason why it should not work on 8.x. It is ACPI BIOS 
 duty to report set of frequencies. This patch just makes system to 
 follow it more close. Make sure your CPU supports Turbo Boost and it is 
 enabled in BIOS. On my system disabling Turbo Boost in BIOS removes the 
 frequency from the list.
 

It was indeed a bios config thing (I had it enabled, but then a side
effect of one of my overclock settings caused the bios to quietly
disable it).  I got that straightened out, and now it's working great.
Setting dev.cpu.0.freq=3334 cuts about 90 seconds off my standard
workflow-benchmark (that's 90 seconds off a 20 minute compile/build
process, a noticible improvement).

I found that setting performance_cpu_freq=HIGH doesn't work on my
desktop system, I guess because devd never gets any AC adapter events
that trigger running the power_profile script.  I enabled it manually by
adding these lines to my /etc/sysctl.conf:

  hw.acpi.cpu.cx_lowest=C2
  dev.cpu.0.freq=3334

It would be nice to come up with a way to automatically enable this for
desktop users.  If not fully automatic, hopefully require no more than a
simple =YES knob in rc.conf.

Thanks for this work, Alexander!  I had assumed I was already getting
turbo mode benefits automatically just because my chip supports it.
It's a nice bonus to suddenly get another 7% improvement on my benchmark
when I thought I was already tweaked for max performance.

-- Ian


___
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: Double free() in libc or gdb ?

2012-03-13 Thread Alexandre Martins
Dear,

On Tuesday 13 March 2012 15:18:31 jb wrote:
 Alexandre Martins alexandre.martins at netasq.com writes:
  ...
  first.c:
  ...
  second.c
  ...
  main.c
  ...
  
  while(42)
 
 How do you exit that loop ?

It's just a sample. There is no exit here, you have to kill the process.

 
  ...
  Compilation and execution :
  
  gcc -shared -O0 -g second.c -o second.so
  gcc -shared -O0 -g first.c -o libfirst.so
  gcc -O0 -g toto.c -lfirst -L. -o test
  export LD_LIBRARY_PATH=$PWD
  gdb ./test
  ...
 
 What is your toto.c (source code) ?
 What about your main.c in compilation ?

Yes, you're right. toto.c is the main.c file.

 
 jb
 
 
 
 
 
 
 ___
 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


To Konstantin Belousov :

The GDB v7.3 solved the assert. but is still memleak.

Regards
-- 
Alexandre Martins
NETASQ -- We secure IT



[head tinderbox] failure on i386/i386

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 14:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 14:50:00 - starting HEAD tinderbox run for i386/i386
TB --- 2012-03-13 14:50:00 - cleaning the object tree
TB --- 2012-03-13 14:50:00 - cvsupping the source tree
TB --- 2012-03-13 14:50:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2012-03-13 14:50:17 - building world
TB --- 2012-03-13 14:50:17 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 14:50:17 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 14:50:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 14:50:17 - SRCCONF=/dev/null
TB --- 2012-03-13 14:50:17 - TARGET=i386
TB --- 2012-03-13 14:50:17 - TARGET_ARCH=i386
TB --- 2012-03-13 14:50:17 - TZ=UTC
TB --- 2012-03-13 14:50:17 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 14:50:17 - cd /src
TB --- 2012-03-13 14:50:17 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 14:50:17 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99  
/src/lib/libbz2/../../contrib/bzip2/bzlib.c 
/src/lib/libbz2/../../contrib/bzip2/blocksort.c 
/src/lib/libbz2/../../contrib/bzip2/compress.c 
/src/lib/libbz2/../../contrib/bzip2/crctable.c 
/src/lib/libbz2/../../contrib/bzip2/decompress.c 
/src/lib/libbz2/../../contrib/bzip2/huffman.c 
/src/lib/libbz2/../../contrib/bzip2/randtable.c
cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99 
-fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -c 
/src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
cc1: warnings being treated as errors
In file included from /obj/i386.i386/src/tmp/usr/include/ctype.h:83,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no previous 
prototype for '__sbmaskrune_l'
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no previous 
prototype for '__sbistype_l'
*** Error code 1

Stop in /src/lib/libbz2.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 15:10:49 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 15:10:49 - ERROR: failed to build world
TB --- 2012-03-13 15:10:49 - 981.61 user 191.60 system 1249.30 real


http://tinderbox.freebsd.org/tinderbox-head-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 i386/pc98

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 14:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 14:50:00 - starting HEAD tinderbox run for i386/pc98
TB --- 2012-03-13 14:50:00 - cleaning the object tree
TB --- 2012-03-13 14:50:00 - cvsupping the source tree
TB --- 2012-03-13 14:50:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2012-03-13 14:50:17 - building world
TB --- 2012-03-13 14:50:17 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 14:50:17 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 14:50:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 14:50:17 - SRCCONF=/dev/null
TB --- 2012-03-13 14:50:17 - TARGET=pc98
TB --- 2012-03-13 14:50:17 - TARGET_ARCH=i386
TB --- 2012-03-13 14:50:17 - TZ=UTC
TB --- 2012-03-13 14:50:17 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 14:50:17 - cd /src
TB --- 2012-03-13 14:50:17 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 14:50:17 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99  
/src/lib/libbz2/../../contrib/bzip2/bzlib.c 
/src/lib/libbz2/../../contrib/bzip2/blocksort.c 
/src/lib/libbz2/../../contrib/bzip2/compress.c 
/src/lib/libbz2/../../contrib/bzip2/crctable.c 
/src/lib/libbz2/../../contrib/bzip2/decompress.c 
/src/lib/libbz2/../../contrib/bzip2/huffman.c 
/src/lib/libbz2/../../contrib/bzip2/randtable.c
cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99 
-fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -c 
/src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
cc1: warnings being treated as errors
In file included from /obj/pc98.i386/src/tmp/usr/include/ctype.h:83,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no previous 
prototype for '__sbmaskrune_l'
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no previous 
prototype for '__sbistype_l'
*** Error code 1

Stop in /src/lib/libbz2.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 15:10:50 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 15:10:50 - ERROR: failed to build world
TB --- 2012-03-13 15:10:50 - 979.78 user 192.99 system 1250.77 real


http://tinderbox.freebsd.org/tinderbox-head-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 amd64/amd64

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 14:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 14:50:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2012-03-13 14:50:00 - cleaning the object tree
TB --- 2012-03-13 14:50:00 - cvsupping the source tree
TB --- 2012-03-13 14:50:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2012-03-13 14:50:17 - building world
TB --- 2012-03-13 14:50:17 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 14:50:17 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 14:50:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 14:50:17 - SRCCONF=/dev/null
TB --- 2012-03-13 14:50:17 - TARGET=amd64
TB --- 2012-03-13 14:50:17 - TARGET_ARCH=amd64
TB --- 2012-03-13 14:50:17 - TZ=UTC
TB --- 2012-03-13 14:50:17 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 14:50:17 - cd /src
TB --- 2012-03-13 14:50:17 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 14:50:17 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99  
/src/lib/libbz2/../../contrib/bzip2/bzlib.c 
/src/lib/libbz2/../../contrib/bzip2/blocksort.c 
/src/lib/libbz2/../../contrib/bzip2/compress.c 
/src/lib/libbz2/../../contrib/bzip2/crctable.c 
/src/lib/libbz2/../../contrib/bzip2/decompress.c 
/src/lib/libbz2/../../contrib/bzip2/huffman.c 
/src/lib/libbz2/../../contrib/bzip2/randtable.c
cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99 
-fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -c 
/src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
cc1: warnings being treated as errors
In file included from /obj/amd64.amd64/src/tmp/usr/include/ctype.h:83,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no previous 
prototype for '__sbmaskrune_l'
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no previous 
prototype for '__sbistype_l'
*** Error code 1

Stop in /src/lib/libbz2.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 15:11:51 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 15:11:51 - ERROR: failed to build world
TB --- 2012-03-13 15:11:51 - 1030.86 user 196.65 system 1311.13 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 14:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 14:50:00 - starting HEAD tinderbox run for arm/arm
TB --- 2012-03-13 14:50:00 - cleaning the object tree
TB --- 2012-03-13 14:50:00 - cvsupping the source tree
TB --- 2012-03-13 14:50:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2012-03-13 14:55:23 - building world
TB --- 2012-03-13 14:55:23 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 14:55:23 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 14:55:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 14:55:23 - SRCCONF=/dev/null
TB --- 2012-03-13 14:55:23 - TARGET=arm
TB --- 2012-03-13 14:55:23 - TARGET_ARCH=arm
TB --- 2012-03-13 14:55:23 - TZ=UTC
TB --- 2012-03-13 14:55:23 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 14:55:23 - cd /src
TB --- 2012-03-13 14:55:23 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 14:55:24 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99  
/src/lib/libbz2/../../contrib/bzip2/bzlib.c 
/src/lib/libbz2/../../contrib/bzip2/blocksort.c 
/src/lib/libbz2/../../contrib/bzip2/compress.c 
/src/lib/libbz2/../../contrib/bzip2/crctable.c 
/src/lib/libbz2/../../contrib/bzip2/decompress.c 
/src/lib/libbz2/../../contrib/bzip2/huffman.c 
/src/lib/libbz2/../../contrib/bzip2/randtable.c
cc  -O -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99 -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
cc1: warnings being treated as errors
In file included from /obj/arm.arm/src/tmp/usr/include/ctype.h:83,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no previous 
prototype for '__sbmaskrune_l'
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no previous 
prototype for '__sbistype_l'
*** Error code 1

Stop in /src/lib/libbz2.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 15:11:46 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 15:11:46 - ERROR: failed to build world
TB --- 2012-03-13 15:11:46 - 734.55 user 175.35 system 1306.29 real


http://tinderbox.freebsd.org/tinderbox-head-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 mips/mips

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 15:10:51 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 15:10:51 - starting HEAD tinderbox run for mips/mips
TB --- 2012-03-13 15:10:51 - cleaning the object tree
TB --- 2012-03-13 15:10:51 - cvsupping the source tree
TB --- 2012-03-13 15:10:51 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2012-03-13 15:11:03 - building world
TB --- 2012-03-13 15:11:03 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 15:11:03 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 15:11:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 15:11:03 - SRCCONF=/dev/null
TB --- 2012-03-13 15:11:03 - TARGET=mips
TB --- 2012-03-13 15:11:03 - TARGET_ARCH=mips
TB --- 2012-03-13 15:11:03 - TZ=UTC
TB --- 2012-03-13 15:11:03 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 15:11:03 - cd /src
TB --- 2012-03-13 15:11:03 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 15:11:03 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99  
/src/lib/libbz2/../../contrib/bzip2/bzlib.c 
/src/lib/libbz2/../../contrib/bzip2/blocksort.c 
/src/lib/libbz2/../../contrib/bzip2/compress.c 
/src/lib/libbz2/../../contrib/bzip2/crctable.c 
/src/lib/libbz2/../../contrib/bzip2/decompress.c 
/src/lib/libbz2/../../contrib/bzip2/huffman.c 
/src/lib/libbz2/../../contrib/bzip2/randtable.c
cc  -O -pipe -G0  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
cc1: warnings being treated as errors
In file included from /obj/mips.mipsel/src/tmp/usr/include/ctype.h:83,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no previous 
prototype for '__sbmaskrune_l'
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no previous 
prototype for '__sbistype_l'
*** Error code 1

Stop in /src/lib/libbz2.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 15:27:31 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 15:27:31 - ERROR: failed to build world
TB --- 2012-03-13 15:27:31 - 737.71 user 162.41 system 1000.23 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 15:10:49 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 15:10:49 - starting HEAD tinderbox run for ia64/ia64
TB --- 2012-03-13 15:10:49 - cleaning the object tree
TB --- 2012-03-13 15:10:49 - cvsupping the source tree
TB --- 2012-03-13 15:10:49 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/ia64/ia64/supfile
TB --- 2012-03-13 15:11:02 - building world
TB --- 2012-03-13 15:11:02 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 15:11:02 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 15:11:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 15:11:02 - SRCCONF=/dev/null
TB --- 2012-03-13 15:11:02 - TARGET=ia64
TB --- 2012-03-13 15:11:02 - TARGET_ARCH=ia64
TB --- 2012-03-13 15:11:02 - TZ=UTC
TB --- 2012-03-13 15:11:02 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 15:11:02 - cd /src
TB --- 2012-03-13 15:11:02 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 15:11:03 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99  
/src/lib/libbz2/../../contrib/bzip2/bzlib.c 
/src/lib/libbz2/../../contrib/bzip2/blocksort.c 
/src/lib/libbz2/../../contrib/bzip2/compress.c 
/src/lib/libbz2/../../contrib/bzip2/crctable.c 
/src/lib/libbz2/../../contrib/bzip2/decompress.c 
/src/lib/libbz2/../../contrib/bzip2/huffman.c 
/src/lib/libbz2/../../contrib/bzip2/randtable.c
cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
cc1: warnings being treated as errors
In file included from /obj/ia64.ia64/src/tmp/usr/include/ctype.h:83,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no previous 
prototype for '__sbmaskrune_l'
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no previous 
prototype for '__sbistype_l'
*** Error code 1

Stop in /src/lib/libbz2.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 15:29:49 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 15:29:49 - ERROR: failed to build world
TB --- 2012-03-13 15:29:49 - 887.02 user 177.92 system 1139.41 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 15:11:46 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 15:11:46 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2012-03-13 15:11:46 - cleaning the object tree
TB --- 2012-03-13 15:11:46 - cvsupping the source tree
TB --- 2012-03-13 15:11:46 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2012-03-13 15:11:59 - building world
TB --- 2012-03-13 15:11:59 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 15:11:59 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 15:11:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 15:11:59 - SRCCONF=/dev/null
TB --- 2012-03-13 15:11:59 - TARGET=powerpc
TB --- 2012-03-13 15:11:59 - TARGET_ARCH=powerpc
TB --- 2012-03-13 15:11:59 - TZ=UTC
TB --- 2012-03-13 15:11:59 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 15:11:59 - cd /src
TB --- 2012-03-13 15:11:59 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 15:12:00 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99  
/src/lib/libbz2/../../contrib/bzip2/bzlib.c 
/src/lib/libbz2/../../contrib/bzip2/blocksort.c 
/src/lib/libbz2/../../contrib/bzip2/compress.c 
/src/lib/libbz2/../../contrib/bzip2/crctable.c 
/src/lib/libbz2/../../contrib/bzip2/decompress.c 
/src/lib/libbz2/../../contrib/bzip2/huffman.c 
/src/lib/libbz2/../../contrib/bzip2/randtable.c
cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99 
-fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -c 
/src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
cc1: warnings being treated as errors
In file included from /obj/powerpc.powerpc/src/tmp/usr/include/ctype.h:83,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no 
previous prototype for '__sbmaskrune_l'
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no 
previous prototype for '__sbistype_l'
*** Error code 1

Stop in /src/lib/libbz2.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 15:32:16 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 15:32:16 - ERROR: failed to build world
TB --- 2012-03-13 15:32:16 - 959.02 user 176.75 system 1229.77 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 15:11:51 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 15:11:51 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2012-03-13 15:11:51 - cleaning the object tree
TB --- 2012-03-13 15:11:51 - cvsupping the source tree
TB --- 2012-03-13 15:11:51 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2012-03-13 15:12:03 - building world
TB --- 2012-03-13 15:12:03 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 15:12:03 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 15:12:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 15:12:03 - SRCCONF=/dev/null
TB --- 2012-03-13 15:12:03 - TARGET=powerpc
TB --- 2012-03-13 15:12:03 - TARGET_ARCH=powerpc64
TB --- 2012-03-13 15:12:03 - TZ=UTC
TB --- 2012-03-13 15:12:03 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 15:12:03 - cd /src
TB --- 2012-03-13 15:12:03 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 15:12:03 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99  
/src/lib/libbz2/../../contrib/bzip2/bzlib.c 
/src/lib/libbz2/../../contrib/bzip2/blocksort.c 
/src/lib/libbz2/../../contrib/bzip2/compress.c 
/src/lib/libbz2/../../contrib/bzip2/crctable.c 
/src/lib/libbz2/../../contrib/bzip2/decompress.c 
/src/lib/libbz2/../../contrib/bzip2/huffman.c 
/src/lib/libbz2/../../contrib/bzip2/randtable.c
cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99 
-fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -c 
/src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
cc1: warnings being treated as errors
In file included from /obj/powerpc.powerpc64/src/tmp/usr/include/ctype.h:83,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no 
previous prototype for '__sbmaskrune_l'
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no 
previous prototype for '__sbistype_l'
*** Error code 1

Stop in /src/lib/libbz2.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 15:32:50 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 15:32:50 - ERROR: failed to build world
TB --- 2012-03-13 15:32:50 - 983.87 user 183.65 system 1259.32 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 15:27:31 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 15:27:31 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2012-03-13 15:27:31 - cleaning the object tree
TB --- 2012-03-13 15:27:31 - cvsupping the source tree
TB --- 2012-03-13 15:27:31 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/sparc64/sparc64/supfile
TB --- 2012-03-13 15:27:44 - building world
TB --- 2012-03-13 15:27:44 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 15:27:44 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 15:27:44 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 15:27:44 - SRCCONF=/dev/null
TB --- 2012-03-13 15:27:44 - TARGET=sparc64
TB --- 2012-03-13 15:27:44 - TARGET_ARCH=sparc64
TB --- 2012-03-13 15:27:44 - TZ=UTC
TB --- 2012-03-13 15:27:44 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 15:27:44 - cd /src
TB --- 2012-03-13 15:27:44 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 15:27:45 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99  
/src/lib/libbz2/../../contrib/bzip2/bzlib.c 
/src/lib/libbz2/../../contrib/bzip2/blocksort.c 
/src/lib/libbz2/../../contrib/bzip2/compress.c 
/src/lib/libbz2/../../contrib/bzip2/crctable.c 
/src/lib/libbz2/../../contrib/bzip2/decompress.c 
/src/lib/libbz2/../../contrib/bzip2/huffman.c 
/src/lib/libbz2/../../contrib/bzip2/randtable.c
cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99 
-fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -c 
/src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
cc1: warnings being treated as errors
In file included from /obj/sparc64.sparc64/src/tmp/usr/include/ctype.h:83,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
/obj/sparc64.sparc64/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no 
previous prototype for '__sbmaskrune_l'
/obj/sparc64.sparc64/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no 
previous prototype for '__sbistype_l'
*** Error code 1

Stop in /src/lib/libbz2.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 15:42:41 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 15:42:41 - ERROR: failed to build world
TB --- 2012-03-13 15:42:41 - 749.70 user 140.24 system 909.62 real


http://tinderbox.freebsd.org/tinderbox-head-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: [head tinderbox] failure on powerpc/powerpc

2012-03-13 Thread Super Bisquit
On Tue, Mar 13, 2012 at 11:32 AM, FreeBSD Tinderbox
tinder...@freebsd.orgwrote:

 TB --- 2012-03-13 15:11:46 - tinderbox 2.9 running on
 freebsd-current.sentex.ca
 TB --- 2012-03-13 15:11:46 - starting HEAD tinderbox run for
 powerpc/powerpc
 TB --- 2012-03-13 15:11:46 - cleaning the object tree
 TB --- 2012-03-13 15:11:46 - cvsupping the source tree
 TB --- 2012-03-13 15:11:46 - /usr/bin/csup -z -r 3 -g -L 1 -h
 cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile
 TB --- 2012-03-13 15:11:59 - building world
 TB --- 2012-03-13 15:11:59 - CROSS_BUILD_TESTING=YES
 TB --- 2012-03-13 15:11:59 - MAKEOBJDIRPREFIX=/obj
 TB --- 2012-03-13 15:11:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
 TB --- 2012-03-13 15:11:59 - SRCCONF=/dev/null
 TB --- 2012-03-13 15:11:59 - TARGET=powerpc
 TB --- 2012-03-13 15:11:59 - TARGET_ARCH=powerpc
 TB --- 2012-03-13 15:11:59 - TZ=UTC
 TB --- 2012-03-13 15:11:59 - __MAKE_CONF=/dev/null
 TB --- 2012-03-13 15:11:59 - cd /src
 TB --- 2012-03-13 15:11:59 - /usr/bin/make -B buildworld
  World build started on Tue Mar 13 15:12:00 UTC 2012
  Rebuilding the temporary build tree
  stage 1.1: legacy release compatibility shims
  stage 1.2: bootstrap tools
  stage 2.1: cleaning up the object tree
  stage 2.2: rebuilding the object tree
  stage 2.3: build tools
  stage 3: cross tools
  stage 4.1: building includes
  stage 4.2: building libraries
 [...]
 mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99
  /src/lib/libbz2/../../contrib/bzip2/bzlib.c
 /src/lib/libbz2/../../contrib/bzip2/blocksort.c
 /src/lib/libbz2/../../contrib/bzip2/compress.c
 /src/lib/libbz2/../../contrib/bzip2/crctable.c
 /src/lib/libbz2/../../contrib/bzip2/decompress.c
 /src/lib/libbz2/../../contrib/bzip2/huffman.c
 /src/lib/libbz2/../../contrib/bzip2/randtable.c
 cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99
 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes
 -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c
 /src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
 cc1: warnings being treated as errors
 In file included from /obj/powerpc.powerpc/src/tmp/usr/include/ctype.h:83,
 from
 /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
 /obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no
 previous prototype for '__sbmaskrune_l'
 /obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no
 previous prototype for '__sbistype_l'
 *** Error code 1

 Stop in /src/lib/libbz2.
 *** Error code 1

 Stop in /src.
 *** Error code 1

 Stop in /src.
 *** Error code 1

 Stop in /src.
 *** Error code 1

 Stop in /src.
 TB --- 2012-03-13 15:32:16 - WARNING: /usr/bin/make returned exit code  1
 TB --- 2012-03-13 15:32:16 - ERROR: failed to build world
 TB --- 2012-03-13 15:32:16 - 959.02 user 176.75 system 1229.77 real


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


Again, the old questions:
Why isn't a build world done on native architecture?
Why is it never asked, Could/would someone submit a build world log to be
compared to the output of tinderbox for your architecture?
Considering that the POWER(PC) architecture is everywhere- at least in
consoles, why isn't there more interest?
___
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: [head tinderbox] failure on powerpc/powerpc

2012-03-13 Thread Garrett Cooper
On Tue, Mar 13, 2012 at 8:45 AM, Super Bisquit superbisq...@gmail.com wrote:
 On Tue, Mar 13, 2012 at 11:32 AM, FreeBSD Tinderbox
 tinder...@freebsd.orgwrote:

 TB --- 2012-03-13 15:11:46 - tinderbox 2.9 running on
 freebsd-current.sentex.ca
 TB --- 2012-03-13 15:11:46 - starting HEAD tinderbox run for
 powerpc/powerpc
 TB --- 2012-03-13 15:11:46 - cleaning the object tree
 TB --- 2012-03-13 15:11:46 - cvsupping the source tree
 TB --- 2012-03-13 15:11:46 - /usr/bin/csup -z -r 3 -g -L 1 -h
 cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile
 TB --- 2012-03-13 15:11:59 - building world
 TB --- 2012-03-13 15:11:59 - CROSS_BUILD_TESTING=YES
 TB --- 2012-03-13 15:11:59 - MAKEOBJDIRPREFIX=/obj
 TB --- 2012-03-13 15:11:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
 TB --- 2012-03-13 15:11:59 - SRCCONF=/dev/null
 TB --- 2012-03-13 15:11:59 - TARGET=powerpc
 TB --- 2012-03-13 15:11:59 - TARGET_ARCH=powerpc
 TB --- 2012-03-13 15:11:59 - TZ=UTC
 TB --- 2012-03-13 15:11:59 - __MAKE_CONF=/dev/null
 TB --- 2012-03-13 15:11:59 - cd /src
 TB --- 2012-03-13 15:11:59 - /usr/bin/make -B buildworld
  World build started on Tue Mar 13 15:12:00 UTC 2012
  Rebuilding the temporary build tree
  stage 1.1: legacy release compatibility shims
  stage 1.2: bootstrap tools
  stage 2.1: cleaning up the object tree
  stage 2.2: rebuilding the object tree
  stage 2.3: build tools
  stage 3: cross tools
  stage 4.1: building includes
  stage 4.2: building libraries
 [...]
 mkdep -f .depend -a    -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99
  /src/lib/libbz2/../../contrib/bzip2/bzlib.c
 /src/lib/libbz2/../../contrib/bzip2/blocksort.c
 /src/lib/libbz2/../../contrib/bzip2/compress.c
 /src/lib/libbz2/../../contrib/bzip2/crctable.c
 /src/lib/libbz2/../../contrib/bzip2/decompress.c
 /src/lib/libbz2/../../contrib/bzip2/huffman.c
 /src/lib/libbz2/../../contrib/bzip2/randtable.c
 cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99
 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes
 -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c
 /src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
 cc1: warnings being treated as errors
 In file included from /obj/powerpc.powerpc/src/tmp/usr/include/ctype.h:83,
                 from
 /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
                 from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
 /obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:93: warning: no
 previous prototype for '__sbmaskrune_l'
 /obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:102: warning: no
 previous prototype for '__sbistype_l'
 *** Error code 1

 Stop in /src/lib/libbz2.
 *** Error code 1

 Stop in /src.
 *** Error code 1

 Stop in /src.
 *** Error code 1

 Stop in /src.
 *** Error code 1

 Stop in /src.
 TB --- 2012-03-13 15:32:16 - WARNING: /usr/bin/make returned exit code  1
 TB --- 2012-03-13 15:32:16 - ERROR: failed to build world
 TB --- 2012-03-13 15:32:16 - 959.02 user 176.75 system 1229.77 real

 Again, the old questions:
 Why isn't a build world done on native architecture?
 Why is it never asked, Could/would someone submit a build world log to be
 compared to the output of tinderbox for your architecture?
 Considering that the POWER(PC) architecture is everywhere- at least in
 consoles, why isn't there more interest?

(obvious answer incoming)
Because Intel has the Lion's share of the computing architecture
marketplace and because powerpc is still a secondary architecture to
Intel...?

Again, I'm not sure why you're posing this question to this thread
because it's not really relevant to the issue that needs to be
resolved (in this case it's missing symbols related to xlocale stuff,
and someone probably forgot to run make tinderbox/make universe).

The FreeBSD build system supports cross-building on several
architectures, so I can build ppc on Intel, Intel on ppc, mips n32 on
ppc, etc. If this didn't work, FreeBSD would be in a world of pain.

Thanks,
-Garrett
___
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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 15:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 15:50:00 - starting HEAD tinderbox run for arm/arm
TB --- 2012-03-13 15:50:00 - cleaning the object tree
TB --- 2012-03-13 15:50:02 - cvsupping the source tree
TB --- 2012-03-13 15:50:02 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2012-03-13 15:50:17 - building world
TB --- 2012-03-13 15:50:17 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 15:50:17 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 15:50:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 15:50:17 - SRCCONF=/dev/null
TB --- 2012-03-13 15:50:17 - TARGET=arm
TB --- 2012-03-13 15:50:17 - TARGET_ARCH=arm
TB --- 2012-03-13 15:50:17 - TZ=UTC
TB --- 2012-03-13 15:50:17 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 15:50:17 - cd /src
TB --- 2012-03-13 15:50:17 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 15:50:17 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/arm.arm/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
lib_keyname.c -o lib_keyname.o
cc  -O -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/arm.arm/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
names.c -o names.o
cc  -O -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/arm.arm/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/arm.arm/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 16:06:27 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 16:06:27 - ERROR: failed to build world
TB --- 2012-03-13 16:06:27 - 750.25 user 176.34 system 987.47 real


http://tinderbox.freebsd.org/tinderbox-head-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/pc98

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 15:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 15:50:00 - starting HEAD tinderbox run for i386/pc98
TB --- 2012-03-13 15:50:00 - cleaning the object tree
TB --- 2012-03-13 15:50:03 - cvsupping the source tree
TB --- 2012-03-13 15:50:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2012-03-13 15:50:17 - building world
TB --- 2012-03-13 15:50:17 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 15:50:17 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 15:50:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 15:50:17 - SRCCONF=/dev/null
TB --- 2012-03-13 15:50:17 - TARGET=pc98
TB --- 2012-03-13 15:50:17 - TARGET_ARCH=i386
TB --- 2012-03-13 15:50:17 - TZ=UTC
TB --- 2012-03-13 15:50:17 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 15:50:17 - cd /src
TB --- 2012-03-13 15:50:17 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 15:50:17 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/pc98.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/pc98.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/pc98.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/pc98.i386/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 16:11:45 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 16:11:45 - ERROR: failed to build world
TB --- 2012-03-13 16:11:45 - 1019.42 user 194.29 system 1304.98 real


http://tinderbox.freebsd.org/tinderbox-head-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 amd64/amd64

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 15:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 15:50:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2012-03-13 15:50:00 - cleaning the object tree
TB --- 2012-03-13 15:50:02 - cvsupping the source tree
TB --- 2012-03-13 15:50:02 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2012-03-13 15:50:17 - building world
TB --- 2012-03-13 15:50:17 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 15:50:17 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 15:50:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 15:50:17 - SRCCONF=/dev/null
TB --- 2012-03-13 15:50:17 - TARGET=amd64
TB --- 2012-03-13 15:50:17 - TARGET_ARCH=amd64
TB --- 2012-03-13 15:50:17 - TZ=UTC
TB --- 2012-03-13 15:50:17 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 15:50:17 - cd /src
TB --- 2012-03-13 15:50:17 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 15:50:17 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/amd64.amd64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/amd64.amd64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/amd64.amd64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/amd64.amd64/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 16:12:50 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 16:12:50 - ERROR: failed to build world
TB --- 2012-03-13 16:12:50 - 1066.21 user 202.77 system 1369.75 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 15:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 15:50:00 - starting HEAD tinderbox run for i386/i386
TB --- 2012-03-13 15:50:00 - cleaning the object tree
TB --- 2012-03-13 15:50:02 - cvsupping the source tree
TB --- 2012-03-13 15:50:02 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2012-03-13 15:55:31 - building world
TB --- 2012-03-13 15:55:31 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 15:55:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 15:55:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 15:55:31 - SRCCONF=/dev/null
TB --- 2012-03-13 15:55:31 - TARGET=i386
TB --- 2012-03-13 15:55:31 - TARGET_ARCH=i386
TB --- 2012-03-13 15:55:31 - TZ=UTC
TB --- 2012-03-13 15:55:31 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 15:55:31 - cd /src
TB --- 2012-03-13 15:55:31 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 15:55:31 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/i386.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/i386.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/i386.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/i386.i386/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 16:17:26 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 16:17:26 - ERROR: failed to build world
TB --- 2012-03-13 16:17:26 - 1025.34 user 193.27 system 1646.60 real


http://tinderbox.freebsd.org/tinderbox-head-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 ia64/ia64

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 16:06:28 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 16:06:28 - starting HEAD tinderbox run for ia64/ia64
TB --- 2012-03-13 16:06:28 - cleaning the object tree
TB --- 2012-03-13 16:06:29 - cvsupping the source tree
TB --- 2012-03-13 16:06:29 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/ia64/ia64/supfile
TB --- 2012-03-13 16:07:13 - building world
TB --- 2012-03-13 16:07:13 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 16:07:13 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 16:07:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 16:07:13 - SRCCONF=/dev/null
TB --- 2012-03-13 16:07:13 - TARGET=ia64
TB --- 2012-03-13 16:07:13 - TARGET_ARCH=ia64
TB --- 2012-03-13 16:07:13 - TZ=UTC
TB --- 2012-03-13 16:07:13 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 16:07:13 - cd /src
TB --- 2012-03-13 16:07:13 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 16:07:14 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/ia64.ia64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/ia64.ia64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/ia64.ia64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/ia64.ia64/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 16:27:48 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 16:27:48 - ERROR: failed to build world
TB --- 2012-03-13 16:27:48 - 969.82 user 193.73 system 1280.28 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 16:11:45 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 16:11:45 - starting HEAD tinderbox run for mips/mips
TB --- 2012-03-13 16:11:45 - cleaning the object tree
TB --- 2012-03-13 16:11:47 - cvsupping the source tree
TB --- 2012-03-13 16:11:47 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2012-03-13 16:11:59 - building world
TB --- 2012-03-13 16:11:59 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 16:11:59 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 16:11:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 16:11:59 - SRCCONF=/dev/null
TB --- 2012-03-13 16:11:59 - TARGET=mips
TB --- 2012-03-13 16:11:59 - TARGET_ARCH=mips
TB --- 2012-03-13 16:11:59 - TZ=UTC
TB --- 2012-03-13 16:11:59 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 16:11:59 - cd /src
TB --- 2012-03-13 16:11:59 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 16:11:59 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O -pipe -G0  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/mips.mipsel/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
lib_keyname.c -o lib_keyname.o
cc  -O -pipe -G0  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/mips.mipsel/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
names.c -o names.o
cc  -O -pipe -G0  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/mips.mipsel/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/mips.mipsel/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 16:29:34 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 16:29:34 - ERROR: failed to build world
TB --- 2012-03-13 16:29:34 - 789.66 user 176.91 system 1068.80 real


http://tinderbox.freebsd.org/tinderbox-head-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 powerpc/powerpc

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 16:12:50 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 16:12:50 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2012-03-13 16:12:50 - cleaning the object tree
TB --- 2012-03-13 16:12:51 - cvsupping the source tree
TB --- 2012-03-13 16:12:51 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2012-03-13 16:13:02 - building world
TB --- 2012-03-13 16:13:02 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 16:13:02 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 16:13:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 16:13:02 - SRCCONF=/dev/null
TB --- 2012-03-13 16:13:02 - TARGET=powerpc
TB --- 2012-03-13 16:13:02 - TARGET_ARCH=powerpc
TB --- 2012-03-13 16:13:02 - TZ=UTC
TB --- 2012-03-13 16:13:02 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 16:13:02 - cd /src
TB --- 2012-03-13 16:13:02 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 16:13:02 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/powerpc.powerpc/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no 
previous prototype for '__maskrune_l'
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no 
previous prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 16:34:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 16:34:24 - ERROR: failed to build world
TB --- 2012-03-13 16:34:24 - 1019.71 user 191.68 system 1294.51 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 16:17:27 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 16:17:27 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2012-03-13 16:17:27 - cleaning the object tree
TB --- 2012-03-13 16:17:28 - cvsupping the source tree
TB --- 2012-03-13 16:17:28 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2012-03-13 16:17:39 - building world
TB --- 2012-03-13 16:17:39 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 16:17:39 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 16:17:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 16:17:39 - SRCCONF=/dev/null
TB --- 2012-03-13 16:17:39 - TARGET=powerpc
TB --- 2012-03-13 16:17:39 - TARGET_ARCH=powerpc64
TB --- 2012-03-13 16:17:39 - TZ=UTC
TB --- 2012-03-13 16:17:39 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 16:17:39 - cd /src
TB --- 2012-03-13 16:17:39 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 16:17:39 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/powerpc.powerpc64/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no 
previous prototype for '__maskrune_l'
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no 
previous prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 16:38:57 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 16:38:57 - ERROR: failed to build world
TB --- 2012-03-13 16:38:57 - 1040.77 user 195.70 system 1290.32 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 16:27:48 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 16:27:48 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2012-03-13 16:27:48 - cleaning the object tree
TB --- 2012-03-13 16:27:50 - cvsupping the source tree
TB --- 2012-03-13 16:27:50 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/sparc64/sparc64/supfile
TB --- 2012-03-13 16:28:00 - building world
TB --- 2012-03-13 16:28:00 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 16:28:00 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 16:28:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 16:28:00 - SRCCONF=/dev/null
TB --- 2012-03-13 16:28:00 - TARGET=sparc64
TB --- 2012-03-13 16:28:00 - TARGET_ARCH=sparc64
TB --- 2012-03-13 16:28:00 - TZ=UTC
TB --- 2012-03-13 16:28:00 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 16:28:00 - cd /src
TB --- 2012-03-13 16:28:00 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 16:28:01 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/sparc64.sparc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/sparc64.sparc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/sparc64.sparc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/sparc64.sparc64/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/sparc64.sparc64/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no 
previous prototype for '__maskrune_l'
/obj/sparc64.sparc64/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no 
previous prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 16:43:57 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 16:43:57 - ERROR: failed to build world
TB --- 2012-03-13 16:43:57 - 802.29 user 157.14 system 969.03 real


http://tinderbox.freebsd.org/tinderbox-head-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 arm/arm

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 16:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 16:50:00 - starting HEAD tinderbox run for arm/arm
TB --- 2012-03-13 16:50:00 - cleaning the object tree
TB --- 2012-03-13 16:50:03 - cvsupping the source tree
TB --- 2012-03-13 16:50:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2012-03-13 16:50:49 - building world
TB --- 2012-03-13 16:50:49 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 16:50:49 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 16:50:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 16:50:49 - SRCCONF=/dev/null
TB --- 2012-03-13 16:50:49 - TARGET=arm
TB --- 2012-03-13 16:50:49 - TARGET_ARCH=arm
TB --- 2012-03-13 16:50:49 - TZ=UTC
TB --- 2012-03-13 16:50:49 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 16:50:49 - cd /src
TB --- 2012-03-13 16:50:49 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 16:50:49 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/arm.arm/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
lib_keyname.c -o lib_keyname.o
cc  -O -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/arm.arm/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
names.c -o names.o
cc  -O -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/arm.arm/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/arm.arm/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 17:07:00 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 17:07:00 - ERROR: failed to build world
TB --- 2012-03-13 17:07:00 - 753.21 user 175.09 system 1019.94 real


http://tinderbox.freebsd.org/tinderbox-head-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/pc98

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 16:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 16:50:00 - starting HEAD tinderbox run for i386/pc98
TB --- 2012-03-13 16:50:00 - cleaning the object tree
TB --- 2012-03-13 16:50:03 - cvsupping the source tree
TB --- 2012-03-13 16:50:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2012-03-13 16:50:49 - building world
TB --- 2012-03-13 16:50:49 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 16:50:49 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 16:50:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 16:50:49 - SRCCONF=/dev/null
TB --- 2012-03-13 16:50:49 - TARGET=pc98
TB --- 2012-03-13 16:50:49 - TARGET_ARCH=i386
TB --- 2012-03-13 16:50:49 - TZ=UTC
TB --- 2012-03-13 16:50:49 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 16:50:49 - cd /src
TB --- 2012-03-13 16:50:49 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 16:50:49 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/pc98.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/pc98.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/pc98.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/pc98.i386/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 17:12:13 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 17:12:13 - ERROR: failed to build world
TB --- 2012-03-13 17:12:13 - 1021.83 user 193.62 system 1332.97 real


http://tinderbox.freebsd.org/tinderbox-head-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 i386/i386

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 16:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 16:50:00 - starting HEAD tinderbox run for i386/i386
TB --- 2012-03-13 16:50:00 - cleaning the object tree
TB --- 2012-03-13 16:50:03 - cvsupping the source tree
TB --- 2012-03-13 16:50:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2012-03-13 16:50:49 - building world
TB --- 2012-03-13 16:50:49 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 16:50:49 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 16:50:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 16:50:49 - SRCCONF=/dev/null
TB --- 2012-03-13 16:50:49 - TARGET=i386
TB --- 2012-03-13 16:50:49 - TARGET_ARCH=i386
TB --- 2012-03-13 16:50:49 - TZ=UTC
TB --- 2012-03-13 16:50:49 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 16:50:49 - cd /src
TB --- 2012-03-13 16:50:49 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 16:50:49 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/i386.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/i386.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/i386.i386/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/i386.i386/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 17:12:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 17:12:19 - ERROR: failed to build world
TB --- 2012-03-13 17:12:19 - 1021.73 user 194.91 system 1338.95 real


http://tinderbox.freebsd.org/tinderbox-head-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 amd64/amd64

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 16:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 16:50:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2012-03-13 16:50:00 - cleaning the object tree
TB --- 2012-03-13 16:50:03 - cvsupping the source tree
TB --- 2012-03-13 16:50:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2012-03-13 16:55:27 - building world
TB --- 2012-03-13 16:55:27 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 16:55:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 16:55:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 16:55:27 - SRCCONF=/dev/null
TB --- 2012-03-13 16:55:27 - TARGET=amd64
TB --- 2012-03-13 16:55:27 - TARGET_ARCH=amd64
TB --- 2012-03-13 16:55:27 - TZ=UTC
TB --- 2012-03-13 16:55:27 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 16:55:27 - cd /src
TB --- 2012-03-13 16:55:27 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 16:55:27 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/amd64.amd64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/amd64.amd64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/amd64.amd64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/amd64.amd64/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 17:18:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 17:18:19 - ERROR: failed to build world
TB --- 2012-03-13 17:18:19 - 1071.09 user 200.98 system 1698.58 real


http://tinderbox.freebsd.org/tinderbox-head-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


Re: [head tinderbox] failure on powerpc/powerpc

2012-03-13 Thread Super Bisquit
On Tue, Mar 13, 2012 at 11:52 AM, Garrett Cooper yaneg...@gmail.com wrote:

 On Tue, Mar 13, 2012 at 8:45 AM, Super Bisquit superbisq...@gmail.com
 wrote:
  On Tue, Mar 13, 2012 at 11:32 AM, FreeBSD Tinderbox
  tinder...@freebsd.orgwrote:
 
  TB --- 2012-03-13 15:11:46 - tinderbox 2.9 running on
  freebsd-current.sentex.ca
  TB --- 2012-03-13 15:11:46 - starting HEAD tinderbox run for
  powerpc/powerpc
  TB --- 2012-03-13 15:11:46 - cleaning the object tree
  TB --- 2012-03-13 15:11:46 - cvsupping the source tree
  TB --- 2012-03-13 15:11:46 - /usr/bin/csup -z -r 3 -g -L 1 -h
  cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile
  TB --- 2012-03-13 15:11:59 - building world
  TB --- 2012-03-13 15:11:59 - CROSS_BUILD_TESTING=YES
  TB --- 2012-03-13 15:11:59 - MAKEOBJDIRPREFIX=/obj
  TB --- 2012-03-13 15:11:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
  TB --- 2012-03-13 15:11:59 - SRCCONF=/dev/null
  TB --- 2012-03-13 15:11:59 - TARGET=powerpc
  TB --- 2012-03-13 15:11:59 - TARGET_ARCH=powerpc
  TB --- 2012-03-13 15:11:59 - TZ=UTC
  TB --- 2012-03-13 15:11:59 - __MAKE_CONF=/dev/null
  TB --- 2012-03-13 15:11:59 - cd /src
  TB --- 2012-03-13 15:11:59 - /usr/bin/make -B buildworld
   World build started on Tue Mar 13 15:12:00 UTC 2012
   Rebuilding the temporary build tree
   stage 1.1: legacy release compatibility shims
   stage 1.2: bootstrap tools
   stage 2.1: cleaning up the object tree
   stage 2.2: rebuilding the object tree
   stage 2.3: build tools
   stage 3: cross tools
   stage 4.1: building includes
   stage 4.2: building libraries
  [...]
  mkdep -f .depend -a-I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99
   /src/lib/libbz2/../../contrib/bzip2/bzlib.c
  /src/lib/libbz2/../../contrib/bzip2/blocksort.c
  /src/lib/libbz2/../../contrib/bzip2/compress.c
  /src/lib/libbz2/../../contrib/bzip2/crctable.c
  /src/lib/libbz2/../../contrib/bzip2/decompress.c
  /src/lib/libbz2/../../contrib/bzip2/huffman.c
  /src/lib/libbz2/../../contrib/bzip2/randtable.c
  cc  -O2 -pipe  -I/src/lib/libbz2/../../contrib/bzip2 -std=gnu99
  -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W
  -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes
  -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c
  /src/lib/libbz2/../../contrib/bzip2/bzlib.c -o bzlib.o
  cc1: warnings being treated as errors
  In file included from
 /obj/powerpc.powerpc/src/tmp/usr/include/ctype.h:83,
  from
  /src/lib/libbz2/../../contrib/bzip2/bzlib_private.h:29,
  from /src/lib/libbz2/../../contrib/bzip2/bzlib.c:34:
  /obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:93: warning:
 no
  previous prototype for '__sbmaskrune_l'
  /obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:102: warning:
 no
  previous prototype for '__sbistype_l'
  *** Error code 1
 
  Stop in /src/lib/libbz2.
  *** Error code 1
 
  Stop in /src.
  *** Error code 1
 
  Stop in /src.
  *** Error code 1
 
  Stop in /src.
  *** Error code 1
 
  Stop in /src.
  TB --- 2012-03-13 15:32:16 - WARNING: /usr/bin/make returned exit code
  1
  TB --- 2012-03-13 15:32:16 - ERROR: failed to build world
  TB --- 2012-03-13 15:32:16 - 959.02 user 176.75 system 1229.77 real
 
  Again, the old questions:
  Why isn't a build world done on native architecture?
  Why is it never asked, Could/would someone submit a build world log to
 be
  compared to the output of tinderbox for your architecture?
  Considering that the POWER(PC) architecture is everywhere- at least in
  consoles, why isn't there more interest?

 (obvious answer incoming)
 Because Intel has the Lion's share of the computing architecture
 marketplace and because powerpc is still a secondary architecture to
 Intel...?

 (Personal opinion) Not that great of an architecture.


 Again, I'm not sure why you're posing this question to this thread
 because it's not really relevant to the issue that needs to be
 resolved (in this case it's missing symbols related to xlocale stuff,
 and someone probably forgot to run make tinderbox/make universe).

I'm running buildworld natively on the Quicksilver. Errors related directly
to build will be reported and can be compared to the tinderbox errors.


 The FreeBSD build system supports cross-building on several
 architectures, so I can build ppc on Intel, Intel on ppc, mips n32 on
 ppc, etc. If this didn't work, FreeBSD would be in a world of pain.

 Thanks,
 -Garrett

___
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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 17:07:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 17:07:00 - starting HEAD tinderbox run for ia64/ia64
TB --- 2012-03-13 17:07:00 - cleaning the object tree
TB --- 2012-03-13 17:07:02 - cvsupping the source tree
TB --- 2012-03-13 17:07:02 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/ia64/ia64/supfile
TB --- 2012-03-13 17:07:13 - building world
TB --- 2012-03-13 17:07:13 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 17:07:13 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 17:07:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 17:07:13 - SRCCONF=/dev/null
TB --- 2012-03-13 17:07:13 - TARGET=ia64
TB --- 2012-03-13 17:07:13 - TARGET_ARCH=ia64
TB --- 2012-03-13 17:07:13 - TZ=UTC
TB --- 2012-03-13 17:07:13 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 17:07:13 - cd /src
TB --- 2012-03-13 17:07:13 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 17:07:14 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/ia64.ia64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/ia64.ia64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/ia64.ia64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/ia64.ia64/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 17:27:41 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 17:27:41 - ERROR: failed to build world
TB --- 2012-03-13 17:27:41 - 969.27 user 194.52 system 1240.80 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 17:12:13 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 17:12:13 - starting HEAD tinderbox run for mips/mips
TB --- 2012-03-13 17:12:13 - cleaning the object tree
TB --- 2012-03-13 17:12:15 - cvsupping the source tree
TB --- 2012-03-13 17:12:15 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2012-03-13 17:12:27 - building world
TB --- 2012-03-13 17:12:27 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 17:12:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 17:12:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 17:12:27 - SRCCONF=/dev/null
TB --- 2012-03-13 17:12:27 - TARGET=mips
TB --- 2012-03-13 17:12:27 - TARGET_ARCH=mips
TB --- 2012-03-13 17:12:27 - TZ=UTC
TB --- 2012-03-13 17:12:27 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 17:12:27 - cd /src
TB --- 2012-03-13 17:12:27 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 17:12:28 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O -pipe -G0  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/mips.mipsel/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
lib_keyname.c -o lib_keyname.o
cc  -O -pipe -G0  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/mips.mipsel/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
names.c -o names.o
cc  -O -pipe -G0  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/mips.mipsel/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/mips.mipsel/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no previous 
prototype for '__maskrune_l'
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no previous 
prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 17:29:53 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 17:29:53 - ERROR: failed to build world
TB --- 2012-03-13 17:29:53 - 788.11 user 179.30 system 1060.05 real


http://tinderbox.freebsd.org/tinderbox-head-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 powerpc/powerpc

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 17:12:19 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 17:12:19 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2012-03-13 17:12:19 - cleaning the object tree
TB --- 2012-03-13 17:12:24 - cvsupping the source tree
TB --- 2012-03-13 17:12:24 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2012-03-13 17:12:34 - building world
TB --- 2012-03-13 17:12:34 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 17:12:34 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 17:12:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 17:12:34 - SRCCONF=/dev/null
TB --- 2012-03-13 17:12:34 - TARGET=powerpc
TB --- 2012-03-13 17:12:34 - TARGET_ARCH=powerpc
TB --- 2012-03-13 17:12:34 - TZ=UTC
TB --- 2012-03-13 17:12:34 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 17:12:34 - cd /src
TB --- 2012-03-13 17:12:34 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 17:12:35 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/powerpc.powerpc/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no 
previous prototype for '__maskrune_l'
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no 
previous prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 17:34:08 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 17:34:08 - ERROR: failed to build world
TB --- 2012-03-13 17:34:08 - 1020.06 user 193.21 system 1309.05 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 17:18:19 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 17:18:19 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2012-03-13 17:18:19 - cleaning the object tree
TB --- 2012-03-13 17:18:21 - cvsupping the source tree
TB --- 2012-03-13 17:18:21 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2012-03-13 17:18:33 - building world
TB --- 2012-03-13 17:18:33 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 17:18:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 17:18:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 17:18:33 - SRCCONF=/dev/null
TB --- 2012-03-13 17:18:33 - TARGET=powerpc
TB --- 2012-03-13 17:18:33 - TARGET_ARCH=powerpc64
TB --- 2012-03-13 17:18:33 - TZ=UTC
TB --- 2012-03-13 17:18:33 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 17:18:33 - cd /src
TB --- 2012-03-13 17:18:33 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 17:18:33 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/powerpc.powerpc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/powerpc.powerpc64/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no 
previous prototype for '__maskrune_l'
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no 
previous prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 17:39:48 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 17:39:48 - ERROR: failed to build world
TB --- 2012-03-13 17:39:48 - 1039.46 user 196.09 system 1289.16 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 17:27:41 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 17:27:41 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2012-03-13 17:27:41 - cleaning the object tree
TB --- 2012-03-13 17:27:43 - cvsupping the source tree
TB --- 2012-03-13 17:27:43 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/sparc64/sparc64/supfile
TB --- 2012-03-13 17:27:54 - building world
TB --- 2012-03-13 17:27:54 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 17:27:54 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 17:27:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 17:27:54 - SRCCONF=/dev/null
TB --- 2012-03-13 17:27:54 - TARGET=sparc64
TB --- 2012-03-13 17:27:54 - TARGET_ARCH=sparc64
TB --- 2012-03-13 17:27:54 - TZ=UTC
TB --- 2012-03-13 17:27:54 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 17:27:54 - cd /src
TB --- 2012-03-13 17:27:54 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 17:27:54 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/sparc64.sparc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c lib_keyname.c -o lib_keyname.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/sparc64.sparc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c names.c -o names.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/obj/sparc64.sparc64/src/lib/ncurses/ncursesw/../ncursesw 
-I/src/lib/ncurses/ncursesw/../ncursesw -I/src/lib/ncurses/ncursesw/../ncurses 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/include 
-I/src/lib/ncurses/ncursesw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c unctrl.c -o unctrl.o
cc1: warnings being treated as errors
In file included from /obj/sparc64.sparc64/src/tmp/usr/include/wctype.h:93,
 from unctrl.c:8:
/obj/sparc64.sparc64/src/tmp/usr/include/xlocale/_ctype.h:73: warning: no 
previous prototype for '__maskrune_l'
/obj/sparc64.sparc64/src/tmp/usr/include/xlocale/_ctype.h:82: warning: no 
previous prototype for '__istype_l'
*** Error code 1

Stop in /src/lib/ncurses/ncursesw.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 17:43:54 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 17:43:54 - ERROR: failed to build world
TB --- 2012-03-13 17:43:54 - 799.93 user 158.27 system 972.30 real


http://tinderbox.freebsd.org/tinderbox-head-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: RFC: FUSE kernel module for the kernel...

2012-03-13 Thread gnn
At Sun, 11 Mar 2012 11:43:06 +0100,
Gustau Pérez wrote:
 
 On 08/03/2012 22:20, George Neville-Neil wrote:
  Howdy,
 
  I've taken the GSoC work done with the FUSE kernel module, and created a 
  patch against HEAD
  which I have now subjected to testing using tools/regression/fsx.
 
  The patch is here: http://people.freebsd.org/~gnn/head-fuse-1.diff
 
  I would like to commit this patch in the next few days, so, please, if you 
  care
  about this take a look and get back to me.
 
  Thanks,
  George
 
 Hi,
 
I'm running HEAD r232383 (as of 2 March) + head-fuse-2.diff in AMD64.
 
I've been able to use some fuse fs. I run fsx for a while without 
 problems with some of them (ext4fuse is readonly). Then ones working were:
 
  sshfs
  ntfs-3g
  ext4fuse
 
others like:
 
  truecrypt
  gvfs (gnome fuse daemon)
 
do fail. I tried fsx with gvfs, that's what I got:
 
  [gus@portgus ~]$ /root/deviant2/tools/regression/fsx/fsx 
 .gvfs/multimedia\ a\ harkserver/prova
  no extend on truncate! not posix!
 
They (truecrypt and gvfs) fail when doing setattr/getattr syscalls. 
 truecrypt complains about not being able to find the recently created 
 encrypted volume (a simple one like $HOME/Desktop/prova).
 
 With gvfs, the nautilus (or the application trying to use the file) 
 tries to setattr the file causing gvfs to get an I/O. It happens with 
 nearly all kind of files opened with gvfs, although there are some that 
 are useable. With those files useable with gvfs, when the application 
 closes them causes gvfs to block somewhere, rendering gvfs unuseable.
 
Those two filesystems can be very useful in the desktop, I guess 
 PCBSD could benefit from them.
 
I would say there is something blocking in 
 fuse_vnop_setattr/fuse_vnop_getattr, but I'm not sure how to debug it.
 
Thanks for your help.
 

Thanks for the detailed report.  I'll look into this in a bit, I'm
traveling for two weeks.

Best,
George
___
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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 17:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 17:50:00 - starting HEAD tinderbox run for arm/arm
TB --- 2012-03-13 17:50:00 - cleaning the object tree
TB --- 2012-03-13 17:50:03 - cvsupping the source tree
TB --- 2012-03-13 17:50:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2012-03-13 17:50:26 - building world
TB --- 2012-03-13 17:50:26 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 17:50:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 17:50:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 17:50:26 - SRCCONF=/dev/null
TB --- 2012-03-13 17:50:26 - TARGET=arm
TB --- 2012-03-13 17:50:26 - TARGET_ARCH=arm
TB --- 2012-03-13 17:50:26 - TZ=UTC
TB --- 2012-03-13 17:50:26 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 17:50:26 - cd /src
TB --- 2012-03-13 17:50:26 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 17:50:27 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -D_GLIBCXX_SJLJ_EXCEPTIONS=1 
-I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fno-implicit-templates 
-ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/arm.arm/src/tmp/usr/include/wctype.h:93,
 from /obj/arm.arm/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/arm.arm/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 'inline'
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 18:10:17 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 18:10:17 - ERROR: failed to build world
TB --- 2012-03-13 18:10:17 - 914.78 user 227.02 system 1216.84 real


http://tinderbox.freebsd.org/tinderbox-head-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/pc98

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 17:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 17:50:00 - starting HEAD tinderbox run for i386/pc98
TB --- 2012-03-13 17:50:00 - cleaning the object tree
TB --- 2012-03-13 17:50:03 - cvsupping the source tree
TB --- 2012-03-13 17:50:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2012-03-13 17:50:26 - building world
TB --- 2012-03-13 17:50:26 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 17:50:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 17:50:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 17:50:26 - SRCCONF=/dev/null
TB --- 2012-03-13 17:50:26 - TARGET=pc98
TB --- 2012-03-13 17:50:26 - TARGET_ARCH=i386
TB --- 2012-03-13 17:50:26 - TZ=UTC
TB --- 2012-03-13 17:50:26 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 17:50:26 - cd /src
TB --- 2012-03-13 17:50:26 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 17:50:27 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/pc98.i386/src/tmp/usr/include/wctype.h:93,
 from /obj/pc98.i386/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/pc98.i386/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 18:16:59 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 18:16:59 - ERROR: failed to build world
TB --- 2012-03-13 18:16:59 - 1250.83 user 248.91 system 1618.83 real


http://tinderbox.freebsd.org/tinderbox-head-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 amd64/amd64

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 17:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 17:50:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2012-03-13 17:50:00 - cleaning the object tree
TB --- 2012-03-13 17:50:03 - cvsupping the source tree
TB --- 2012-03-13 17:50:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2012-03-13 17:50:26 - building world
TB --- 2012-03-13 17:50:26 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 17:50:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 17:50:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 17:50:26 - SRCCONF=/dev/null
TB --- 2012-03-13 17:50:26 - TARGET=amd64
TB --- 2012-03-13 17:50:26 - TARGET_ARCH=amd64
TB --- 2012-03-13 17:50:26 - TZ=UTC
TB --- 2012-03-13 17:50:26 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 17:50:26 - cd /src
TB --- 2012-03-13 17:50:26 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 17:50:27 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/amd64.amd64/src/tmp/usr/include/wctype.h:93,
 from /obj/amd64.amd64/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/amd64.amd64/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 18:17:42 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 18:17:42 - ERROR: failed to build world
TB --- 2012-03-13 18:17:42 - 1287.09 user 257.55 system 1661.33 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 17:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 17:50:00 - starting HEAD tinderbox run for i386/i386
TB --- 2012-03-13 17:50:00 - cleaning the object tree
TB --- 2012-03-13 17:50:03 - cvsupping the source tree
TB --- 2012-03-13 17:50:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2012-03-13 17:55:27 - building world
TB --- 2012-03-13 17:55:27 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 17:55:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 17:55:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 17:55:27 - SRCCONF=/dev/null
TB --- 2012-03-13 17:55:27 - TARGET=i386
TB --- 2012-03-13 17:55:27 - TARGET_ARCH=i386
TB --- 2012-03-13 17:55:27 - TZ=UTC
TB --- 2012-03-13 17:55:27 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 17:55:27 - cd /src
TB --- 2012-03-13 17:55:27 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 17:55:27 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/i386.i386/src/tmp/usr/include/wctype.h:93,
 from /obj/i386.i386/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/i386.i386/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 18:22:21 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 18:22:21 - ERROR: failed to build world
TB --- 2012-03-13 18:22:21 - 1255.00 user 247.66 system 1940.62 real


http://tinderbox.freebsd.org/tinderbox-head-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


Re: [head tinderbox] failure on powerpc/powerpc

2012-03-13 Thread Super Bisquit
On Tue, Mar 13, 2012 at 1:56 PM, Garrett Cooper yaneg...@gmail.com wrote:

 On Mar 13, 2012, at 10:23 AM, Super Bisquit wrote:

 On Tue, Mar 13, 2012 at 11:52 AM, Garrett Cooper yaneg...@gmail.comwrote:
  (Personal opinion) Not that great of an architecture.


 And you're entitled to your opinion :).


 Again, I'm not sure why you're posing this question to this thread
 because it's not really relevant to the issue that needs to be
 resolved (in this case it's missing symbols related to xlocale stuff,
 and someone probably forgot to run make tinderbox/make universe).

 I'm running buildworld natively on the Quicksilver. Errors related
 directly to build will be reported and can be compared to the tinderbox
 errors.


 Not everyone has a Mac G4 under his/her desk. Crossbuilding works just
 fine, so again… how is your comment relevant/feasible to the discussion at
 hand?


Has anyone ever compared build errors between native and tinderbox?
Why not? This is not a stupid idea.
What if the native version fails to build but tinderbox is successful? That
could be a hardware error, instruction set, make.conf, or other problem.
Will it hurt to compare? No. It may be helpful.
In what ways is this relevant or feasible to the original post and those
following? Reporting errors from a native build will let one know what
problems will occur and when on actual hardware being used.

Humor me and let me report any possible errors from buildworld on the
Quicksilver;it may confirm what tinderbox reports. The source was csupped
before my original reply and the build started right thereafter.

-Garrett


___
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


make world failure r232929

2012-03-13 Thread Larry Rosenman


cc -fpic -DPIC  -O2 -pipe -fno-omit-frame-pointer  -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/include -std=gnu99  -c 
/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/sprintf-chk.c -o 
sprintf-chk.So
ctfconvert -L VERSION sprintf-chk.So
cc -fpic -DPIC  -O2 -pipe -fno-omit-frame-pointer  -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/include -std=gnu99  -c 
/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/stpcpy-chk.c -o 
stpcpy-chk.So
ctfconvert -L VERSION stpcpy-chk.So
cc -fpic -DPIC  -O2 -pipe -fno-omit-frame-pointer  -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/include -std=gnu99  -c 
/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/strcat-chk.c -o 
strcat-chk.So
ctfconvert -L VERSION strcat-chk.So
cc -fpic -DPIC  -O2 -pipe -fno-omit-frame-pointer  -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/include -std=gnu99  -c 
/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/strcpy-chk.c -o 
strcpy-chk.So
ctfconvert -L VERSION strcpy-chk.So
cc -fpic -DPIC  -O2 -pipe -fno-omit-frame-pointer  -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/include -std=gnu99  -c 
/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/strncat-chk.c -o 
strncat-chk.So
ctfconvert -L VERSION strncat-chk.So
cc -fpic -DPIC  -O2 -pipe -fno-omit-frame-pointer  -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/include -std=gnu99  -c 
/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/strncpy-chk.c -o 
strncpy-chk.So
ctfconvert -L VERSION strncpy-chk.So
cc -fpic -DPIC  -O2 -pipe -fno-omit-frame-pointer  -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/include -std=gnu99  -c 
/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/vsnprintf-chk.c -o 
vsnprintf-chk.So
ctfconvert -L VERSION vsnprintf-chk.So
cc -fpic -DPIC  -O2 -pipe -fno-omit-frame-pointer  -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp  
-I/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/include -std=gnu99  -c 
/usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/vsprintf-chk.c -o 
vsprintf-chk.So
ctfconvert -L VERSION vsprintf-chk.So
building shared library libssp.so.0
ctfmerge -L VERSION -o libssp.so.0 ssp.So gets-chk.So memcpy-chk.So 
memmove-chk.So mempcpy-chk.So memset-chk.So snprintf-chk.So sprintf-chk.So 
stpcpy-chk.So strcat-chk.So strcpy-chk.So strncat-chk.So strncpy-chk.So 
vsnprintf-chk.So vsprintf-chk.So
ERROR: ctfmerge: libssp.so.0: Cannot get sect .gnu.version_d data: Invalid 
section descriptor
=== gnu/lib/libssp/libssp_nonshared (all)
=== gnu/lib/libstdc++ (all)
c++  -O2 -pipe -fno-omit-frame-pointer -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libstdc++ 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/bitmap_allocator.cc 
-o bitmap_allocator.o
c++  -O2 -pipe -fno-omit-frame-pointer -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libstdc++ 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/pool_allocator.cc -o 
pool_allocator.o
c++  -O2 -pipe -fno-omit-frame-pointer -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H 
-I/usr/src/gnu/lib/libstdc++ 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/usr/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 

[head tinderbox] failure on ia64/ia64

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 18:10:17 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 18:10:17 - starting HEAD tinderbox run for ia64/ia64
TB --- 2012-03-13 18:10:17 - cleaning the object tree
TB --- 2012-03-13 18:10:19 - cvsupping the source tree
TB --- 2012-03-13 18:10:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/ia64/ia64/supfile
TB --- 2012-03-13 18:10:30 - building world
TB --- 2012-03-13 18:10:30 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 18:10:30 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 18:10:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 18:10:30 - SRCCONF=/dev/null
TB --- 2012-03-13 18:10:30 - TARGET=ia64
TB --- 2012-03-13 18:10:30 - TARGET_ARCH=ia64
TB --- 2012-03-13 18:10:30 - TZ=UTC
TB --- 2012-03-13 18:10:30 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 18:10:30 - cd /src
TB --- 2012-03-13 18:10:30 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 18:10:30 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fno-implicit-templates 
-ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/ia64.ia64/src/tmp/usr/include/wctype.h:93,
 from /obj/ia64.ia64/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/ia64.ia64/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 18:36:58 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 18:36:58 - ERROR: failed to build world
TB --- 2012-03-13 18:36:58 - 1252.59 user 249.43 system 1600.50 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 18:16:59 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 18:16:59 - starting HEAD tinderbox run for mips/mips
TB --- 2012-03-13 18:16:59 - cleaning the object tree
TB --- 2012-03-13 18:17:02 - cvsupping the source tree
TB --- 2012-03-13 18:17:02 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2012-03-13 18:17:12 - building world
TB --- 2012-03-13 18:17:12 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 18:17:12 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 18:17:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 18:17:12 - SRCCONF=/dev/null
TB --- 2012-03-13 18:17:12 - TARGET=mips
TB --- 2012-03-13 18:17:12 - TARGET_ARCH=mips
TB --- 2012-03-13 18:17:12 - TZ=UTC
TB --- 2012-03-13 18:17:12 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 18:17:12 - cd /src
TB --- 2012-03-13 18:17:12 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 18:17:13 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O -pipe -G0 -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fno-implicit-templates 
-ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/mips.mipsel/src/tmp/usr/include/wctype.h:93,
 from /obj/mips.mipsel/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/mips.mipsel/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 18:38:33 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 18:38:33 - ERROR: failed to build world
TB --- 2012-03-13 18:38:33 - 959.45 user 223.18 system 1294.09 real


http://tinderbox.freebsd.org/tinderbox-head-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 powerpc/powerpc

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 18:17:42 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 18:17:42 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2012-03-13 18:17:42 - cleaning the object tree
TB --- 2012-03-13 18:17:43 - cvsupping the source tree
TB --- 2012-03-13 18:17:43 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2012-03-13 18:17:56 - building world
TB --- 2012-03-13 18:17:56 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 18:17:56 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 18:17:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 18:17:56 - SRCCONF=/dev/null
TB --- 2012-03-13 18:17:56 - TARGET=powerpc
TB --- 2012-03-13 18:17:56 - TARGET_ARCH=powerpc
TB --- 2012-03-13 18:17:56 - TZ=UTC
TB --- 2012-03-13 18:17:56 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 18:17:56 - cd /src
TB --- 2012-03-13 18:17:56 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 18:17:57 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/powerpc.powerpc/src/tmp/usr/include/wctype.h:93,
 from 
/obj/powerpc.powerpc/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from 
/obj/powerpc.powerpc/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 18:43:56 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 18:43:56 - ERROR: failed to build world
TB --- 2012-03-13 18:43:56 - 1233.10 user 241.16 system 1574.34 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 18:22:21 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 18:22:21 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2012-03-13 18:22:21 - cleaning the object tree
TB --- 2012-03-13 18:22:23 - cvsupping the source tree
TB --- 2012-03-13 18:22:23 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2012-03-13 18:22:35 - building world
TB --- 2012-03-13 18:22:35 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 18:22:35 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 18:22:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 18:22:35 - SRCCONF=/dev/null
TB --- 2012-03-13 18:22:35 - TARGET=powerpc
TB --- 2012-03-13 18:22:35 - TARGET_ARCH=powerpc64
TB --- 2012-03-13 18:22:35 - TZ=UTC
TB --- 2012-03-13 18:22:35 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 18:22:35 - cd /src
TB --- 2012-03-13 18:22:35 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 18:22:36 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/powerpc.powerpc64/src/tmp/usr/include/wctype.h:93,
 from 
/obj/powerpc.powerpc64/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from 
/obj/powerpc.powerpc64/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:73: error: 
duplicate 'inline'
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:85: error: 
duplicate 'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 18:48:43 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 18:48:43 - ERROR: failed to build world
TB --- 2012-03-13 18:48:43 - 1256.73 user 243.20 system 1581.38 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 18:36:58 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 18:36:58 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2012-03-13 18:36:58 - cleaning the object tree
TB --- 2012-03-13 18:37:00 - cvsupping the source tree
TB --- 2012-03-13 18:37:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/sparc64/sparc64/supfile
TB --- 2012-03-13 18:37:11 - building world
TB --- 2012-03-13 18:37:11 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 18:37:11 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 18:37:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 18:37:11 - SRCCONF=/dev/null
TB --- 2012-03-13 18:37:11 - TARGET=sparc64
TB --- 2012-03-13 18:37:11 - TARGET_ARCH=sparc64
TB --- 2012-03-13 18:37:11 - TZ=UTC
TB --- 2012-03-13 18:37:11 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 18:37:11 - cd /src
TB --- 2012-03-13 18:37:11 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 18:37:11 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/sparc64.sparc64/src/tmp/usr/include/wctype.h:93,
 from 
/obj/sparc64.sparc64/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from 
/obj/sparc64.sparc64/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/sparc64.sparc64/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/sparc64.sparc64/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 18:57:13 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 18:57:13 - ERROR: failed to build world
TB --- 2012-03-13 18:57:13 - 1020.02 user 194.49 system 1214.89 real


http://tinderbox.freebsd.org/tinderbox-head-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 arm/arm

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 19:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 19:00:00 - starting HEAD tinderbox run for arm/arm
TB --- 2012-03-13 19:00:00 - cleaning the object tree
TB --- 2012-03-13 19:00:03 - cvsupping the source tree
TB --- 2012-03-13 19:00:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2012-03-13 19:00:25 - building world
TB --- 2012-03-13 19:00:25 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 19:00:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 19:00:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 19:00:25 - SRCCONF=/dev/null
TB --- 2012-03-13 19:00:25 - TARGET=arm
TB --- 2012-03-13 19:00:25 - TARGET_ARCH=arm
TB --- 2012-03-13 19:00:25 - TZ=UTC
TB --- 2012-03-13 19:00:25 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 19:00:25 - cd /src
TB --- 2012-03-13 19:00:25 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 19:00:26 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -D_GLIBCXX_SJLJ_EXCEPTIONS=1 
-I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fno-implicit-templates 
-ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/arm.arm/src/tmp/usr/include/wctype.h:93,
 from /obj/arm.arm/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/arm.arm/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 'inline'
/obj/arm.arm/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 19:20:14 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 19:20:14 - ERROR: failed to build world
TB --- 2012-03-13 19:20:14 - 916.12 user 226.15 system 1214.57 real


http://tinderbox.freebsd.org/tinderbox-head-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/pc98

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 19:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 19:00:00 - starting HEAD tinderbox run for i386/pc98
TB --- 2012-03-13 19:00:00 - cleaning the object tree
TB --- 2012-03-13 19:00:03 - cvsupping the source tree
TB --- 2012-03-13 19:00:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2012-03-13 19:00:25 - building world
TB --- 2012-03-13 19:00:25 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 19:00:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 19:00:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 19:00:25 - SRCCONF=/dev/null
TB --- 2012-03-13 19:00:25 - TARGET=pc98
TB --- 2012-03-13 19:00:25 - TARGET_ARCH=i386
TB --- 2012-03-13 19:00:25 - TZ=UTC
TB --- 2012-03-13 19:00:25 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 19:00:25 - cd /src
TB --- 2012-03-13 19:00:25 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 19:00:26 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/pc98.i386/src/tmp/usr/include/wctype.h:93,
 from /obj/pc98.i386/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/pc98.i386/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/pc98.i386/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 19:26:52 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 19:26:52 - ERROR: failed to build world
TB --- 2012-03-13 19:26:52 - 1249.59 user 251.64 system 1611.95 real


http://tinderbox.freebsd.org/tinderbox-head-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 i386/i386

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 19:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 19:00:00 - starting HEAD tinderbox run for i386/i386
TB --- 2012-03-13 19:00:00 - cleaning the object tree
TB --- 2012-03-13 19:00:03 - cvsupping the source tree
TB --- 2012-03-13 19:00:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2012-03-13 19:00:25 - building world
TB --- 2012-03-13 19:00:25 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 19:00:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 19:00:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 19:00:25 - SRCCONF=/dev/null
TB --- 2012-03-13 19:00:25 - TARGET=i386
TB --- 2012-03-13 19:00:25 - TARGET_ARCH=i386
TB --- 2012-03-13 19:00:25 - TZ=UTC
TB --- 2012-03-13 19:00:25 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 19:00:25 - cd /src
TB --- 2012-03-13 19:00:25 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 19:00:25 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/i386.i386/src/tmp/usr/include/wctype.h:93,
 from /obj/i386.i386/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/i386.i386/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/i386.i386/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 19:26:54 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 19:26:54 - ERROR: failed to build world
TB --- 2012-03-13 19:26:54 - 1250.72 user 248.78 system 1613.90 real


http://tinderbox.freebsd.org/tinderbox-head-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 amd64/amd64

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 19:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 19:00:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2012-03-13 19:00:00 - cleaning the object tree
TB --- 2012-03-13 19:00:03 - cvsupping the source tree
TB --- 2012-03-13 19:00:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2012-03-13 19:05:28 - building world
TB --- 2012-03-13 19:05:28 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 19:05:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 19:05:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 19:05:28 - SRCCONF=/dev/null
TB --- 2012-03-13 19:05:28 - TARGET=amd64
TB --- 2012-03-13 19:05:28 - TARGET_ARCH=amd64
TB --- 2012-03-13 19:05:28 - TZ=UTC
TB --- 2012-03-13 19:05:28 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 19:05:28 - cd /src
TB --- 2012-03-13 19:05:28 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 19:05:28 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/amd64.amd64/src/tmp/usr/include/wctype.h:93,
 from /obj/amd64.amd64/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/amd64.amd64/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/amd64.amd64/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 19:33:10 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 19:33:10 - ERROR: failed to build world
TB --- 2012-03-13 19:33:10 - 1292.29 user 255.95 system 1989.93 real


http://tinderbox.freebsd.org/tinderbox-head-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


Re: Double free() in libc or gdb ?

2012-03-13 Thread Dimitry Andric
On 2012-03-13 11:08, Alexandre Martins wrote:
 On Monday 12 March 2012 18:55:55 Konstantin Belousov wrote:
 On Mon, Mar 12, 2012 at 05:50:33PM +0100, Alexandre Martins wrote:
...
 I have the libc compilled with MALLOC_DEBUG flag to detect double free.
 When i run this piece of code (attached file) thought GDB, i have this
 assertion :

 Assertion failed: ((run-regs_mask[elm]  (1U  bit)) == 0), function
 arena_run_reg_dalloc, file /usr/src/lib/libc/stdlib/malloc.c, line 2543.

I have committed a fix for this assertion (actually a double free) in
r232934.  Can you please update to that revision, rebuild your gdb, and
try again?
___
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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 19:20:14 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 19:20:14 - starting HEAD tinderbox run for ia64/ia64
TB --- 2012-03-13 19:20:14 - cleaning the object tree
TB --- 2012-03-13 19:20:16 - cvsupping the source tree
TB --- 2012-03-13 19:20:16 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/ia64/ia64/supfile
TB --- 2012-03-13 19:20:28 - building world
TB --- 2012-03-13 19:20:28 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 19:20:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 19:20:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 19:20:28 - SRCCONF=/dev/null
TB --- 2012-03-13 19:20:28 - TARGET=ia64
TB --- 2012-03-13 19:20:28 - TARGET_ARCH=ia64
TB --- 2012-03-13 19:20:28 - TZ=UTC
TB --- 2012-03-13 19:20:28 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 19:20:28 - cd /src
TB --- 2012-03-13 19:20:28 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 19:20:29 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fno-implicit-templates 
-ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/ia64.ia64/src/tmp/usr/include/wctype.h:93,
 from /obj/ia64.ia64/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/ia64.ia64/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/ia64.ia64/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 19:46:56 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 19:46:56 - ERROR: failed to build world
TB --- 2012-03-13 19:46:56 - 1252.76 user 249.02 system 1601.74 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 19:26:52 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 19:26:52 - starting HEAD tinderbox run for mips/mips
TB --- 2012-03-13 19:26:52 - cleaning the object tree
TB --- 2012-03-13 19:26:54 - cvsupping the source tree
TB --- 2012-03-13 19:26:54 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2012-03-13 19:27:05 - building world
TB --- 2012-03-13 19:27:05 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 19:27:05 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 19:27:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 19:27:05 - SRCCONF=/dev/null
TB --- 2012-03-13 19:27:05 - TARGET=mips
TB --- 2012-03-13 19:27:05 - TARGET_ARCH=mips
TB --- 2012-03-13 19:27:05 - TZ=UTC
TB --- 2012-03-13 19:27:05 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 19:27:05 - cd /src
TB --- 2012-03-13 19:27:05 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 19:27:06 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O -pipe -G0 -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fno-implicit-templates 
-ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/mips.mipsel/src/tmp/usr/include/wctype.h:93,
 from /obj/mips.mipsel/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from /obj/mips.mipsel/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/mips.mipsel/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 19:48:35 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 19:48:35 - ERROR: failed to build world
TB --- 2012-03-13 19:48:35 - 959.44 user 222.47 system 1303.56 real


http://tinderbox.freebsd.org/tinderbox-head-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 powerpc/powerpc

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 19:26:54 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 19:26:54 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2012-03-13 19:26:54 - cleaning the object tree
TB --- 2012-03-13 19:26:55 - cvsupping the source tree
TB --- 2012-03-13 19:26:55 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2012-03-13 19:27:08 - building world
TB --- 2012-03-13 19:27:08 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 19:27:08 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 19:27:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 19:27:08 - SRCCONF=/dev/null
TB --- 2012-03-13 19:27:08 - TARGET=powerpc
TB --- 2012-03-13 19:27:08 - TARGET_ARCH=powerpc
TB --- 2012-03-13 19:27:08 - TZ=UTC
TB --- 2012-03-13 19:27:08 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 19:27:08 - cd /src
TB --- 2012-03-13 19:27:08 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 19:27:09 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/powerpc.powerpc/src/tmp/usr/include/wctype.h:93,
 from 
/obj/powerpc.powerpc/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from 
/obj/powerpc.powerpc/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:73: error: duplicate 
'inline'
/obj/powerpc.powerpc/src/tmp/usr/include/xlocale/_ctype.h:85: error: duplicate 
'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 19:53:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 19:53:24 - ERROR: failed to build world
TB --- 2012-03-13 19:53:24 - 1237.16 user 238.17 system 1590.49 real


http://tinderbox.freebsd.org/tinderbox-head-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

2012-03-13 Thread FreeBSD Tinderbox
TB --- 2012-03-13 19:33:10 - tinderbox 2.9 running on freebsd-current.sentex.ca
TB --- 2012-03-13 19:33:10 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2012-03-13 19:33:10 - cleaning the object tree
TB --- 2012-03-13 19:33:13 - cvsupping the source tree
TB --- 2012-03-13 19:33:13 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2012-03-13 19:33:29 - building world
TB --- 2012-03-13 19:33:29 - CROSS_BUILD_TESTING=YES
TB --- 2012-03-13 19:33:29 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-03-13 19:33:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-03-13 19:33:29 - SRCCONF=/dev/null
TB --- 2012-03-13 19:33:29 - TARGET=powerpc
TB --- 2012-03-13 19:33:29 - TARGET_ARCH=powerpc64
TB --- 2012-03-13 19:33:29 - TZ=UTC
TB --- 2012-03-13 19:33:29 - __MAKE_CONF=/dev/null
TB --- 2012-03-13 19:33:29 - cd /src
TB --- 2012-03-13 19:33:29 - /usr/bin/make -B buildworld
 World build started on Tue Mar 13 19:33:30 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
[...]
c++  -O2 -pipe -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -I/src/gnu/lib/libstdc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/libsupc++ 
-I/src/gnu/lib/libstdc++/../../../contrib/gcc 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include 
-I/src/gnu/lib/libstdc++/../../../contrib/gcclibs/include 
-I/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include -I. 
-frandom-seed=RepeatabilityConsideredGood -fstack-protector 
-fno-implicit-templates -ffunction-sections -fdata-sections  -Wno-deprecated -c 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc -o codecvt.o
In file included from /obj/powerpc.powerpc64/src/tmp/usr/include/wctype.h:93,
 from 
/obj/powerpc.powerpc64/src/tmp/usr/include/c++/4.2/cwctype:53,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/locale_facets.h:46,
 from 
/obj/powerpc.powerpc64/src/tmp/usr/include/c++/4.2/locale:45,
 from 
/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/codecvt.cc:30:
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:73: error: 
duplicate 'inline'
/obj/powerpc.powerpc64/src/tmp/usr/include/xlocale/_ctype.h:85: error: 
duplicate 'inline'
*** Error code 1

Stop in /src/gnu/lib/libstdc++.
*** Error code 1

Stop in /src/gnu/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-03-13 19:59:23 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-03-13 19:59:23 - ERROR: failed to build world
TB --- 2012-03-13 19:59:23 - 1258.05 user 239.38 system 1573.01 real


http://tinderbox.freebsd.org/tinderbox-head-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: Improved Intel Turbo Boost status/control

2012-03-13 Thread John
I found that setting performance_cpu_freq=HIGH doesn't work on my
desktop system, I guess because devd never gets any AC adapter events
that trigger running the power_profile script.  I enabled it manually by
adding these lines to my /etc/sysctl.conf:

  hw.acpi.cpu.cx_lowest=C2
  dev.cpu.0.freq=3334

It would be nice to come up with a way to automatically enable this for
desktop users.  If not fully automatic, hopefully require no more than a
simple =YES knob in rc.conf.

I applied the patch to 2 desktop machines and added performance_cpu_freq=HIGH
to rc.conf:

8.3-PRERELEASE #3 r232864M: Mon Mar 12 16:11:47 PDT 2012
dev.cpu.0.freq: 2927
dev.cpu.0.freq_levels: 2927/95000 2926/95000 2793/78000 2660/7 ...

9.0-STABLE FreeBSD 9.0-STABLE #0 r232923M: Tue Mar 13 10:06:33 PDT 2012
dev.cpu.0.freq: 3301
dev.cpu.0.freq_levels: 3301/95000 3300/95000 3100/87000 2900/8 ...

so it appears to be working for me automatically.

John Theus
TheUs Group
TheUsGroup.com
___
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: RFC: FUSE kernel module for the kernel...

2012-03-13 Thread Gustau Pérez

On 13/03/2012 18:56, g...@freebsd.org wrote:

At Sun, 11 Mar 2012 11:43:06 +0100,
Gustau Pérez wrote:

On 08/03/2012 22:20, George Neville-Neil wrote:

Howdy,

I've taken the GSoC work done with the FUSE kernel module, and created a patch 
against HEAD
which I have now subjected to testing using tools/regression/fsx.

The patch is here: http://people.freebsd.org/~gnn/head-fuse-1.diff

I would like to commit this patch in the next few days, so, please, if you care
about this take a look and get back to me.

Thanks,
George

 Hi,

I'm running HEAD r232383 (as of 2 March) + head-fuse-2.diff in AMD64.

I've been able to use some fuse fs. I run fsx for a while without
problems with some of them (ext4fuse is readonly). Then ones working were:

  sshfs
  ntfs-3g
  ext4fuse

others like:

  truecrypt
  gvfs (gnome fuse daemon)

do fail. I tried fsx with gvfs, that's what I got:

  [gus@portgus ~]$ /root/deviant2/tools/regression/fsx/fsx
.gvfs/multimedia\ a\ harkserver/prova
  no extend on truncate! not posix!

They (truecrypt and gvfs) fail when doing setattr/getattr syscalls.
truecrypt complains about not being able to find the recently created
encrypted volume (a simple one like $HOME/Desktop/prova).

 With gvfs, the nautilus (or the application trying to use the file)
tries to setattr the file causing gvfs to get an I/O. It happens with
nearly all kind of files opened with gvfs, although there are some that
are useable. With those files useable with gvfs, when the application
closes them causes gvfs to block somewhere, rendering gvfs unuseable.

Those two filesystems can be very useful in the desktop, I guess
PCBSD could benefit from them.

I would say there is something blocking in
fuse_vnop_setattr/fuse_vnop_getattr, but I'm not sure how to debug it.

Thanks for your help.


Thanks for the detailed report.  I'll look into this in a bit, I'm
traveling for two weeks.

Best,
George


   Hi,

   testing ntfs-3g, after doing a bit large transfer with rsync, I 
found I couldn't unmount the filesystem. After some tries and before 
checking that no process was accessing the filesystem I tried to force 
the unmont. After that the system paniced instantly.


   I'm running HEAD/AMD64 r232862+head-fuse-2.diff.

   I have a dump of it, but it would seem that fuse is missing debug 
symbols (I don't know why), so the backtrace is incomplete. I compiled 
fuse just by doing make on $SRCDIR/sys/modules/fuse. I'll try to 
reproduce the panic and figure out what happens. Any help would be also 
appreciated on this other issue.


   Gustau
___
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: [head tinderbox] failure on powerpc/powerpc

2012-03-13 Thread Super Bisquit
On 3/13/12, Garrett Cooper yaneg...@gmail.com wrote:
 On Tue, Mar 13, 2012 at 11:22 AM, Super Bisquit superbisq...@gmail.com
 wrote:


 On Tue, Mar 13, 2012 at 1:56 PM, Garrett Cooper yaneg...@gmail.com
 wrote:

 On Mar 13, 2012, at 10:23 AM, Super Bisquit wrote:

 On Tue, Mar 13, 2012 at 11:52 AM, Garrett Cooper yaneg...@gmail.com
 wrote:
  (Personal opinion) Not that great of an architecture.


 And you're entitled to your opinion :).


 Again, I'm not sure why you're posing this question to this thread
 because it's not really relevant to the issue that needs to be
 resolved (in this case it's missing symbols related to xlocale stuff,
 and someone probably forgot to run make tinderbox/make universe).

 I'm running buildworld natively on the Quicksilver. Errors related
 directly to build will be reported and can be compared to the tinderbox
 errors.


 Not everyone has a Mac G4 under his/her desk. Crossbuilding works just
 fine, so again… how is your comment relevant/feasible to the discussion
 at
 hand?


 Has anyone ever compared build errors between native and tinderbox?
 Why not? This is not a stupid idea.
 What if the native version fails to build but tinderbox is successful?
 That
 could be a hardware error, instruction set, make.conf, or other problem.
 Will it hurt to compare? No. It may be helpful.
 In what ways is this relevant or feasible to the original post and those
 following? Reporting errors from a native build will let one know what
 problems will occur and when on actual hardware being used.

 Humor me and let me report any possible errors from buildworld on the
 Quicksilver;it may confirm what tinderbox reports. The source was csupped
 before my original reply and the build started right thereafter.

 (Removing current)
 Please run make tinderbox on your Mac with TARGET=powerpc
 TARGET_ARCH=powerpc :). Your build environment is tainted otherwise.

Forgot this part.
 Thanks,
 -Garrett



Okay. The real machine received the same error and it is  due- more
than likely- to the -Werror flag of cc1.
I haven't tried building world using llvm and clang.
___
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: x220 notes

2012-03-13 Thread matt

On 03/12/12 17:00, Kevin Oberman wrote:

On Fri, Mar 9, 2012 at 7:24 PM, mattsendtom...@gmail.com  wrote:

On 03/08/12 01:28, Ganael LAPLANCHE wrote:

On Wed, 07 Mar 2012 20:29:16 +0200, Vrachnis Ilias-Dimitrios wrote

Hi,


2. I've read bad reviews about webcam having poor quality on
GNU/Linux, so I would assume it will be the same on FreeBSD with
webcamd and not worth the $30? (which also frees up space for
3x3 antenna)

Yep, the webcam works with webcamd but the quality is not great...


4. How far is the AMD64 kernel suspend/resume? What do you mean by
video doesn't resume?

I run 10-CURRENT :

FreeBSD laptop.martymac.org 10.0-CURRENT FreeBSD 10.0-CURRENT #12
r231062M: Mon Feb  6 10:29:35 CET 2012
marty...@laptop.martymac.org:/usr/obj/files/Src/sys/GENERIC  amd64

with all.13.1 patch (no more available) from :

http://people.freebsd.org/~kib/drm/

3D acceleration works well, as well as suspend/resume when Xorg has been
started (black screen if on console).

Best regards,

--
Ganael LAPLANCHEganael.laplan...@martymac.org
http://www.martymac.org | http://contribs.martymac.org
FreeBSD: martymacmarty...@freebsd.org, http://www.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


This is great news!

I just finished some other stuff, so hopefully I can take a renewed look at
brightness and the fan issue.

Thanks for woking on this, Matt. I, for one, would be happy to have
the volume and de-lighted to have brightness working on my T520!
(Sorry or the weak pun.)

So far it looks like acpi_video attaches, but the lcd0 device is not active.

More interestingly, if you press brightness shortcuts, acpi_video can 
see the brightness value change while screen does not actually change.


My conclusion based on bullshit and poking around in the acpidump, is 
that possibly either:
1) We need to call some ACPI handle to put ACPI in charge of brightness 
(google acpi brightness trapdoor)
2) acpi_video is attaching to the nvidia optimus hooks (yes, they're 
there, I know we don't have that option) and is missing the IGD video 
(VIGD/PEG etc)
3) Something else is wrong with either acpi, acpi_video, or bios that is 
preventing ACPI from working?


I am going to take more of a look tonight.

I think I can just hack in some ACPI calls straight to the ec if that 
will work, which might also include the correct ones to resume the 
display without KMS?

Calling some _ON function or something perhaps

Thanks!

Matt
___
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


[patch] iwi(4) suspend/resume broken

2012-03-13 Thread Mitsuru IWASAKI
Hi,

I've noticed that iwi(4) doesn't have ieee80211_new_state(IEEE80211_S_INIT)
in iwi_stop_locked() since 8.0-RELEASE (comparing with RELENG_7's).

It seems that this prevent if_iwi from working properly after resuming,
no data frames were sent.

The patches is available at:
http://people.freebsd.org/~iwasaki/iwi/iwi-20120314.diff

Now that iwi(4) is working well for me :)

I'll commit this coming weekend if there are no objections.

Thanks!
___
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: RFC: FUSE kernel module for the kernel...

2012-03-13 Thread Adrian Chadd
Hm,

try:

make KERNBUILDDIR=/usr/src/sys/i386/compile/KERNNAME clean all install


Adrian
___
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: x220 notes

2012-03-13 Thread matt

On 03/13/12 17:43, matt wrote:

On 03/12/12 17:00, Kevin Oberman wrote:

On Fri, Mar 9, 2012 at 7:24 PM, mattsendtom...@gmail.com  wrote:

On 03/08/12 01:28, Ganael LAPLANCHE wrote:

On Wed, 07 Mar 2012 20:29:16 +0200, Vrachnis Ilias-Dimitrios wrote

Hi,


2. I've read bad reviews about webcam having poor quality on
GNU/Linux, so I would assume it will be the same on FreeBSD with
webcamd and not worth the $30? (which also frees up space for
3x3 antenna)

Yep, the webcam works with webcamd but the quality is not great...


4. How far is the AMD64 kernel suspend/resume? What do you mean by
video doesn't resume?

I run 10-CURRENT :

FreeBSD laptop.martymac.org 10.0-CURRENT FreeBSD 10.0-CURRENT #12
r231062M: Mon Feb  6 10:29:35 CET 2012
marty...@laptop.martymac.org:/usr/obj/files/Src/sys/GENERIC  amd64

with all.13.1 patch (no more available) from :

http://people.freebsd.org/~kib/drm/

3D acceleration works well, as well as suspend/resume when Xorg has 
been

started (black screen if on console).

Best regards,

--
Ganael LAPLANCHEganael.laplan...@martymac.org
http://www.martymac.org | http://contribs.martymac.org
FreeBSD: martymacmarty...@freebsd.org, http://www.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



This is great news!

I just finished some other stuff, so hopefully I can take a renewed 
look at

brightness and the fan issue.

Thanks for woking on this, Matt. I, for one, would be happy to have
the volume and de-lighted to have brightness working on my T520!
(Sorry or the weak pun.)
So far it looks like acpi_video attaches, but the lcd0 device is not 
active.


More interestingly, if you press brightness shortcuts, acpi_video can 
see the brightness value change while screen does not actually change.


My conclusion based on bullshit and poking around in the acpidump, is 
that possibly either:
1) We need to call some ACPI handle to put ACPI in charge of 
brightness (google acpi brightness trapdoor)
2) acpi_video is attaching to the nvidia optimus hooks (yes, they're 
there, I know we don't have that option) and is missing the IGD video 
(VIGD/PEG etc)
3) Something else is wrong with either acpi, acpi_video, or bios that 
is preventing ACPI from working?


I am going to take more of a look tonight.

I think I can just hack in some ACPI calls straight to the ec if that 
will work, which might also include the correct ones to resume the 
display without KMS?

Calling some _ON function or something perhaps

Thanks!

Matt
I have brightness control through raw acpi...\_BCL and friends seem to 
do nothing.


Most of the video methods differentiate between \VIGD (which seems to be 
a check for integrated graphics vs optimus, but that's still a guess)
If \VIGD is true, brightness commands are sent to the EC, where they 
don't seem to do much yet. This is probably where we could enable 
something via EC/ibm-acpi?
If \VIGD is false, brightness commands are handled in ACPI, although 
coarsely, via \VBRC.


\VBRC seems to allow control over the backlight, at least, so those of 
you with sore eyes or the 3-cell battery may have some success using the 
acpi_call port (Danger!)

kldload acpi_call
acpi_call -p '\VBRC' -i n (where n is 0-10)

Still hacking :)!

Matt
___
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