Skip to content

Commit

Permalink
Build Sqlite with SQLITE_ENABLE_DBSTAT_VTAB. Fixes #309. (#375)
Browse files Browse the repository at this point in the history
Co-authored-by: Zanie Blue <[email protected]>
  • Loading branch information
cjrh and zanieb authored Oct 30, 2024
1 parent e8b031b commit 5aa0709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpython-unix/build-sqlite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ elif [ "${TARGET_TRIPLE}" = "x86_64-apple-ios" ]; then
CONFIGURE_FLAGS="${CONFIGURE_FLAGS} ac_cv_search_system=no"
fi

CFLAGS="${EXTRA_TARGET_CFLAGS} -fPIC" CPPFLAGS="${EXTRA_TARGET_CFLAGS} -fPIC" LDFLAGS="${EXTRA_TARGET_LDFLAGS}" ./configure ${CONFIGURE_FLAGS}
CFLAGS="${EXTRA_TARGET_CFLAGS} -DSQLITE_ENABLE_DBSTAT_VTAB -fPIC" CPPFLAGS="${EXTRA_TARGET_CFLAGS} -fPIC" LDFLAGS="${EXTRA_TARGET_LDFLAGS}" ./configure ${CONFIGURE_FLAGS}

make -j ${NUM_CPUS}
make -j ${NUM_CPUS} install DESTDIR=${ROOT}/out

0 comments on commit 5aa0709

Please sign in to comment.