Commit c992e847 authored by Roman Yurchak's avatar Roman Yurchak

Don't inline BLAS/CLAPACK

parent d6bc94ef
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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment