Skip to content

Commit

Permalink
test for missing third party lib
Browse files Browse the repository at this point in the history
  • Loading branch information
pmp-p committed Jun 19, 2024
1 parent 96ac12e commit 973a83e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion cibuild/linkweb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,13 @@ PG_O="../../src/fe_utils/string_utils.o ../../src/common/logging.o \
PG_L="-L../../src/port -L../../src/common \
../../src/common/libpgcommon_srv.a ../../src/port/libpgport_srv.a"

PG_L="$PG_L -L../../src/interfaces/ecpg/ecpglib ../../src/interfaces/ecpg/ecpglib/libecpg.so /tmp/pglite/lib/postgresql/libduckdb.so"
if [ -f /tmp/pglite/lib/postgresql/libduckdb.so ]
then
PG_L="$PG_L -L../../src/interfaces/ecpg/ecpglib ../../src/interfaces/ecpg/ecpglib/libecpg.so /tmp/pglite/lib/postgresql/libduckdb.so"
else
PG_L="$PG_L -L../../src/interfaces/ecpg/ecpglib ../../src/interfaces/ecpg/ecpglib/libecpg.so"
fi


## \
# /opt/python-wasm-sdk/devices/emsdk/usr/lib/libxml2.a \
Expand Down

0 comments on commit 973a83e

Please sign in to comment.