Skip to content

Commit 9cbe8b1

Browse files
committed
/usr/lib/
1 parent 0228a6a commit 9cbe8b1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ jobs:
4242
CIBW_BEFORE_BUILD: |
4343
yum install -y epel-release
4444
yum install -y gcc-c++ gsl gsl-devel
45-
find / -name "libgsl.so*" 2>/dev/null
46-
ls -l /usr/lib64 | grep gsl
45+
ls -l /usr/lib/
4746
4847
- uses: actions/upload-artifact@v4
4948
with:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def get_gsl_config_win():
9595
compiler_type = get_compiler_type()
9696
if compiler_type in ("unix", "cygwin", "mingw32"):
9797
extra_compile_args = ["-std=c++11", "-Wall", "-Wno-write-strings", "-O3", "-funroll-loops", "-ffast-math"]
98-
extra_objects += ((p + "/libgsl.so") for p in gcfg["library_dirs"])
98+
extra_objects += ((p + "/libgsl.a") for p in gcfg["library_dirs"])
9999
elif compiler_type == "msvc":
100100
define_macros += [("_USE_MATH_DEFINES", None)]
101101
extra_compile_args = ["/EHs"]

0 commit comments

Comments
 (0)