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.
14 lines
513 B
14 lines
513 B
define: DUK_USE_ROM_STRINGS
|
|
feature_enables: DUK_OPT_ROM_STRINGS
|
|
introduced: 1.5.0
|
|
requires:
|
|
- DUK_USE_ROM_OBJECTS # use both DUK_USE_ROM_STRINGS + DUK_USE_ROM_OBJECTS together for now
|
|
default: false
|
|
tags:
|
|
- lowmemory
|
|
- experimental
|
|
description: >
|
|
Enable support for built-in (and optional user-supplied strings) which are
|
|
compiled as constants and placed in a read-only data section. This reduces
|
|
startup RAM usage considerably at the cost of a larger code footprint and
|
|
slower string interning.
|
|
|