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
At the time of this writing, these binaries are not signed.
(though I've renewed my Apple Developer account and I'm working through the signing process now)
This means you must manually remove them from quarantine to run them:
Table of Contents
How to Install
Webi (macOS, Linux, etc)
curl -sS https://webi.sh/postgres | sh
Manually
At the time of this writing, these binaries are not signed.
(though I've renewed my Apple Developer account and I'm working through the signing process now)
This means you must manually remove them from quarantine to run them:
# xattr -r -d com.apple.quarantine <path-to-bins> xattr -r -d com.apple.quarantine ./postgres-17.0.0-x86_64-darwin
Goal
Build postgres on one mac that will also run on others -- without having to install brew, etc.
Update: Haha! I've cracked the code! Full script below.
Build Overview
DYLD_RUN_PATH
due tosip
issues)Note: this attempts to match the install of llvm to
clang --version
to avoid incompatibilities when compiling.Install Notes
xattr -r -d com.apple.quarantine ~/Downloads/postgres-17/
llvm
is optional, but must be installed (at the same version as the build) for JIT query optimizations to functionComplete Build Script
Build
Update: This script is now maintained as https://github.com/bnnanet/pg-essentials/blob/main/pg-build-macos
References
See:
The text was updated successfully, but these errors were encountered: