duktape: Duktape fails to compile with DJGPP (DOS port of GCC)
There is a very simple fix, though… I added in
#ifdef __DJGPP
#undef DUK_USE_DATE_PRS_STRPTIME
#endif
in duk_config.h after the OS/compiler detection logic and my test program compiled and ran flawlessly.
About this issue
- Original URL
- State: open
- Created 2 years ago
- Comments: 15 (9 by maintainers)
Re: SIGABRT, it’s best practice for the first call into Duktape to be a protected one (e.g. duk_safe_call()) so that you should not easily be able to invoke an abort.