We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using NOCLEAN=1 ./libretro-build.sh dosbox in linux, the core fails to build with errors like this:
NOCLEAN=1 ./libretro-build.sh dosbox
error: ISO C++17 does not allow dynamic exception specifications
The core builds correctly using NOCLEAN=1 CXX="g++ -std=gnu++11" ./libretro-build.sh dosbox
NOCLEAN=1 CXX="g++ -std=gnu++11" ./libretro-build.sh dosbox
Please modify the build script taking this into account.
Thanks.
The text was updated successfully, but these errors were encountered:
This can be fixed by modifying file libretro-dosbox/Makefile.libretro, and add after line 62 (section for platform unix) the following two lines:
libretro-dosbox/Makefile.libretro
CXXFLAGS += -std=gnu++11 CFLAGS += -std=gnu11
Sorry, something went wrong.
No branches or pull requests
Using
NOCLEAN=1 ./libretro-build.sh dosbox
in linux, the core fails to build with errors like this:error: ISO C++17 does not allow dynamic exception specifications
The core builds correctly using
NOCLEAN=1 CXX="g++ -std=gnu++11" ./libretro-build.sh dosbox
Please modify the build script taking this into account.
Thanks.
The text was updated successfully, but these errors were encountered: