mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
399 B
11 lines
399 B
define: DUK_OPT_DEBUG_BUFSIZE
|
|
introduced: 1.0.0
|
|
requires:
|
|
- DUK_OPT_DEBUG
|
|
tags:
|
|
- debug
|
|
description: >
|
|
Debug code uses a static buffer as a formatting temporary to avoid side
|
|
effects in debug prints. The static buffer is large by default, which
|
|
may be an issue in constrained environments. You can set the buffer size
|
|
manually with this option. Example: -DDUK_OPT_DEBUG_BUFSIZE=2048.
|
|
|