Skip to content

Commit da59868

Browse files
committed
Update
1 parent 42ca324 commit da59868

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/julia/build_tarballs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ sources = [
1717
"https://github.com/phracker/MacOSX-SDKs/releases/download/10.15/MacOSX10.13.sdk.tar.xz",
1818
"a3a077385205039a7c6f9e2c98ecdf2a720b2a819da715e03e0630c75782c1e4"
1919
),
20-
DirectorySource("./bundled/")
20+
DirectorySource(joinpath(@__DIR__, "bundled"))
2121
]
2222

2323
# Bash recipe for building across all platforms
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
--- papilo/binaries/CMakeLists.txt 2024-12-26 02:45:23.608452403 +0000
2+
+++ papilo/binaries/CMakeLists.txt 2024-12-26 02:45:29.320347256 +0000
3+
@@ -76,6 +76,17 @@
4+
set(PAPILO_HAVE_ROUNDINGSAT 0)
5+
endif()
6+
7+
+# Enable the Fortran language support when the clusol target is included.
8+
+# Even though this was done in the papilo CMake to create the target, it must be
9+
+# done here as well, since the language support is contained to the calling directory
10+
+# and lower, and since the papilo/binaries CMake file can be called from the top-level
11+
+# CMake, which doesn't have Fortran language enabled, Fortran might not be enabled here yet.
12+
+if(TARGET clusol)
13+
+ include(CheckLanguage)
14+
+ check_language(Fortran)
15+
+ enable_language(Fortran)
16+
+endif()
17+
+
18+
# Search again since we cannot rely on papilo/CMakeLists.txt having searched for Boost already.
19+
find_package(Boost ${BOOST_MIN_VERSION} OPTIONAL_COMPONENTS iostreams program_options serialization)

0 commit comments

Comments
 (0)