Re: /usr/src - make doesn't recognize target when '-f -' is used

2011-09-28 Thread h h
(examples are probably useful for the archive, too) rank1see...@gmail.com writes: According to make(1) manpage, it reads BSDmakefile, makefile or Makefile unless -f is specified. Well, via STDIN, I've attempted to feed it, with syntaks from a 'make.conf' file, so I wouldn't have to provide

Re: Installation of kernel symbols file in a separate directory [Was: Re: Experiences with FreeBSD 9.0-BETA2]

2011-09-28 Thread Andriy Gapon
on 28/09/2011 07:23 Arnaud Lacombe said the following: available here: https://github.com/lacombar/freebsd/commit/c1d5c4857361028dc40941273dd2ab9576c687fd This patch adds a KODIR_SYMBOLS variables which is to the kernel and modules .symbols files what the KODIR variable is to the kernel

Re: Installation of kernel symbols file in a separate directory [Was: Re: Experiences with FreeBSD 9.0-BETA2]

2011-09-28 Thread Ryan Stone
You might be interested in this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=153157cat= This does the same thing for userland .symbols files, and teaches gdb how to find them. ___ freebsd-hackers@freebsd.org mailing list

Re: Installation of kernel symbols file in a separate directory [Was: Re: Experiences with FreeBSD 9.0-BETA2]

2011-09-28 Thread Arnaud Lacombe
Hi, On Wed, Sep 28, 2011 at 8:29 AM, Andriy Gapon a...@freebsd.org wrote: on 28/09/2011 07:23 Arnaud Lacombe said the following: available here: https://github.com/lacombar/freebsd/commit/c1d5c4857361028dc40941273dd2ab9576c687fd This patch adds a KODIR_SYMBOLS variables which is to the

Re: Installation of kernel symbols file in a separate directory [Was: Re: Experiences with FreeBSD 9.0-BETA2]

2011-09-28 Thread Kostik Belousov
On Wed, Sep 28, 2011 at 10:30:06AM -0400, Ryan Stone wrote: You might be interested in this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=153157cat= This does the same thing for userland .symbols files, and teaches gdb how to find them. The patch is not committable as is. In particular,

Re: Installation of kernel symbols file in a separate directory [Was: Re: Experiences with FreeBSD 9.0-BETA2]

2011-09-28 Thread Mark Johnston
On Wed, Sep 28, 2011 at 05:47:59PM +0300, Kostik Belousov wrote: On Wed, Sep 28, 2011 at 10:30:06AM -0400, Ryan Stone wrote: You might be interested in this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=153157cat= This does the same thing for userland .symbols files, and teaches gdb

Hello World assembly language

2011-09-28 Thread Colin Barnabas
I found a hello world program written in assembly language which runs on my amd64 8.2 stable box. However, I can not seem to get it to print a new line. Any suggestions on how to print a line feed in assembly? Here is the code- section .data message: db 'hello, world!', 0x0a section .text

Re: Hello World assembly language

2011-09-28 Thread Doug Barton
On 09/28/2011 13:26, Colin Barnabas wrote: I found a hello world program written in assembly language which runs on my amd64 8.2 stable box. However, I can not seem to get it to print a new line. Any suggestions on how to print a line feed in assembly? No, we will not help you do your compsci

RE: Hello World assembly language

2011-09-28 Thread Andrew Duane
Add a 0x0d to the end of the string (0xa = LF, 0xd = CR)  ... Andrew Duane Juniper Networks o   +1 978 589 0551 m  +1 603-770-7088 adu...@juniper.net   -Original Message- From: owner-freebsd-hack...@freebsd.org [mailto:owner-freebsd-

Re: Hello World assembly language

2011-09-28 Thread Ryan Stone
On Wed, Sep 28, 2011 at 4:26 PM, Colin Barnabas a...@ucs.com wrote: I found a hello world program written in assembly language which runs on my amd64 8.2 stable box. However, I can not seem to get it to print a new line. Any suggestions on how to print a line feed in assembly? Here is the

Re: Hello World assembly language

2011-09-28 Thread Duane Hill
On Wed, Sep 28, 2011 at 8:26 PM, Colin Barnabas a...@ucs.com wrote: I found a hello world program written in assembly language which runs on my amd64 8.2 stable box. However, I can not seem to get it to print a new line. Any suggestions on how to print a line feed in assembly? Here is the

Re: Hello World assembly language

2011-09-28 Thread Nate Dobbs
Alter the stuff in red, the message will print irrespective of your `message' length. Change 13 to 14. section .data message: db 'hello, world!', 0x0a message_len equ $-message section .text global _start _start: mov rax, 4 mov rdi, 1 mov rsi, message mov rdx,

USENIX ATC '12 Call for Papers Now Available

2011-09-28 Thread Lionel Garth Jones
On behalf of the 2012 USENIX Annual Technical Conference (USENIX ATC '12) program committee, we invite you to submit original and innovative papers to the Refereed Papers Track. We seek high-quality submissions that further the knowledge and understanding of modern computing systems, with an

Re: Hello World assembly language

2011-09-28 Thread Aldis Berjoza
On Wed, 28 Sep 2011 13:26:47 -0700 Colin Barnabas a...@ucs.com wrote: I found a hello world program written in assembly language which runs on my amd64 8.2 stable box. However, I can not seem to get it to print a new line. Any suggestions on how to print a line feed in assembly? You need to