You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having issue with rugged gem. Installation went smooth. When I run rails s I get following error
/Users/haiderali/.rvm/gems/ruby-2.7.3/gems/bootsnap-1.7.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:23:in `require': dlopen(/Users/haiderali/.rvm/gems/ruby-2.7.3/gems/rugged-1.0.1/lib/rugged/rugged.bundle, 0x0009):
symbol not found in flat namespace (_git_annotated_commit_free) - /Users/haiderali/.rvm/gems/ruby-2.7.3/gems/rugged-1.0.1/lib/rugged/rugged.bundle (LoadError)
System
ruby-2.7.3
MacOS Monterey (M1)
The text was updated successfully, but these errors were encountered:
It looks like the version of rugged you have does not correspond to the dynamic libgit2 that you have installed where ruby is finding it. If you don't want to manage the dynamic library separately then I would recommend building statically.
The default is to build libgit2 statically into the rugged shared object. If neither of you are overriding this when building, it's possible there is something different on ARM machines or specifically Apple's implementation of it or the tooling for it that might need some adjustment, but I don't have such a machine to test on.
I am having issue with
rugged
gem. Installation went smooth. When I runrails s
I get following errorSystem
The text was updated successfully, but these errors were encountered: