Tool/software: Code Composer Studio
I have a project that has a mix of both C and C++ files. I would like to make a static library so that another user can call the C functions and the public C++ functions. I tried following this example https://www.youtube.com/watch?v=FzHtq51IjDM but I was only able to make calls to the C functions compile, calls to the C++ functions did not compile. Additionally, when I called the C functions the program compiled and ran but I was not able to set a breakpoint in the program to check that the C functions were working correctly and the when I ran the program it did not stop before entering main.
Is it possible to make a static library that has mixed C/C++ functions? Why did my program not stop before entering main when I ran it?