aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manual.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/manual.txt b/manual.txt
index 72dd196..dca5b64 100644
--- a/manual.txt
+++ b/manual.txt
@@ -121,6 +121,22 @@ DISABLE_INVALID_NUMBERS:: Recommended on platforms where ++strtod++(3) /
121 the +cjson.refuse_invalid_numbers+ runtime configuration to +true+. 121 the +cjson.refuse_invalid_numbers+ runtime configuration to +true+.
122 122
123 123
124Built-in dtoa() support
125^^^^^^^^^^^^^^^^^^^^^^^
126
127Lua CJSON may be built with David Gay's
128http://www.netlib.org/fp/[floating point conversion routines]. This
129can increase overall performance by 50% or more on some platforms when
130converting data number heavy data. However, this option reduces
131portability and is disabled by default.
132
133[horizontal]
134USE_INTERNAL_DTOA:: Enable internal number conversion routines.
135IEEE_BIG_ENDIAN:: Must be set on big endian architectures.
136MULTIPLE_THREADS:: Must be set when Lua CJSON may be used in a
137 multi-threaded application. Requries _pthreads_.
138
139
124API (Functions) 140API (Functions)
125--------------- 141---------------
126 142