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

Define NO_Z3_DEBUGGER for emscripten builds.

This commit is contained in:
Bruce Mitchener 2019-01-07 23:13:09 +07:00
parent bde4ddd861
commit d757c342d5

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