Re: New cpuid code to test

2008-11-24 Thread David Schulz
Christopher Linn wrote: very sorry, mangled my reply and didn't catch it. On Mon, Oct 20, 2008 at 11:15:27AM -0400, Christopher Linn wrote: On Mon, Oct 20, 2008 at 10:59:00AM -0400, Brad Tilley wrote: On Mon, Oct 20, 2008 at 9:35 AM, Julian Leyh [EMAIL PROTECTED] wrote: make

Re: New cpuid code to test

2008-10-20 Thread new_guy
Tobias Weingartner-2 wrote: make cpuid ./cpuid | mail -s 'cpuid output' [EMAIL PROTECTED] Perhaps this is implied by 'make', but for the sake of clarity, I did it like this: gcc cpuid.c -o cpuid | ... And it worked OK. -- View this message in context: http://www.nabble.com/New-cpuid

Re: New cpuid code to test

2008-10-20 Thread Julian Leyh
new_guy schrieb: Tobias Weingartner-2 wrote: make cpuid ./cpuid | mail -s 'cpuid output' [EMAIL PROTECTED] Perhaps this is implied by 'make', but for the sake of clarity, I did it like this: gcc cpuid.c -o cpuid | ... And it worked OK. make already knows how to compile C files, no

Re: New cpuid code to test

2008-10-20 Thread Brad Tilley
On Mon, Oct 20, 2008 at 9:35 AM, Julian Leyh [EMAIL PROTECTED] wrote: make already knows how to compile C files, no need to call the compiler yourself ;) My bad... I was using make incorrectly. I'll stick to gcc by hand :)

Re: New cpuid code to test

2008-10-20 Thread Brad Tilley
On Mon, Oct 20, 2008 at 9:35 AM, Julian Leyh [EMAIL PROTECTED] wrote: make already knows how to compile C files, no need to call the compiler yourself ;) On 4.4 i386 make does this: $ make cpuid.c ./cpuid `cpuid.c' is up to date. ksh: ./cpuid: not found It does not produce a cpuid

Re: New cpuid code to test

2008-10-20 Thread Ted Unangst
On Mon, Oct 20, 2008 at 10:59 AM, Brad Tilley [EMAIL PROTECTED] wrote: On Mon, Oct 20, 2008 at 9:35 AM, Julian Leyh [EMAIL PROTECTED] wrote: make already knows how to compile C files, no need to call the compiler yourself ;) On 4.4 i386 make does this: $ make cpuid.c ./cpuid `cpuid.c' is

Re: New cpuid code to test

2008-10-20 Thread Christopher Linn
On Mon, Oct 20, 2008 at 11:01:37AM -0400, Brad Tilley wrote: On Mon, Oct 20, 2008 at 9:35 AM, Julian Leyh [EMAIL PROTECTED] wrote: make already knows how to compile C files, no need to call the compiler yourself ;) My bad... I was using make incorrectly. I'll stick to gcc by hand :)

Re: New cpuid code to test

2008-10-20 Thread Christopher Linn
On Mon, Oct 20, 2008 at 10:59:00AM -0400, Brad Tilley wrote: On Mon, Oct 20, 2008 at 9:35 AM, Julian Leyh [EMAIL PROTECTED] wrote: make already knows how to compile C files, no need to call the compiler yourself ;) On 4.4 i386 make does this: $ make cpuid.c ./cpuid `cpuid.c' is up to

Re: New cpuid code to test

2008-10-20 Thread Christopher Linn
very sorry, mangled my reply and didn't catch it. On Mon, Oct 20, 2008 at 11:15:27AM -0400, Christopher Linn wrote: On Mon, Oct 20, 2008 at 10:59:00AM -0400, Brad Tilley wrote: On Mon, Oct 20, 2008 at 9:35 AM, Julian Leyh [EMAIL PROTECTED] wrote: make already knows how to compile C files,

New cpuid code to test

2008-10-19 Thread Tobias Weingartner
Hello all, I'd love to get another round of cpuid testing done (i386/amd64). The code is available at: http://www.tepid.org/~weingart/cpuid.c I'd appreciate it if people could do something like the following on their i386 and amd64 boxes: make cpuid ./cpuid | mail -s 'cpuid output' [EMAIL