无法在Windows上编译SQLCipher

时间:2011-11-11 18:44:08

标签: c++ c sqlite sqlcipher

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

[1] 我安装了MinGW(设置路径为gcc:d:\ MinGW \ bin),OpenSSL和ActiveState Perl。我将文件libeay32.dll复制到sqlcipher目录。比我尝试执行这个命令:

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

我收到了错误:

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:\MinGW\bin\gcc.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。我将文件libeay32.dll复制到sqlcipher目录。在D中有目录OpenSSL-Win32。

由于

1 个答案:

答案 0 :(得分:0)

尝试使用configure命令:

./ configure -disable-tcl CFLAGS =“ - DSQLITE_HAS_CODEC -Ic:/ path / to / openssl / include -Lc:/ path / to / openssl / lib -leay32”

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