On 12/9/19 2:32 pm, Gedare Bloom wrote:
> You're right, it looks like the "RTEMS Development Environment Guide"
> needs an update. You should for the most part be able to replace
> c/src/lib/libbsp by bsps, except that paths to include files have also
> been modified.
The other little wobble is th
On Wed, Sep 11, 2019 at 10:32 PM Gedare Bloom wrote:
>
> Hi Rob,
>
> You're right, it looks like the "RTEMS Development Environment Guide"
> needs an update. You should for the most part be able to replace
> c/src/lib/libbsp by bsps, except that paths to include files have also
> been modified.
>
Hi Rob,
You're right, it looks like the "RTEMS Development Environment Guide"
needs an update. You should for the most part be able to replace
c/src/lib/libbsp by bsps, except that paths to include files have also
been modified.
On Mon, Sep 9, 2019 at 2:51 PM Joel Sherrill wrote:
> On Mon, Sep 9
On 10/9/19 10:23 am, jaeho jo wrote:
> I wonder if I can resolve the symbol between the two RAP files for dynamic
> load.
>
> ex)
> a.c. / b.c. / main.c.
>
> a.c. -> a.rap
> - define 'a_test_func()'
>
> b.c. -> b.rap
> - use 'a_test_func()'
>
> main.c -> BaseImage
>
>
> Attempting to generat
HI,
It is possible, declare 'a_test_fun()' as a weak function in b.c, this makes
rtems-ld happy.
When load object file strong symbol will be link first.
-- Original --
From: "jaeho jo";
Date: Tue, Sep 10, 2019 08:23 AM
To: "users";
Subject: symbol resolve betwe