Skip to content

Commit dca1f90

Browse files
committed
Attempt to get long doubles working
1 parent edc59b0 commit dca1f90

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

tasks.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,15 @@ def cpython(ctx, clean=False, noconf=False, nobuild=False):
112112
"-Xlinker --no-gc-sections",
113113
]
114114

115+
# Link in extra printscan
116+
link_libs = "-lc-printscan-long-double"
117+
115118
# Configure
116119
configure_cmd = [
117120
"CONFIG_SITE=./config.site",
118121
"READELF=true",
119122
"./configure",
123+
'LIBS="{}"'.format(link_libs),
120124
"CC={}".format(WASM_CC),
121125
"CXX={}".format(WASM_CXX),
122126
"CPP={}".format(WASM_CPP),

third-party/numpy

Submodule numpy updated from 81b5768 to b15e419

0 commit comments

Comments
 (0)