File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import {loadFile, writeFile} from "qjs:std"
2
2
3
3
const cutils_c = loadFile ( "cutils.c" )
4
4
const cutils_h = loadFile ( "cutils.h" )
5
+ const dtoa_c = loadFile ( "dtoa.c" )
6
+ const dtoa_h = loadFile ( "dtoa.h" )
5
7
const libregexp_c = loadFile ( "libregexp.c" )
6
8
const libregexp_h = loadFile ( "libregexp.h" )
7
9
const libregexp_opcode_h = loadFile ( "libregexp-opcode.h" )
@@ -25,6 +27,7 @@ let source = "#if defined(QJS_BUILD_LIBC) && defined(__linux__) && !defined(_GNU
25
27
+ "#endif\n"
26
28
+ quickjs_c_atomics_h
27
29
+ cutils_h
30
+ + dtoa_h
28
31
+ list_h
29
32
+ libunicode_h // exports lre_is_id_start, used by libregexp.h
30
33
+ libregexp_h
@@ -33,6 +36,7 @@ let source = "#if defined(QJS_BUILD_LIBC) && defined(__linux__) && !defined(_GNU
33
36
+ quickjs_h
34
37
+ quickjs_c
35
38
+ cutils_c
39
+ + dtoa_c
36
40
+ libregexp_c
37
41
+ libunicode_c
38
42
+ xsum_c
You can’t perform that action at this time.
0 commit comments