Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Upgrade Sleipnir to fmtlib 11.0.0 #223

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ fn main() {
.include(format!("{}/include/eigen3", cmake_dest.display()))
.std("c++20");

if cfg!(target_os = "windows") {
bridge_build.flag("/EHsc").flag("/utf-8");
}

bridge_build.compile("trajoptrust");

println!(
Expand Down
4 changes: 2 additions & 2 deletions cmake/0001-Downgrade-to-C-20.patch
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ index e9668b53d6a0317cf2367b212f5013cbb2aa7ad5..1db191b6492a5f10b657c42c7959a73e
+fetchcontent_declare(
+ fmt
+ GIT_REPOSITORY https://github.com/fmtlib/fmt.git
+ GIT_TAG 10.2.1
+ GIT_TAG 11.0.0
+)
+fetchcontent_makeavailable(fmt)
+
Expand Down Expand Up @@ -79,7 +79,7 @@ index 339320bce6d017ca85025060ba445b2f025bb225..fcf2e69bfb5a081cd915bdded3caa80c
#include <system_error>
#include <utility>

+#include <fmt/core.h>
+#include <fmt/base.h>
+
namespace sleipnir {

Expand Down
Loading