0

wgetビルドできなくて困っています。これが私の現在の呪文です。簡潔にするためにトリミングされています

host=i686-w64-mingw32
prefix=/usr/i686-w64-mingw32/sys-root/mingw

# Install gmp
./configure --host=$host --prefix=$prefix
make install

# Install nettle
./configure --host=$host --prefix=$prefix
make install AR=$host-ar

# Install GnuTLS
./configure --host=$host --prefix=$prefix --disable-shared
make install

# Install Wget
./configure --host=$host --prefix=$prefix --disable-ipv6
make install

エラーはファイナルmake installにありますwget

/usr/i686-w64-mingw32/sys-root/mingw/lib/libgnutls.a(base64.o): In function `base64_encode':
/home/Steven/gnutls-3.0.19/gl/base64.c:69: multiple definition of `_base64_encode'
utils.o:utils.c:(.text+0x49b0): first defined here
collect2: ld returned 1 exit status
4

1 に答える 1

0

が複数回定義されているため、multiple definitionエラーが発生しています。base64_encode

// wget-1.13.4/src/utils.c
int
base64_encode (const void *data, int length, char *dest)

// gnutls-3.0.19/gl/base64.c
void
base64_encode (const char *restrict in, size_t inlen,
               char *restrict out, size_t outlen)

この問題は GnuTLS 3.0.13 で導入されました。バージョン 3.0.12 を使用すると、問題が解決しました。

ftp.gnu.org/gnu/gnutls

于 2012-05-12T21:54:02.823 に答える