From 19bf2f5084b3a754d81c4da49e760762f9d2c4b4 Mon Sep 17 00:00:00 2001 From: auxten Date: Sat, 23 Mar 2024 12:20:40 +0800 Subject: [PATCH] Delete chdb/build_bind.sh --- chdb/build_bind.sh | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100755 chdb/build_bind.sh diff --git a/chdb/build_bind.sh b/chdb/build_bind.sh deleted file mode 100755 index 1fecb341707..00000000000 --- a/chdb/build_bind.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -set -e - -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" - -. ${DIR}/vars.sh - -cd ${CHDB_DIR} - -CHDB_PY_MODULE="_chdb$(python3-config --extension-suffix)" - -# compile the pybind module, MUST use "./libchdb.so" instead of ${LIBCHDB} or "libchdb.so" -clang++ -O3 -Wall -shared -std=c++17 -fPIC -I../ -I../base -I../src -I../programs/local/ \ - $(python3 -m pybind11 --includes) chdb.cpp \ - -Wl,--exclude-libs,ALL -stdlib=libstdc++ -static-libstdc++ -static-libgcc \ - ./libchdb.so -o ${CHDB_PY_MODULE}