This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

How to link in NDK library , os.aa15fg, via xdc

I’m working on an application which requires the following NDK library:

 os.aa15fg

 

Currently, I’ve manually updated the application configuration by including “os.aa15fg” in the list of libraries and also a library search path to this library via CCS.

 

In my project cfg file, I’m using other NDK libraries as follows:

 

var Global                                          = xdc.useModule('ti.ndk.config.Global');

var Ip                                                  = xdc.useModule('ti.ndk.config.Ip');

var Tcp             = xdc.useModule('ti.ndk.config.Tcp');

var Udp             = xdc.useModule('ti.ndk.config.Udp');

var Telnet          = xdc.useModule('ti.ndk.config.Telnet');

 

 

Each of the above xdc.useModule cause a library to be linked. However, I don’t see means of xdc to link in the os.aa15fg library because package.xs file of “os”, the getLibs is basically blank.

 

How was it intended for a user to link in os.aa15fg via xdc?