Compilation in Manjaro Linux
Closed this issue · 1 comments
Fubukimaru commented
Hello!
First of all, nice work :).
I had issues compiling your code. Mainly the error was this one:
states/racemanager.h:23:23: error: ‘string’ is not a member of ‘std’
I have fixed it including #include <string>
in states/racemanager.h
. Does it make sense?
In case you need it, here is the information of my compiler:
> c++ -v
Using built-in specs.
COLLECT_GCC=c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.2.0 (GCC)
diegoroyo commented
I was not able to reproduce the error on my end, but it looks like it's due to version differences and is nothing important.
I added the #include
directive. Thanks for your feedback!