Skip to content

Commit

Permalink
Fix libc++abi macos download
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunlol committed Feb 14, 2025
1 parent 2f7a87e commit 2e79eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ curl -L "$DOWNLOAD_URL" -o ./bemidb

if [ "$ARCH" = "arm64" ] && [ "$OS" = "darwin" ]; then
# Download the libc++ dynamic libraries for macOS (can't be statically linked)
curl -sL "https://github.com/BemiHQ/BemiDB/releases/download/v$VERSION/libc++.1.0.dylib" -o ./libc++.1.0.dylib
curl -sL "https://github.com/BemiHQ/BemiDB/releases/latest/download/libc++.1.0.dylib" -o ./libc++.1.0.dylib
sudo mv ./libc++.1.0.dylib /usr/local/lib/libc++.1.0.dylib
curl -sL "https://github.com/BemiHQ/BemiDB/releases/download/v$VERSION/libc++abi.1.dylib" -o ./libc++abi.1.dylib
curl -sL "https://github.com/BemiHQ/BemiDB/releases/latest/download/libc++abi.1.dylib" -o ./libc++abi.1.dylib
sudo mv ./libc++abi.1.dylib /usr/local/lib/libc++abi.1.dylib
fi

Expand Down

0 comments on commit 2e79eae

Please sign in to comment.