diff options
author | bellard <6490144+bellard@users.noreply.github.com> | 2023-12-04 19:26:32 +0100 |
---|---|---|
committer | bellard <6490144+bellard@users.noreply.github.com> | 2023-12-04 19:26:32 +0100 |
commit | 94010edb5794b06e122cfb9ea6ed9c6be9db6c03 (patch) | |
tree | eb95989dbda7189d31c6152633365302cfdcf70c /qjs.c | |
parent | 03cc5ecc88f8534a5db5c911df4b712a21d08fb8 (diff) | |
download | quickjs-94010edb5794b06e122cfb9ea6ed9c6be9db6c03.tar.gz quickjs-94010edb5794b06e122cfb9ea6ed9c6be9db6c03.zip |
the BigInt support is now always included
Diffstat (limited to 'qjs.c')
-rw-r--r-- | qjs.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |