Skip to content

Commit

Permalink
Disabling duckdb for arm/arm64 and windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Nov 14, 2023
1 parent 1e5f06e commit b424f7f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ if [[ "$PLATFORM" == "linux" && "$ARCH" != "$GOARCH" ]]; then
EXTLD=$LDARCH-linux-$GNUTYPE-g++
fi

if [[ "$PLATFORM" == "linux" && "$ARCH" != "amd64" ]] || [[ "$PLATFORM" == "windows" ]]; then
TAGS+=(no_duckdb)
fi

LDFLAGS=(
-s
-w
Expand Down

0 comments on commit b424f7f

Please sign in to comment.