RE: Adding a custom library to l4/pkg/bootstrap

2014-09-05 Thread Masti Ramya Jayaram
@os.inf.tu-dresden.de Subject: Re: Adding a custom library to l4/pkg/bootstrap On 09/03/2014 09:51 AM, Masti Ramya Jayaram wrote: Hey Jan, Sorry for underspecifying it. Here are the details. I have a library called scc-sec under the l4/pkg directory. It has one file: a. init.c that contains void

Re: Adding a custom library to l4/pkg/bootstrap

2014-09-04 Thread Martin Küttler
On 09/03/2014 09:51 AM, Masti Ramya Jayaram wrote: Hey Jan, Sorry for underspecifying it. Here are the details. I have a library called scc-sec under the l4/pkg directory. It has one file: a. init.c that contains void hello(){ printf(hello); } I compile this as a library and I can see

RE: Adding a custom library to l4/pkg/bootstrap

2014-09-03 Thread Masti Ramya Jayaram
...@os.inf.tu-dresden.de] on behalf of Jan Bierbaum [jan.bierb...@os.inf.tu-dresden.de] Sent: 02 September 2014 21:56 To: l4-hackers@os.inf.tu-dresden.de Subject: Re: Adding a custom library to l4/pkg/bootstrap On 02.09.2014 13:32, Masti Ramya Jayaram wrote: However, now I am trying to call a function

Re: Adding a custom library to l4/pkg/bootstrap

2014-09-02 Thread Jan Bierbaum
On 02.09.2014 11:37, Masti Ramya Jayaram wrote: b. Modified the pkg/bootstrap/server/src/Make.rules so that it also looks for libscc-sec by: L4_LIBS = -static -nostdlib $(DRV_LIBS) -lcxx_base -lcxx_io -llibscc-sec But on compiling, I get an error that says that -llibscc-sec not found

RE: Adding a custom library to l4/pkg/bootstrap

2014-09-02 Thread Masti Ramya Jayaram
Sorry about the multiple emails. I managed to get past the library not found error - it was a matter of nomenclature. However, now I am trying to call a function in the library through an included header file (which is part of the library) and it fails (undefined reference). My header file:

Re: Adding a custom library to l4/pkg/bootstrap

2014-09-02 Thread Jan Bierbaum
On 02.09.2014 13:32, Masti Ramya Jayaram wrote: However, now I am trying to call a function in the library through an included header file (which is part of the library) and it fails (undefined reference). Could you give the *exact* error message? BTW, this is something you should always do if