I am testing code using Code Composer. The code contains functions that access hardware and I want to stub out these function in a test driver. I link the test driver with libraries of containg the prime software.
However, I get a message similar to
error #10056: symbol "_Test_cleanup" redefined: first defined in "test.obj"; redefined in
"C:\Embraer\CSeries\RBT\ToolsLib\TI\Test_Lib_TI.lib<m_compare.obj>"
error #10010: errors encountered during linking; "test.out" not built
From the manuals it seems it should be possible to link my test driver object code with the prime library. I thought that if I used the --priority option if would be able to link in the function from my test driver and have the one in the prime software ignored.
Am I understanding the manual incorrectly?