无法在 Windows 上编译 SQLCipher

Can't compile SQLCipher on Windows

本文关键字:编译 SQLCipher Windows      更新时间:2023-10-16

我正在尝试编译SQLCipher。我已经从http://sqlcipher.net/下载了源代码。然后我从这篇文章中做:[http://groups.google.com/group/sqlcipher/browse_thread/thread/55c6296b56bf4533] [1]

[1]我安装了MinGW(设置路径到gcc: d:MinGWbin), OpenSSL和ActiveState Perl。我复制文件libay32 .dll到sqlcipher目录。然后尝试执行以下命令:

./configure --disable-tcl CFLAGS="-DSQLITE_HAS_CODEC
-I/path/to/openssl/include" LDFLAGS="-leay32"

and I got error:

checking build system type... i686-pc-mingw32
checking host system type... i686-pc-mingw32
checking for gcc... gcc
checking for C compiler default output file name...
configure: error: C compiler cannot create executables
See 'config.log' for more details.

Config.log显示:

configure:2537: $? = 0
configure:2544: gcc -v >&5
Using built-in specs.
COLLECT_GCC=D:MinGWbingcc.exe
COLLECT_LTO_WRAPPER=d:/mingw/bin/../libexec/gcc/mingw32/4.5.2/lto-wrapper.exe
Target: mingw32
Configured with: ../gcc-4.5.2/configure --enable-languages=c,c++,ada,fortran,objc,obj-c++ --disable-sjlj-exceptions --with-dwarf2 --enable-shared --enable-libgomp --disable-win32-registry --enable-libstdcxx-debug --enable-version-specific-runtime-libs --disable-werror --build=mingw32 --prefix=/mingw
Thread model: win32
gcc version 4.5.2 (GCC) 
configure:2548: $? = 0
configure:2555: gcc -V >&5
gcc.exe: '-V' option must have argument
configure:2559: $? = 1
configure:2582: checking for C compiler default output file name
configure:2604: gcc -DSQLITE_HAS_CODEC -l/d/OpenSSL-Win32/bin  -libeay32 conftest.c  >&5
**d:/mingw/bin/../lib/gcc/mingw32/4.5.2/../../../../mingw32/bin/ld.exe: cannot find -ld:/OpenSSL-Win32/bin
d:/mingw/bin/../lib/gcc/mingw32/4.5.2/../../../../mingw32/bin/ld.exe: cannot find -libeay32**
collect2: ld returned 1 exit status

我不知道-leay32是什么。我复制文件libay32 .dll到sqlcipher目录。在D目录下有OpenSSL-Win32目录

谢谢

试试下面的配置命令:

。/configure -disable-tcl CFLAGS= " -DSQLITE_HAS_CODEC -Ic:/path/to/openssl/include -Lc:/path/to/openssl/lib -leay32 "

-leay32是一个标准库标志,所以可以把它想象成"-l eay32"。它被称为"eay32",因为库标志忽略了"libeay32"的"lib"。