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.
1 parent 6d83f7c commit ada30e4Copy full SHA for ada30e4
.github/workflows/hipo-fetch.yml
@@ -294,7 +294,6 @@ jobs:
294
strategy:
295
matrix:
296
config: [Release]
297
- config: [Release, Debug]
298
299
steps:
300
- uses: actions/checkout@v4
highs/CMakeLists.txt
@@ -433,6 +433,10 @@ if(Threads_FOUND)
433
endif()
434
435
if(FAST_BUILD)
436
+ if(CMAKE_SIZEOF_VOID_P EQUAL 4)
437
+ set(THREADS_PREFER_PTHREAD_FLAG ON)
438
+ endif()
439
+
440
target_link_libraries(highs PRIVATE Threads::Threads)
441
else()
442
target_link_libraries(libhighs Threads::Threads)
0 commit comments