我正在尝试编译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。

谢谢

最佳答案

对您的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”。

关于c++ - 无法在Windows上编译SQLCipher,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8098499/

10-12 03:09