Hi,
I'm using ARM DS-5 for my current project. In my workspace, there are two projects: test and test_bsp. My purpose is that the "test_bsp" project includes header and source files, and the application project only needs to call the functions. In the project properties, I've included the paths of all the source and header files in the "test_bsp". However, when I'm trying to build the project, I've still got an error: L2618E: Undefined symbol (my function) (referred from main.o). Here is an example:
In project "test":
main.c:
#include <stdio.h>
#include <test.h>
int main (void)
{
printTest(); //This is where the build errors L6218E undefined symbol are
return 0;
}
In project "test_bsp":
test.h:
void printTest();
test.c:
void printTest()
print("Test");
Yes, I did edit the text when I realize what my problem is. I've already included the path of the test_bsp in the "test" project, however, as I've mentioned, the errors still exist. Could you instruct me more clearly how to solve the linker error of the two projects ?
See the attached example, which you can File > Import into your workspace.
Build the library project, then add this library to the main project via the Project settings
lib_example.zip