From b998dd325bcb17fa87296fe67c7587e6ff591aa3 Mon Sep 17 00:00:00 2001 From: Giorgos Korfiatis <gkorf@grnet.gr> Date: Wed, 7 Oct 2015 17:13:56 +0300 Subject: [PATCH] explain linking new sqlite in osx --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index e5cc710..7d0a18a 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,14 @@ the Python framework can be created with PyInstaller. 3. Run `pyinstaller agkyra.spec`. This will make the application under `dist/agkyra` (and `dist/agkyra.app` under OSX). +* The sqlite3 version 3.8.5 that comes with Mac OS X 10.10 does not + work properly. You can build agkyra with a newer sqlite3 + library. Assuming you have installed one (eg with brew) under + `/usr/local/opt/sqlite`, you need to build with environment variable + `DYLD_LIBRARY_PATH=/usr/local/opt/sqlite/lib`. Then go to + `dist/agkyra.app/Contents/MacOS` and run `install_name_tool -change + '/usr/lib/libsqlite3.dylib' '@loader_path/libsqlite3.dylib' + _sqlite3.so` ## Copyright and license -- GitLab