curl - checking if libtool supports shared libraries... no -


i trying cross compile curl arm , linux platform. doesn't create make file shared library when through ./configure, providing make file static library only. below 2 major errors seen in log,

**checking whether /usr/bin/arm-linux-gnueabi-gcc-4.6 linker (arm-none-linux-gnueabi-ld) supports shared libraries... no checking if libtool supports shared libraries... no

@@@@@@@@@@@@@@@@@@@@@@@@@

    ./configure --host=arm-none-linux-gnueabi --build=i686-linux cflags='-os' --with-ssl=/root/openssl/libs --with-zlib --enable-smtp --enable-shared=yes @@@@@@@@@@@@@@@@@@@  curl version:     7.42.0   host setup:       arm-none-linux-gnueabi   install prefix:   /usr/local   compiler:         /usr/bin/arm-linux-gnueabi-gcc-4.6   ssl support:      enabled (openssl)   ssh support:      no      (--with-libssh2)   zlib support:     enabled   gss-api support:  no      (--with-gssapi)   tls-srp support:  no      (--enable-tls-srp)   resolver:         default (--enable-ares / --enable-threaded-resolver)   ipv6 support:     no      (--enable-ipv6)   unix sockets support: enabled   idn support:      no      (--with-{libidn,winidn})   build libcurl:    shared=no, static=yes   built-in manual:  enabled   --libcurl option: enabled (--disable-libcurl-option)   verbose errors:   enabled (--disable-verbose)   sspi support:     no      (--enable-sspi)   ca cert bundle:   no   ca cert path:     no   ldap support:     no      (--enable-ldap / --with-ldap-lib / --with-lber-lib)   ldaps support:    no      (--enable-ldaps)   rtsp support:     enabled   rtmp support:     no      (--with-librtmp)   metalink support: no      (--with-libmetalink)   http2 support:    disabled (--with-nghttp2)   protocols:        dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp  ############################## 

i new linux & trying figure out root cause, can 1 me missing here.

issue because of wrong linker path.

export ld /usr/bin/arm-linux-gnueabi-ld.


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -