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

2013-05-22 Thread Julian Stecklina
On 05/17/2013 09:45 PM, Florent Peterschmitt wrote: Hi, With the r250749 revision of head, rebuilt world with make -j4 buildworld, all was fine. Then install new world, reboot and so: $ cd /usr/src $ make -j4 kernel --- buildkernel --- make: illegal option -- J usage: make

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

2013-05-22 Thread Julian Stecklina
On 05/22/2013 01:05 PM, Julian Stecklina wrote: This also affects building CURRENT from a 9.1 system. One workaround is to build without -j, but this is quite painful on an 8-core box. I tried using bmake from ports, but this fails, because the build system seems to have PATH hardcoded

Re: CURRENT: Ivy Bridge CPU (i3-3220) and Intel Bull Mountain RNG (options RDRAND_RNG)

2013-07-30 Thread Julian Stecklina
On 07/30/2013 01:46 PM, O. Hartmann wrote: I tried the new option options RDRAND_RNG on my SOHO server, equipted with a Intel i3-3220 Ivy Brdige CPU, which is supposed to have the Bull Mountain random number generator as a piece of hardware in its uncore. Enabling the kernel option doesn't

Re: [PATCH] PCI bus number management

2014-02-07 Thread Julian Stecklina
On 02/06/2014 08:37 PM, John Baldwin wrote: I would like to commit this to HEAD soon but thought I would post it for some pre-commit testing for the brave. :) If you are really brave, try booting with 'hw.pci.clear_buses=1' which will force the kernel to renumber all buses in the system.

Aliasing bug in FICL (may break loader with gcc4.4)

2010-02-15 Thread Julian Stecklina
Hello, while porting FICL, I noticed an aliasing bug which manifests (at least) with gcc 4.4.2 and 4.4.3 when strict-aliasing is enabled. The root cause is #define LVALUEtoCELL(v) (*(CELL *)v) in sys/boot/ficl/ficl.h. CELL is a union: typedef union _cell { FICL_INT i; FICL_UNS u; [...]