File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -161,8 +161,6 @@ To run against SQLCipher, you need to compile `sqlite3` from source by passing b
161161
162162``` bash
163163npm install sqlite3 --build-from-source --sqlite_libname=sqlcipher --sqlite=/usr/
164-
165- node -e ' require("sqlite3")'
166164```
167165
168166If your SQLCipher is installed in a custom location (if you compiled and installed it yourself), you'll need to set some environment variables:
@@ -175,8 +173,6 @@ Set the location where `brew` installed it:
175173export LDFLAGS=" -L` brew --prefix` /opt/sqlcipher/lib"
176174export CPPFLAGS=" -I` brew --prefix` /opt/sqlcipher/include/sqlcipher"
177175npm install sqlite3 --build-from-source --sqlite_libname=sqlcipher --sqlite=` brew --prefix`
178-
179- node -e ' require("sqlite3")'
180176```
181177
182178### On most Linuxes (including Raspberry Pi)
@@ -188,8 +184,6 @@ export LDFLAGS="-L/usr/local/lib"
188184export CPPFLAGS=" -I/usr/local/include -I/usr/local/include/sqlcipher"
189185export CXXFLAGS=" $CPPFLAGS "
190186npm install sqlite3 --build-from-source --sqlite_libname=sqlcipher --sqlite=/usr/local --verbose
191-
192- node -e ' require("sqlite3")'
193187```
194188
195189### Custom builds and Electron
You can’t perform that action at this time.
0 commit comments