We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae8b9ce + d40359f commit 2ada30dCopy full SHA for 2ada30d
numpy/core/setup.py
@@ -1113,6 +1113,10 @@ def generate_umath_doc_header(ext, build_dir):
1113
svml_objs = glob.glob(svml_path + '/**/*.s', recursive=True)
1114
svml_objs = [o for o in svml_objs if not o.endswith(svml_filter)]
1115
1116
+ # The ordering of names returned by glob is undefined, so we sort
1117
+ # to make builds reproducible.
1118
+ svml_objs.sort()
1119
+
1120
config.add_extension('_multiarray_umath',
1121
# Forcing C language even though we have C++ sources.
1122
# It forces the C linker and don't link C++ runtime.
0 commit comments