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
Recently had trouble installing snippy via homebrew on macOS Sonoma 14.5:
brew install snippy
Snippy errored with:
Clone.c: loadable library and perl binaries are mismatched (got handshake key 0x10200080, needed 0xfb80080)
The #! line in snippy was:
#!/usr/bin/perl34
Changing this to:
#!/usr/bin/env perl
so that the user's homebrew install perl was being used instead of the system perl fixes the problem.
Maybe this could be changed in the codebase, it seems like it must be a problem generally, although quite possible I've missed something, in which case apologies.
The text was updated successfully, but these errors were encountered:
Hi,
Recently had trouble installing snippy via homebrew on macOS Sonoma 14.5:
brew install snippy
Snippy errored with:
Clone.c: loadable library and perl binaries are mismatched (got handshake key 0x10200080, needed 0xfb80080)
The #! line in snippy was:
#!/usr/bin/perl34
Changing this to:
#!/usr/bin/env perl
so that the user's homebrew install perl was being used instead of the system perl fixes the problem.
Maybe this could be changed in the codebase, it seems like it must be a problem generally, although quite possible I've missed something, in which case apologies.
The text was updated successfully, but these errors were encountered: