summaryrefslogtreecommitdiff
path: root/qjs.c
diff options
context:
space:
mode:
authorbellard <6490144+bellard@users.noreply.github.com>2023-12-04 19:26:32 +0100
committerbellard <6490144+bellard@users.noreply.github.com>2023-12-04 19:26:32 +0100
commit94010edb5794b06e122cfb9ea6ed9c6be9db6c03 (patch)
treeeb95989dbda7189d31c6152633365302cfdcf70c /qjs.c
parent03cc5ecc88f8534a5db5c911df4b712a21d08fb8 (diff)
downloadquickjs-94010edb5794b06e122cfb9ea6ed9c6be9db6c03.tar.gz
quickjs-94010edb5794b06e122cfb9ea6ed9c6be9db6c03.zip
the BigInt support is now always included
Diffstat (limited to 'qjs.c')
-rw-r--r--qjs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/qjs.c b/qjs.c
index d56b843..c2d63e9 100644
--- a/qjs.c
+++ b/qjs.c
@@ -454,8 +454,10 @@ int main(int argc, char **argv)
}
}
+#ifdef CONFIG_BIGNUM
if (load_jscalc)
bignum_ext = 1;
+#endif
if (trace_memory) {
js_trace_malloc_init(&trace_data);