View Single Post
  #4  
Old 10-07-2014, 08:08 PM
CoryWalker
Fire Beetle
 
Join Date: Oct 2014
Posts: 23
Default

jdoran - Yes - that was the first and only error message for that file. That specific line in debug.cpp doesn't appear that important. After commenting it out I found that several other files are affected in exactly the same way. There are many files that use the std::to_string function.

KLS - Yes - I believe you have pinpointed the exact problem. This will not compile because of that _GLIBCXX_USE_C99 issue.

The exact version of gcc I'm using is 4.9.1 and as you've pointed out in the link this also explains why clang won't work either - this is a FreeBSD specific issue.

I suppose this is a good time to ask the following question. What are this project's portability goals?

Last edited by CoryWalker; 10-07-2014 at 08:10 PM.. Reason: Minor grammar error.
Reply With Quote