Skip to content
Snippets Groups Projects
Commit d256d076 authored by Bas Nijholt's avatar Bas Nijholt
Browse files

exit setup.py if BLAS/LAPACK are not found

parent 0becfa4b
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -51,7 +51,7 @@ def configure_extensions(exts, aliases=(), build_summary=None):
continue
l, _, config_file = opt.partition('=')
if l != config_file_option or not config_file:
print('error: Expecting {}=PATH'.format(config_file_option),
print('Error: Expecting {}=PATH'.format(config_file_option),
file=sys.stderr)
sys.exit(1)
sys.argv.pop(i)
......@@ -426,7 +426,10 @@ def search_lapack():
found_libs = search_libs(libs)
if found_libs:
return found_libs
return []
print('Error: BLAS/LAPACK are required but were not found.',
file=sys.stderr)
sys.exit(1)
def configure_special_extensions(exts, build_summary):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment