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
{{ message }}
This repository was archived by the owner on Nov 29, 2023. It is now read-only.
Most of this issue is to address the bad experience I had with trying to compile orbital on MacOS 11.1.
= note: ld: library not found for -lpq
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: aborting due to previous error
error: could not compile `orb`
Which I fixed by installing postgres via homebrew (Installing libpq did not solve).
brew install postgres
I also needed to install mariadb via homebrew in order to install diesel_cli for the database migrations.
brew install mariadb
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Most of this issue is to address the bad experience I had with trying to compile orbital on MacOS 11.1.
Which I fixed by installing
postgres
via homebrew (Installinglibpq
did not solve).brew install postgres
I also needed to install
mariadb
via homebrew in order to installdiesel_cli
for the database migrations.brew install mariadb
The text was updated successfully, but these errors were encountered: