Project Home
Project Home
Source Code
Source Code
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Undefined simple when compiling C++ for armv7le using 4.9.3: (2 Items)
   
Undefined simple when compiling C++ for armv7le using 4.9.3  
Hello

I am trying to compile a c++ application with the 4.9.3 compiler.  Eveything compiles, but the link phase produces the 
following errors:

undefined reference to `std::__throw_out_of_range_fmt(char const*, ...)'

Is there a command line option that needs to be specified in order to link in this symbol? 

Thanks,
Rodney
Re: Undefined simple when compiling C++ for armv7le using 4.9.3  
Hello

I figured it out.  I had installed the 4.8.3 compiler after the 4.9.3 compiler.  This caused the stdc++ library to be 
linked to the older library.

Untarring the 4.9.3 compiler again solved the problem.  

Thanks,
Rodney