diff options
author | Stefan Saraev <stefan@saraev.ca> | 2015-09-14 09:47:48 +0300 |
---|---|---|
committer | Stefan Saraev <stefan@saraev.ca> | 2015-09-14 09:48:46 +0300 |
commit | b4d10ccc4d893c5cbf9bccc78c0f740ba9401195 (patch) | |
tree | 7c0f9d5b0083dde46d3aa05e95da025db2039e63 | |
parent | ea6eeea841c2927c2ac839c77b8f98f6372aaa4e (diff) |
sqlite3: dont apply map_populate patch on android
-rw-r--r-- | tools/depends/target/sqlite3/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/depends/target/sqlite3/Makefile b/tools/depends/target/sqlite3/Makefile index f7e95be6e8..5ed4429c12 100644 --- a/tools/depends/target/sqlite3/Makefile +++ b/tools/depends/target/sqlite3/Makefile @@ -30,7 +30,10 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) ifeq ($(OS),android) cd $(PLATFORM); patch -p0 < ../fix-32bits-on-64bits.patch endif +# seems MAP_POPULATE is broken on aarch64 +ifneq ($(OS),android) cd $(PLATFORM); patch -p1 < ../sqlite3.c.patch +endif cd $(PLATFORM); $(CONFIGURE) $(LIBDYLIB): $(PLATFORM) |