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 suspect there's a kind of misconfiguration with my Homebrew so the include and libs for libevent aren't being found, but also I don't know why when compiling c_src/katipo.c the architecture is not set correctly:
$ arch
arm64
Is anybody facing a similar issue?
EDIT
Versions
$ brew -v
Homebrew 4.1.3
Homebrew/homebrew-core (git revision 7a144369d9e; last commit 2023-07-12)
Homebrew/homebrew-cask (git revision cb0391d439; last commit 2023-07-12)
$ gcc -v
Apple clang version 14.0.3 (clang-1403.0.22.14.1)
Target: arm64-apple-darwin22.6.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
$ cc -v
Apple clang version 14.0.3 (clang-1403.0.22.14.1)
Target: arm64-apple-darwin22.6.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
$ rebar3 -v
rebar 3.22.0 on Erlang/OTP 24 Erts 12.3.2.13
The text was updated successfully, but these errors were encountered:
Hi,
I'm having an issue when compiling
katipo
on MacOS Ventura 13.5 M1 as you can see in the logs below:Steps to reproduce
rebar3 compile
Workaround
I found this answer on StackExchange that helped pass through the
fatal error: 'event.h' file not found
.But then I get the following error:
which I solved by running the same command shown just after the
===> Verifying dependencies...
but with the flag-arch arm64
:and only after that I can compile
katipo
:I suspect there's a kind of misconfiguration with my Homebrew so the include and libs for
libevent
aren't being found, but also I don't know why when compilingc_src/katipo.c
the architecture is not set correctly:Is anybody facing a similar issue?
EDIT
Versions
The text was updated successfully, but these errors were encountered: