Skip to content

Commit 1086fdd

Browse files
committed
Add dtoa to amalgam.js
1 parent 10265d2 commit 1086fdd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

amalgam.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import {loadFile, writeFile} from "qjs:std"
22

33
const cutils_c = loadFile("cutils.c")
44
const cutils_h = loadFile("cutils.h")
5+
const dtoa_c = loadFile("dtoa.c")
6+
const dtoa_h = loadFile("dtoa.h")
57
const libregexp_c = loadFile("libregexp.c")
68
const libregexp_h = loadFile("libregexp.h")
79
const libregexp_opcode_h = loadFile("libregexp-opcode.h")
@@ -25,6 +27,7 @@ let source = "#if defined(QJS_BUILD_LIBC) && defined(__linux__) && !defined(_GNU
2527
+ "#endif\n"
2628
+ quickjs_c_atomics_h
2729
+ cutils_h
30+
+ dtoa_h
2831
+ list_h
2932
+ libunicode_h // exports lre_is_id_start, used by libregexp.h
3033
+ libregexp_h
@@ -33,6 +36,7 @@ let source = "#if defined(QJS_BUILD_LIBC) && defined(__linux__) && !defined(_GNU
3336
+ quickjs_h
3437
+ quickjs_c
3538
+ cutils_c
39+
+ dtoa_c
3640
+ libregexp_c
3741
+ libunicode_c
3842
+ xsum_c

0 commit comments

Comments
 (0)