i want to add a .lib file on my project about S32K144.
what i should do ?
Hi,
Just a comment to the name of added library.
GCC/linker expects the default library <name> : lib<name>
if there is a different prefix than "lib" please add ":" as a leading character.
real library file name | GCC Libraries dialog - Enter Value dialog |
---|---|
libmy_math.a | my_math.a |
my_math.a | :my_math.a |
Regards,
Stan
Hello,
right click on your project name in the Project explorer -> Properties -> C/C++ Build -> Settings -> Libraries
Click on add icon in libraries text area and type your_library.lib. If your_library.lib is not in the default library search path - you should also add path to your library.
Jiri