Building libcurl with static linking to openssl
问题 I am trying to build libcurl with static linking to openssl. So to achieve that, I have used following configuration: OpenSSL: LDFLAGS="-static” LIBS="-ldl” cURL: LDFLAGS="-static” CPPFLAGS="-I$(CURDIR)/$(3RDPARTY_DIR)$(OPENSSL)/include LDFLAGS="-L$(CURDIR)/$(3RDPARTY_DIR)$(OPENSSL)" ./configure --disable-shared --without-zlib --without-libidn --without-librtmp --disable-ldap —-with-ssl=<path where my openssl is installed> With this, I am to generate libcurl.a and link it to my code where I