We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8efedf commit ea3a9baCopy full SHA for ea3a9ba
_compile.py
@@ -108,6 +108,7 @@ def find_env() -> dict[str, str]:
108
f"-L{expected_omp_dir}",
109
"-lomp",
110
]
111
+ linker_math += ["-L/usr/lib/"]
112
113
else:
114
print(f"Expected OpenMP dir not found: {expected_omp_dir}, compiling without OpenMP")
@@ -117,7 +118,7 @@ def find_env() -> dict[str, str]:
117
118
# FreeBSD specific flags
119
if "freebsd" in sys.platform:
120
# Location of BLAS / Lapack for FreeBSD 14
- linker_math += ["/usr/local/lib/"]
121
+ linker_math += ["-L/usr/local/lib/"]
122
123
fflags = [] + compiler_flags + compiler_openmp
124
ldflags = [] + linker_flags + linker_math + linker_openmp
0 commit comments