mirror of https://github.com/pyodide/pyodide.git
Don't inline BLAS/CLAPACK
This commit is contained in:
parent
d6bc94ef53
commit
c992e847b7
|
@ -1,2 +1,2 @@
|
|||
CFLAGS_OPT=-O2
|
||||
LDFLAGS_OPT=-O2
|
||||
CFLAGS_OPT=-O2 -s INLINING_LIMIT=5
|
||||
LDFLAGS_OPT=-O2 -s INLINING_LIMIT=5
|
||||
|
|
|
@ -287,6 +287,8 @@ def handle_command(line, args, dryrun=False):
|
|||
for lib_name in link_libs:
|
||||
arg = os.path.join(lapack_dir, f"{lib_name}")
|
||||
new_args.append(arg)
|
||||
|
||||
new_args.extend(['-s', 'INLINING_LIMIT=5'])
|
||||
continue
|
||||
|
||||
new_args.append(arg)
|
||||
|
|
Loading…
Reference in New Issue