Skip to content

Commit

Permalink
fix sym
Browse files Browse the repository at this point in the history
  • Loading branch information
pmp-p committed Nov 26, 2024
1 parent 1cff24a commit ace67a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion cibuild/linkimports.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ _lowerstr
_main
_pg_getport
_pg_initdb
_pg_initdb_main
_pg_shutdown
_readstoplist
_searchstoplist
Expand Down
3 changes: 1 addition & 2 deletions cibuild/pg-git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ else
if $WASI
then

echo "TODO $(which clang)"
CNF="${PGSRC}/configure --prefix=${PGROOT} \
--disable-spinlocks --disable-atomics \
--without-zlib --disable-largefile --without-llvm \
Expand All @@ -55,7 +54,7 @@ else
ZIC=/usr/sbin/zic \
CC=wasi-c \
CXX=wasi-c++ \
CONFIG_SITE==${PGDATA}/config.site CONFIGURE=true \
CONFIG_SITE=${PGDATA}/config.site \
$CNF \
--host=$(arch) --target=wasm32-unknown-wasi --with-template=wasi
then
Expand Down
6 changes: 3 additions & 3 deletions extra/vector.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

mkdir -p build
mkdir -p build src

pushd build
# [ -d pgvector ] || git clone --no-tags --depth 1 --single-branch --branch master https://github.com/pgvector/pgvector
Expand All @@ -9,8 +9,8 @@ pushd build
then
echo using local pgvector
else
wget -c -q https://github.com/pgvector/pgvector/archive/refs/tags/v0.7.3.tar.gz -Opgvector.tar.gz
tar xvfz pgvector.tar.gz && rm pgvector.tar.gz
[ -f ../src/pgvector.tar.gz ] || wget -c -q https://github.com/pgvector/pgvector/archive/refs/tags/v0.8.0.tar.gz -O../src/pgvector.tar.gz
tar xvfz ../src/pgvector.tar.gz
mv pgvector-?.?.? vector
fi
popd
Expand Down

0 comments on commit ace67a0

Please sign in to comment.