|
|
Re: problem with .so files in IDE for windows
|
|
06/03/2008 9:39 AM
post8679
|
Re: problem with .so files in IDE for windows
Just add this libraries into your launch configuration to upload them to
the target during the session.
Victor Martín wrote:
> Thank you for your reply.
>
> .so file is my own built library. If I do it like you say, the building is
ok, but when I run the program I get the console message:
>
> "Could not find library C:/QNX630/workspace/lib/libconfig/so/libconfig.so"
>
> What am I doing wrong?
>
> _______________________________________________
> General
> http://community.qnx.com/sf/go/post8678
>
>
|
|
|
|
|
|
|
Re: problem with .so files in IDE for windows
|
|
06/03/2008 9:40 AM
post8680
|
Re: problem with .so files in IDE for windows
You can put your library in the directory where program would run, by
default if you launch from IDE it would be /tmp.
It should find it automatically. It is really suspicious that you
library name has full windows path, loader would not be able to find
this with this path. Can you open you binary in binary editor and check
what is written in section NEEDED? Should be like NEEDED
libconfig.so.1
If it is the case rename you file on the target to libconfig.so.1.
If you actually developing your library you can ask IDE to upload it
automatically every time you run the application, you can use Download
tab of launch configuration for that.
Victor Martín wrote:
> Thank you for your reply.
>
> .so file is my own built library. If I do it like you say, the building is
ok, but when I run the program I get the console message:
>
> "Could not find library C:/QNX630/workspace/lib/libconfig/so/libconfig.so"
>
> What am I doing wrong?
>
> _______________________________________________
> General
> http://community.qnx.com/sf/go/post8678
>
>
|
|
|
|
|