Skip to content

Commit ff8c96f

Browse files
committed
fix(android): increase max page size to 16kb #36
1 parent 9835b2e commit ff8c96f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ else ifeq ($(PLATFORM),android)
7676
endif
7777
CC = $(BIN)/$(ARCH)-linux-$(ANDROID_ABI)-clang
7878
TARGET := $(DIST_DIR)/vector.so
79-
LDFLAGS += -lm -shared
79+
LDFLAGS += -lm -shared -Wl,-z,max-page-size=16384
8080
STRIP = $(BIN)/llvm-strip --strip-unneeded $@
8181
else ifeq ($(PLATFORM),ios)
8282
TARGET := $(DIST_DIR)/vector.dylib

src/sqlite-vector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
extern "C" {
2525
#endif
2626

27-
#define SQLITE_VECTOR_VERSION "0.9.60"
27+
#define SQLITE_VECTOR_VERSION "0.9.70"
2828

2929
SQLITE_VECTOR_API int sqlite3_vector_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
3030

0 commit comments

Comments
 (0)