Skip to content

Commit 3f133de

Browse files
committed
on
1 parent 78f25a9 commit 3f133de

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/hipo-macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,31 +38,31 @@ jobs:
3838
if: ${{ matrix.config == 'Release' }}
3939
run: |
4040
cd GKlib
41-
make config shared=1 prefix=${{runner.workspace}}/installs
41+
make config prefix=${{runner.workspace}}/installs
4242
make
4343
make install
4444
4545
- name: Install GKlib Debug
4646
if: ${{ matrix.config == 'Debug' }}
4747
run: |
4848
cd GKlib
49-
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
49+
make config prefix=${{runner.workspace}}/installs gdb=1 debug=1
5050
make
5151
make install
5252
5353
- name: Install METIS Release
5454
if: ${{ matrix.config == 'Release'}}
5555
run: |
5656
cd METIS
57-
make config shared=1 prefix=${{runner.workspace}}/installs
57+
make config prefix=${{runner.workspace}}/installs
5858
make
5959
make install
6060
6161
- name: Install METIS Debug
6262
if: ${{ matrix.config == 'Debug'}}
6363
run: |
6464
cd METIS
65-
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
65+
make config prefix=${{runner.workspace}}/installs gdb=1 debug=1
6666
make
6767
make install
6868

highs/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ else()
217217
endif(APPLE)
218218
else()
219219
# BLA_VENDOR Specified
220-
target_link_libraries(highs BLAS::BLAS)
220+
target_link_libraries(highs PRIVATE BLAS::BLAS)
221221

222222
string(TOLOWER "${BLAS_LIBRARIES}" blas_lower)
223223
if(blas_lower MATCHES "openblas")

0 commit comments

Comments
 (0)