3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00

Merge pull request #2073 from waywardmonkeys/emscripten-no-debug

Define NO_Z3_DEBUGGER for emscripten builds.
This commit is contained in:
Nikolaj Bjorner 2019-01-10 11:39:19 -08:00 committed by GitHub
commit 1e4662e0bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,6 +51,10 @@ bool assertions_enabled();
#endif
#endif
#ifdef __EMSCRIPTEN__
#define NO_Z3_DEBUGGER
#endif
#ifdef NO_Z3_DEBUGGER
#define INVOKE_DEBUGGER() exit(ERR_INTERNAL_FATAL)
#else