This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Link errors with template libraries

I am getting the following unresolved errors linking with STL libraries. 

 undefined                                                                                                       first referenced                                                                   
  symbol                                                                                                             in file                                                                        
 ---------                                                                                                       ----------------                                                                   
 std::_Facetptr<T1>::_Psave [with T1=std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char>>>] C:\\TIProjects\\V2\\\Common\\lib\\Framework.lib<Line.obj>
 std::_Facetptr<T1>::_Psave [with T1=std::ctype<char>]                                                           C:\\TIProjects\\V2\\Common\\lib\\Framework.lib<Line.obj>
 std::_Facetptr<T1>::_Psave [with T1=std::numpunct<char>]                                                        C:\\TIProjects\\V2\\Common\\lib\\Framework.lib<Line.obj>
 std::numpunct<T1>::id [with T1=char]                                                                            C:\\TIProjects\\V2\Common\\lib\\Framework.lib<Line.obj>
 std::num_put<T1, T2>::id [with T1=char, T2=std::ostreambuf_iterator<char, std::char_traits<char>>]        

I am aware of the article http://processors.wiki.ti.com/index.php/C%2B%2B_Template_Instantiation_Issues but how do know what the explicit instantiation is for the above.  I got around teh std::string unresolved external by using the "template class std::basic_string<char>;" as shown in the Fourth Workaround in teh article but i am at a loss for the rest.

 I am using the latest compiler 7.0.3 and CCS Studio 3.3

Any help would be greatly appreciated.

Thanks again.