View Single Post
  #1  
Old 10-07-2014, 10:35 AM
CoryWalker
Fire Beetle
 
Join Date: Oct 2014
Posts: 23
Default Compiling EQEMu with gcc49 fails on FreeBSD 10.0 x64

I'm getting compilation errors on FreeBSD 10.0 x64 using both gcc49 and clang with flag -std=c++11.

The problem is in the following file:

/usr/local/build/eqemu/common/debug.cpp:369:23

Here is the full error:

--
/usr/local/build/eqemu/common/debug.cpp: In member function 'bool EQEMuLog::Dump(EQEMuLog::LogIDs, uint8*, uint32, uint32, uint32)':
/usr/local/build/eqemu/common/debug.cpp:369:23: error: 'to_string' is not a member of 'std'
asciiOutput.append(std::to_string((long long)data[indexInData]));
--

The top of this file has the necessary includes that would normally place this function into the correct "std" namespace - so I wonder what is going on here?

Please let me know if you need any additional information.
Reply With Quote