2009-02-26 03:23 PM
Creating and Using Library In Anglia
2011-05-17 12:57 AM
Hi all
I am using Anglie IDE and GCC compiler. I want to create library file and want to link the same in other project. I have created library using Anglia. But when I add it in my project and build the project. It is not getting linked and it gives undefined reference for the function in library.I have included header file in c file where I have called the library function. Regards Sai2011-05-17 12:57 AM
Just add the lib to the 'user libs' section of the linker options - omitting the lib suffix .a
you may also need to add the lib path to the linker options. Cheers sjo2011-05-17 12:57 AM
Thank you sjo
I have followed your instructions and got success in creation and use of library. Regards Sai