AMBuildScript needs '-std=c++14', instead of '-std=c++11',

def configure_linux(self, cxx): cxx.defines += ['_LINUX', 'POSIX'] cxx.linkflags += ['-Wl,--exclude-libs,ALL', '-lm'] if cxx.vendor == 'gcc': cxx.linkflags += ['-static-libgcc'] elif cxx.vendor == 'clang': cxx.linkflags += ['--static-libgcc']

remember to use that instead of cxx.linkflags += ['-static-libgcc'] and cxx.linkflags += ['-lgcc_eh']

S
Description
No description provided
Readme
393 KiB
Languages
C++ 51.7%
Python 41.8%
C 4.6%
SourcePawn 1.8%
Batchfile 0.1%