EMPLACE Error Collection with gcc 4.7

Hi, I am trying to compile ArangoDB for ARM running DEBIAN for armhf. 2.2 does not work, because of this , so I tried 2.3, as suggested. Now the problem is:
./arangod/Aql/Collections.h:87:28: error: 'class std::map<std::basic_string<char>, triagens::aql::Collection*>' has no member named 'emplace'

Unfortunately, I cannot install gcc 4.8. I have 4.7 to compile aragoDB. Yes, does anyone know how to get around this problem and continue working with compilation?

Thanks in advance.

+4
source share
1 answer

As mentioned in the comments, you will need gcc 4.8 (or higher) to compile.

The compilation problem has been fixed in 2.2, and it should compile successfully.

+5
source

All Articles