Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

g2o 20241228 #202678

Merged
merged 2 commits into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1048,6 +1048,7 @@ fx
fzf
fzf-make
g-ls
g2o
gabo
gallery-dl
gammaray
Expand Down
8 changes: 4 additions & 4 deletions Formula/g/g2o.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class G2o < Formula
desc "General framework for graph optimization"
homepage "https://openslam-org.github.io/g2o.html"
url "https://github.com/RainerKuemmerle/g2o/archive/refs/tags/20230806_git.tar.gz"
version "20230806"
sha256 "e717d3b96cc6d00fcbbaf637aae648c9823599e6aa8fcf4546fc9ad4034dcde5"
url "https://github.com/RainerKuemmerle/g2o/archive/refs/tags/20241228_git.tar.gz"
version "20241228"
sha256 "d691ead69184ebbb8256c9cd9f4121d1a880b169370efc0554dd31a64802a452"
license "BSD-2-Clause"

livecheck do
Expand Down Expand Up @@ -39,7 +39,7 @@ def install
if Hardware::CPU.intel?
cmake_args << "-DDO_SSE_AUTODETECT=OFF"
case Hardware.oldest_cpu
when :nehalem
when :nehalem, :westmere
cmake_args += %w[-DDISABLE_SSE4_A=ON]
when :core2
cmake_args += %w[-DDISABLE_SSE4_1=ON -DDISABLE_SSE4_2=ON -DDISABLE_SSE4_A=ON]
Expand Down
Loading