Hello :)
Our team Yamato Security is developing the Nim project(Takajo) .
We have received the request and are currently investigating whether it is possible to create a musl binary.
I was able to create a static binary using the following command in an environment where musl-gcc was installed:
nimble build -d:release --threads:on --gcc.exe:"musl-gcc" --gcc.linkerexe:"musl-gcc" --passL="-static"
$ file takajo
takajo: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, with debug_info, not stripped
However, when I run it, I get the following error:
$ ./takajo
could not load: libcurl.so(\|.4)
(compile with -d:nimDebugDlOpen for more information)
When I investigated the above libcurl error, I found that
My Environment
So my question is,
Is there a way to create a musl binary (static binary) in a project that uses libcurl.nim?
Thanks,
It is possible, but in that case, you will need to rebuild all libraries on which the project depends. In your case, you will have to rebuild libcurl.so with musl. And all its dependencies, if any.
I think the easiest way for this, would be to use any musl-based distro.
If you want a static binary, you will need to rebuild a static version of libcurl (so not a .so) and patch the libcurl.nim file to statically link against it.
According to CURL docs https://curl.se/docs/install.html you need to add an option to the configure steps :
./configure --disable-shared make test make install
Thanks to your advice, I was able to statically compile curl(./configure --disable-shared --with-openssl , make test, make install) and the --dynlibOverride flag also seems to be working :) However, the compilation with nimble fails with undefined reference error, perhaps because curl is not compiled correctly...?
nimble build -d:release --threads:on --gcc.exe:"musl-gcc" --gcc.linkerexe:"musl-gcc" --passL="-static" --dynlibOverride:libcurl - Verifying dependencies for [email protected] Info: Dependency on cligen@>= 1.5 already satisfied Verifying dependencies for [email protected] Info: Dependency on suru@#f6f1e607c585b2bc2f71309996643f0555ff6349 already satisfied Verifying dependencies for [email protected] Info: Dependency on puppy@>= 2.1.0 already satisfied Verifying dependencies for [email protected] Info: Dependency on libcurl@>= 1.0.0 already satisfied Verifying dependencies for [email protected] Info: Dependency on zippy@>= 0.10.0 already satisfied Verifying dependencies for [email protected] Info: Dependency on webby@>= 0.2.0 already satisfied Verifying dependencies for [email protected] Info: Dependency on termstyle@any version already satisfied Verifying dependencies for [email protected] Info: Dependency on nancy@any version already satisfied Verifying dependencies for [email protected] Info: Dependency on ansiparse@>= 0.2.0 already satisfied Verifying dependencies for [email protected] Building takajo/takajo using c backend/root/takajo/src/takajo.nim(16, 8) Warning: use the nimble packages `malebolgia`, `taskpools` or `weave` instead; threadpool is deprecated [Deprecated]/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-mime.o): in function `mime_file_read':mime.c:(.text+0x8c3): undefined reference to `__fread_chk'/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-multi.o): in function `curl_multi_fdset':multi.c:(.text+0x1467): undefined reference to `__fdelt_chk'/usr/bin/ld: multi.c:(.text+0x1490): undefined reference to `__fdelt_chk'/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-hsts.o): in function `Curl_hsts':hsts.c:(.text+0x334): undefined reference to `__memcpy_chk'/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-mprintf.o): in function `formatf':mprintf.c:(.text+0xb7e): undefined reference to `__snprintf_chk'/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-psl.o): in function `Curl_psl_destroy':psl.c:(.text+0x29): undefined reference to `psl_free'/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-psl.o): in function `Curl_psl_use':psl.c:(.text+0xbb): undefined reference to `psl_latest'/usr/bin/ld: psl.c:(.text+0x187): undefined reference to `psl_builtin'/usr/bin/ld: psl.c:(.text+0x1a1): undefined reference to `psl_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-altsvc.o): in function `Curl_altsvc_parse':
altsvc.c:(.text+0x10d8): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-cookie.o): in function `Curl_cookie_add':
cookie.c:(.text+0x9c6): undefined reference to `psl_is_cookie_domain_acceptable'
/usr/bin/ld: cookie.c:(.text+0x121d): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-curl_get_line.o): in function `Curl_get_line':
curl_get_line.c:(.text+0x2e): undefined reference to `__fgets_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-file.o): in function `file_do.part.0.constprop.0':
file.c:(.text+0x5dc): undefined reference to `__read_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-ftp.o): in function `ftp_state_use_port':
ftp.c:(.text+0x8da): undefined reference to `__memcpy_chk'
/usr/bin/ld: ftp.c:(.text+0xa42): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-hostip.o): in function `Curl_loadhostpairs':
hostip.c:(.text+0x145e): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-http_aws_sigv4.o): in function `Curl_output_aws_sigv4':
http_aws_sigv4.c:(.text+0x3b8): undefined reference to `__memcpy_chk'
/usr/bin/ld: http_aws_sigv4.c:(.text+0x55e): undefined reference to `__strcpy_chk'
/usr/bin/ld: http_aws_sigv4.c:(.text+0x690): undefined reference to `__memcpy_chk'
/usr/bin/ld: http_aws_sigv4.c:(.text+0x155b): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-md5.o): in function `my_md5_init':
md5.c:(.text+0x29): undefined reference to `MD5_Init'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-md5.o): in function `Curl_md5it':
md5.c:(.text+0x6f): undefined reference to `MD5_Init'
/usr/bin/ld: md5.c:(.text+0x91): undefined reference to `MD5_Update'
/usr/bin/ld: md5.c:(.text+0x9c): undefined reference to `MD5_Final'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-md5.o): in function `my_md5_final':
md5.c:(.text+0x5): undefined reference to `MD5_Final'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-md5.o): in function `my_md5_update':
md5.c:(.text+0x17): undefined reference to `MD5_Update'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-noproxy.o): in function `Curl_check_noproxy':
noproxy.c:(.text+0xdd): undefined reference to `__memcpy_chk'
/usr/bin/ld: noproxy.c:(.text+0x2cd): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-sha256.o): in function `my_sha256_init':
sha256.c:(.text+0x9): undefined reference to `EVP_MD_CTX_new'
/usr/bin/ld: sha256.c:(.text+0x16): undefined reference to `EVP_sha256'
/usr/bin/ld: sha256.c:(.text+0x23): undefined reference to `EVP_DigestInit_ex'
/usr/bin/ld: sha256.c:(.text+0x3c): undefined reference to `EVP_MD_CTX_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-sha256.o): in function `my_sha256_final':
sha256.c:(.text+0x81): undefined reference to `EVP_DigestFinal_ex'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-sha256.o): in function `Curl_sha256it':
sha256.c:(.text+0xa9): undefined reference to `EVP_MD_CTX_new'
/usr/bin/ld: sha256.c:(.text+0xb6): undefined reference to `EVP_sha256'
/usr/bin/ld: sha256.c:(.text+0xc3): undefined reference to `EVP_DigestInit_ex'
/usr/bin/ld: sha256.c:(.text+0xdc): undefined reference to `EVP_DigestUpdate'
/usr/bin/ld: sha256.c:(.text+0xe9): undefined reference to `EVP_DigestFinal_ex'
/usr/bin/ld: sha256.c:(.text+0xf1): undefined reference to `EVP_MD_CTX_free'
/usr/bin/ld: sha256.c:(.text+0x124): undefined reference to `EVP_MD_CTX_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-sha256.o): in function `my_sha256_update':
sha256.c:(.text+0x6a): undefined reference to `EVP_DigestUpdate'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-sha256.o): in function `my_sha256_final':
sha256.c:(.text+0x8a): undefined reference to `EVP_MD_CTX_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-smb.o): in function `smb_send_open':
smb.c:(.text+0x78a): undefined reference to `__strcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-smb.o): in function `smb_send_tree_connect':
smb.c:(.text+0x883): undefined reference to `__strcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-smb.o): in function `smb_send_setup':
smb.c:(.text+0xa7e): undefined reference to `__strcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-telnet.o): in function `telnet_do':
telnet.c:(.text+0x1505): undefined reference to `__memcpy_chk'
/usr/bin/ld: telnet.c:(.text+0x1c3f): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `pubkey_show':
openssl.c:(.text+0x15e): undefined reference to `BN_print'
/usr/bin/ld: openssl.c:(.text+0x172): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x199): undefined reference to `BIO_ctrl'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ssl_ui_writer':
openssl.c:(.text+0x1d5): undefined reference to `UI_get_string_type'
/usr/bin/ld: openssl.c:(.text+0x1e2): undefined reference to `UI_OpenSSL'
/usr/bin/ld: openssl.c:(.text+0x1ea): undefined reference to `UI_method_get_writer'
/usr/bin/ld: openssl.c:(.text+0x204): undefined reference to `UI_get0_user_data'
/usr/bin/ld: openssl.c:(.text+0x211): undefined reference to `UI_get_input_flags'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ssl_ui_reader':
openssl.c:(.text+0x243): undefined reference to `UI_get_string_type'
/usr/bin/ld: openssl.c:(.text+0x250): undefined reference to `UI_OpenSSL'
/usr/bin/ld: openssl.c:(.text+0x258): undefined reference to `UI_method_get_reader'
/usr/bin/ld: openssl.c:(.text+0x274): undefined reference to `UI_get0_user_data'
/usr/bin/ld: openssl.c:(.text+0x284): undefined reference to `UI_get_input_flags'
/usr/bin/ld: openssl.c:(.text+0x296): undefined reference to `UI_set_result'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_version':
openssl.c:(.text+0x2c7): undefined reference to `OpenSSL_version'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_close_all':
openssl.c:(.text+0x315): undefined reference to `ENGINE_finish'
/usr/bin/ld: openssl.c:(.text+0x321): undefined reference to `ENGINE_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_free_multi_ssl_backend_data':
openssl.c:(.text+0x357): undefined reference to `X509_STORE_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_sha256sum':
openssl.c:(.text+0x3b1): undefined reference to `EVP_MD_CTX_new'
/usr/bin/ld: openssl.c:(.text+0x3be): undefined reference to `EVP_sha256'
/usr/bin/ld: openssl.c:(.text+0x3c9): undefined reference to `EVP_DigestInit'
/usr/bin/ld: openssl.c:(.text+0x3db): undefined reference to `EVP_DigestUpdate'
/usr/bin/ld: openssl.c:(.text+0x3eb): undefined reference to `EVP_DigestFinal_ex'
/usr/bin/ld: openssl.c:(.text+0x3f3): undefined reference to `EVP_MD_CTX_free'
/usr/bin/ld: openssl.c:(.text+0x424): undefined reference to `EVP_MD_CTX_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_engines_list':
openssl.c:(.text+0x44a): undefined reference to `ENGINE_get_first'
/usr/bin/ld: openssl.c:(.text+0x464): undefined reference to `ENGINE_get_next'
/usr/bin/ld: openssl.c:(.text+0x477): undefined reference to `ENGINE_get_id'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_new_session_cb':
openssl.c:(.text+0x4e4): undefined reference to `SSL_get_ex_data'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_trace':
openssl.c:(.text+0x792): undefined reference to `SSL_alert_desc_string_long'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_bio_cf_create':
openssl.c:(.text+0xa4e): undefined reference to `BIO_set_shutdown'
/usr/bin/ld: openssl.c:(.text+0xa5b): undefined reference to `BIO_set_init'
/usr/bin/ld: openssl.c:(.text+0xa65): undefined reference to `BIO_set_data'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_bio_cf_ctrl':
openssl.c:(.text+0xa81): undefined reference to `BIO_get_data'
/usr/bin/ld: openssl.c:(.text+0xa9a): undefined reference to `BIO_get_shutdown'
/usr/bin/ld: openssl.c:(.text+0xac7): undefined reference to `BIO_set_shutdown'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_bio_cf_out_write':
openssl.c:(.text+0xb2c): undefined reference to `BIO_get_data'
/usr/bin/ld: openssl.c:(.text+0xb86): undefined reference to `BIO_clear_flags'
/usr/bin/ld: openssl.c:(.text+0xbf9): undefined reference to `BIO_set_flags'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_data_pending':
openssl.c:(.text+0xc2a): undefined reference to `SSL_pending'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_init':
openssl.c:(.text+0xc70): undefined reference to `OPENSSL_init_ssl'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_set_engine_default':
openssl.c:(.text+0xd9a): undefined reference to `ENGINE_set_default'
/usr/bin/ld: openssl.c:(.text+0xdb8): undefined reference to `ENGINE_get_id'
/usr/bin/ld: openssl.c:(.text+0xde0): undefined reference to `ENGINE_get_id'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `x509_name_oneline.constprop.0':
openssl.c:(.text+0xe1f): undefined reference to `BIO_s_mem'
/usr/bin/ld: openssl.c:(.text+0xe27): undefined reference to `BIO_new'
/usr/bin/ld: openssl.c:(.text+0xe4a): undefined reference to `X509_NAME_print_ex'
/usr/bin/ld: openssl.c:(.text+0xe5f): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0xeb2): undefined reference to `BIO_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_strerror':
openssl.c:(.text+0xf36): undefined reference to `OpenSSL_version'
/usr/bin/ld: openssl.c:(.text+0xf87): undefined reference to `ERR_error_string_n'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_set_engine':
openssl.c:(.text+0x100d): undefined reference to `ENGINE_by_id'
/usr/bin/ld: openssl.c:(.text+0x102a): undefined reference to `ENGINE_finish'
/usr/bin/ld: openssl.c:(.text+0x1036): undefined reference to `ENGINE_free'
/usr/bin/ld: openssl.c:(.text+0x1049): undefined reference to `ENGINE_init'
/usr/bin/ld: openssl.c:(.text+0x1084): undefined reference to `ENGINE_free'
/usr/bin/ld: openssl.c:(.text+0x1089): undefined reference to `ERR_get_error'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_send':
openssl.c:(.text+0x1129): undefined reference to `ERR_clear_error'
/usr/bin/ld: openssl.c:(.text+0x1144): undefined reference to `SSL_write'
/usr/bin/ld: openssl.c:(.text+0x1188): undefined reference to `SSL_get_error'
/usr/bin/ld: openssl.c:(.text+0x11a4): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x1205): undefined reference to `ERR_get_error'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_recv':
openssl.c:(.text+0x1315): undefined reference to `ERR_clear_error'
/usr/bin/ld: openssl.c:(.text+0x1330): undefined reference to `SSL_read'
/usr/bin/ld: openssl.c:(.text+0x1377): undefined reference to `SSL_get_error'
/usr/bin/ld: openssl.c:(.text+0x1397): undefined reference to `ERR_get_error'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_close':
openssl.c:(.text+0x14da): undefined reference to `SSL_free'
/usr/bin/ld: openssl.c:(.text+0x14ef): undefined reference to `SSL_CTX_free'
/usr/bin/ld: openssl.c:(.text+0x1508): undefined reference to `BIO_meth_free'
/usr/bin/ld: openssl.c:(.text+0x1551): undefined reference to `SSL_read'
/usr/bin/ld: openssl.c:(.text+0x1556): undefined reference to `ERR_clear_error'
/usr/bin/ld: openssl.c:(.text+0x155f): undefined reference to `SSL_shutdown'
/usr/bin/ld: openssl.c:(.text+0x15a1): undefined reference to `ERR_clear_error'
/usr/bin/ld: openssl.c:(.text+0x15aa): undefined reference to `SSL_set_connect_state'
/usr/bin/ld: openssl.c:(.text+0x15cd): undefined reference to `SSL_read'
/usr/bin/ld: openssl.c:(.text+0x15d8): undefined reference to `SSL_get_error'
/usr/bin/ld: openssl.c:(.text+0x1636): undefined reference to `ERR_get_error'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_shutdown':
openssl.c:(.text+0x17f9): undefined reference to `SSL_get_shutdown'
/usr/bin/ld: openssl.c:(.text+0x1825): undefined reference to `SSL_free'
/usr/bin/ld: openssl.c:(.text+0x1861): undefined reference to `ERR_clear_error'
/usr/bin/ld: openssl.c:(.text+0x1875): undefined reference to `SSL_read'
/usr/bin/ld: openssl.c:(.text+0x1880): undefined reference to `SSL_get_error'
/usr/bin/ld: openssl.c:(.text+0x18c6): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x1965): undefined reference to `SSL_shutdown'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `cert_stuff':
openssl.c:(.text+0x1abd): undefined reference to `SSL_CTX_set_default_passwd_cb_userdata'
/usr/bin/ld: openssl.c:(.text+0x1acc): undefined reference to `SSL_CTX_set_default_passwd_cb'
/usr/bin/ld: openssl.c:(.text+0x1b09): undefined reference to `BIO_new_mem_buf'
/usr/bin/ld: openssl.c:(.text+0x1b1f): undefined reference to `d2i_X509_bio'
/usr/bin/ld: openssl.c:(.text+0x1b38): undefined reference to `SSL_CTX_use_certificate'
/usr/bin/ld: openssl.c:(.text+0x1b46): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x1b4e): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x1c03): undefined reference to `BIO_new_mem_buf'
/usr/bin/ld: openssl.c:(.text+0x1c19): undefined reference to `d2i_PKCS12_bio'
/usr/bin/ld: openssl.c:(.text+0x1c24): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x1c32): undefined reference to `PKCS12_PBE_add'
/usr/bin/ld: openssl.c:(.text+0x1c4c): undefined reference to `PKCS12_parse'
/usr/bin/ld: openssl.c:(.text+0x1c5c): undefined reference to `PKCS12_free'
/usr/bin/ld: openssl.c:(.text+0x1c69): undefined reference to `SSL_CTX_use_certificate'
/usr/bin/ld: openssl.c:(.text+0x1c7f): undefined reference to `SSL_CTX_use_PrivateKey'
/usr/bin/ld: openssl.c:(.text+0x1ca8): undefined reference to `EVP_PKEY_free'
/usr/bin/ld: openssl.c:(.text+0x1cb2): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x1cb9): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x1cc3): undefined reference to `OPENSSL_sk_pop_free'
/usr/bin/ld: openssl.c:(.text+0x1ce5): undefined reference to `BIO_new_mem_buf'
/usr/bin/ld: openssl.c:(.text+0x1cf6): undefined reference to `ERR_clear_error'
/usr/bin/ld: openssl.c:(.text+0x1d0a): undefined reference to `PEM_read_bio_X509_AUX'
/usr/bin/ld: openssl.c:(.text+0x1d2f): undefined reference to `SSL_CTX_use_certificate'
/usr/bin/ld: openssl.c:(.text+0x1d38): undefined reference to `ERR_peek_error'
/usr/bin/ld: openssl.c:(.text+0x1d68): undefined reference to `SSL_CTX_ctrl'
/usr/bin/ld: openssl.c:(.text+0x1d9e): undefined reference to `SSL_CTX_ctrl'
/usr/bin/ld: openssl.c:(.text+0x1dbb): undefined reference to `PEM_read_bio_X509'
/usr/bin/ld: openssl.c:(.text+0x1dcd): undefined reference to `ERR_peek_last_error'
/usr/bin/ld: openssl.c:(.text+0x1e05): undefined reference to `ERR_clear_error'
/usr/bin/ld: openssl.c:(.text+0x1e0f): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x1e17): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x1e55): undefined reference to `BIO_new_mem_buf'
/usr/bin/ld: openssl.c:(.text+0x1e84): undefined reference to `PEM_read_bio_PrivateKey'
/usr/bin/ld: openssl.c:(.text+0x1ee3): undefined reference to `ENGINE_ctrl'
/usr/bin/ld: openssl.c:(.text+0x1f0a): undefined reference to `ENGINE_ctrl_cmd'
/usr/bin/ld: openssl.c:(.text+0x1f28): undefined reference to `SSL_CTX_use_certificate'
/usr/bin/ld: openssl.c:(.text+0x1f36): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x1fa1): undefined reference to `SSL_CTX_use_certificate_file'
/usr/bin/ld: openssl.c:(.text+0x1fcd): undefined reference to `SSL_CTX_use_PrivateKey_file'
/usr/bin/ld: openssl.c:(.text+0x1fe0): undefined reference to `SSL_new'
/usr/bin/ld: openssl.c:(.text+0x1ff4): undefined reference to `SSL_get_certificate'
/usr/bin/ld: openssl.c:(.text+0x2006): undefined reference to `X509_get_pubkey'
/usr/bin/ld: openssl.c:(.text+0x2011): undefined reference to `SSL_get_privatekey'
/usr/bin/ld: openssl.c:(.text+0x201c): undefined reference to `EVP_PKEY_copy_parameters'
/usr/bin/ld: openssl.c:(.text+0x2024): undefined reference to `EVP_PKEY_free'
/usr/bin/ld: openssl.c:(.text+0x202c): undefined reference to `SSL_get_privatekey'
/usr/bin/ld: openssl.c:(.text+0x2037): undefined reference to `EVP_PKEY_get_id'
/usr/bin/ld: openssl.c:(.text+0x2048): undefined reference to `SSL_free'
/usr/bin/ld: openssl.c:(.text+0x2050): undefined reference to `SSL_CTX_check_private_key'
/usr/bin/ld: openssl.c:(.text+0x2077): undefined reference to `BIO_new_mem_buf'
/usr/bin/ld: openssl.c:(.text+0x208d): undefined reference to `d2i_PrivateKey_bio'
/usr/bin/ld: openssl.c:(.text+0x20a4): undefined reference to `SSL_CTX_use_PrivateKey'
/usr/bin/ld: openssl.c:(.text+0x20ae): undefined reference to `EVP_PKEY_free'
/usr/bin/ld: openssl.c:(.text+0x20b6): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x20c6): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x20ce): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x20d3): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x2111): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x2166): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x2195): undefined reference to `UI_create_method'
/usr/bin/ld: openssl.c:(.text+0x21a6): undefined reference to `UI_OpenSSL'
/usr/bin/ld: openssl.c:(.text+0x21ae): undefined reference to `UI_method_get_opener'
/usr/bin/ld: openssl.c:(.text+0x21b9): undefined reference to `UI_method_set_opener'
/usr/bin/ld: openssl.c:(.text+0x21be): undefined reference to `UI_OpenSSL'
/usr/bin/ld: openssl.c:(.text+0x21c6): undefined reference to `UI_method_get_closer'
/usr/bin/ld: openssl.c:(.text+0x21d1): undefined reference to `UI_method_set_closer'
/usr/bin/ld: openssl.c:(.text+0x21e0): undefined reference to `UI_method_set_reader'
/usr/bin/ld: openssl.c:(.text+0x21ef): undefined reference to `UI_method_set_writer'
/usr/bin/ld: openssl.c:(.text+0x2206): undefined reference to `ENGINE_load_private_key'
/usr/bin/ld: openssl.c:(.text+0x2211): undefined reference to `UI_destroy_method'
/usr/bin/ld: openssl.c:(.text+0x2225): undefined reference to `SSL_CTX_use_PrivateKey'
/usr/bin/ld: openssl.c:(.text+0x2247): undefined reference to `EVP_PKEY_free'
/usr/bin/ld: openssl.c:(.text+0x2264): undefined reference to `SSL_CTX_use_certificate_chain_file'
/usr/bin/ld: openssl.c:(.text+0x2277): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x2299): undefined reference to `BIO_s_file'
/usr/bin/ld: openssl.c:(.text+0x22a1): undefined reference to `BIO_new'
/usr/bin/ld: openssl.c:(.text+0x22c2): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x22d4): undefined reference to `d2i_PKCS12_bio'
/usr/bin/ld: openssl.c:(.text+0x22df): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x232a): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x2373): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x237b): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x2380): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x23c1): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x23ef): undefined reference to `PKCS12_free'
/usr/bin/ld: openssl.c:(.text+0x2473): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x247b): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x24d4): undefined reference to `EVP_PKEY_get1_RSA'
/usr/bin/ld: openssl.c:(.text+0x24df): undefined reference to `RSA_flags'
/usr/bin/ld: openssl.c:(.text+0x24ef): undefined reference to `RSA_free'
/usr/bin/ld: openssl.c:(.text+0x24f7): undefined reference to `SSL_free'
/usr/bin/ld: openssl.c:(.text+0x2521): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x255c): undefined reference to `SSL_CTX_check_private_key'
/usr/bin/ld: openssl.c:(.text+0x257e): undefined reference to `OPENSSL_sk_pop'
/usr/bin/ld: openssl.c:(.text+0x258c): undefined reference to `SSL_CTX_add_client_CA'
/usr/bin/ld: openssl.c:(.text+0x25a6): undefined reference to `SSL_CTX_ctrl'
/usr/bin/ld: openssl.c:(.text+0x25b9): undefined reference to `OPENSSL_sk_num'
/usr/bin/ld: openssl.c:(.text+0x25c7): undefined reference to `EVP_PKEY_free'
/usr/bin/ld: openssl.c:(.text+0x25d1): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x25d8): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x25e2): undefined reference to `OPENSSL_sk_pop_free'
/usr/bin/ld: openssl.c:(.text+0x2604): undefined reference to `EVP_PKEY_free'
/usr/bin/ld: openssl.c:(.text+0x260e): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x2640): undefined reference to `RSA_free'
/usr/bin/ld: openssl.c:(.text+0x26a6): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x2736): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x2745): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x274f): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x2757): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x277b): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x2799): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x27b4): undefined reference to `ERR_get_error'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_random':
openssl.c:(.text+0x280d): undefined reference to `RAND_status'
/usr/bin/ld: openssl.c:(.text+0x2836): undefined reference to `RAND_bytes'
/usr/bin/ld: openssl.c:(.text+0x2851): undefined reference to `RAND_status'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `Curl_ossl_certchain':
openssl.c:(.text+0x28bf): undefined reference to `SSL_get_peer_cert_chain'
/usr/bin/ld: openssl.c:(.text+0x28d7): undefined reference to `OPENSSL_sk_num'
/usr/bin/ld: openssl.c:(.text+0x2921): undefined reference to `BIO_s_mem'
/usr/bin/ld: openssl.c:(.text+0x2929): undefined reference to `BIO_new'
/usr/bin/ld: openssl.c:(.text+0x2979): undefined reference to `OPENSSL_sk_value'
/usr/bin/ld: openssl.c:(.text+0x2992): undefined reference to `X509_get_subject_name'
/usr/bin/ld: openssl.c:(.text+0x29a4): undefined reference to `X509_NAME_print_ex'
/usr/bin/ld: openssl.c:(.text+0x29bb): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x29e6): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x29ee): undefined reference to `X509_get_issuer_name'
/usr/bin/ld: openssl.c:(.text+0x2a00): undefined reference to `X509_NAME_print_ex'
/usr/bin/ld: openssl.c:(.text+0x2a12): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2a3d): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2a45): undefined reference to `X509_get_version'
/usr/bin/ld: openssl.c:(.text+0x2a59): undefined reference to `BIO_printf'
/usr/bin/ld: openssl.c:(.text+0x2a6b): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2a96): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2a9e): undefined reference to `X509_get_serialNumber'
/usr/bin/ld: openssl.c:(.text+0x2ada): undefined reference to `BIO_printf'
/usr/bin/ld: openssl.c:(.text+0x2af7): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2b22): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2b48): undefined reference to `X509_get0_signature'
/usr/bin/ld: openssl.c:(.text+0x2b69): undefined reference to `X509_ALGOR_get0'
/usr/bin/ld: openssl.c:(.text+0x2b76): undefined reference to `i2a_ASN1_OBJECT'
/usr/bin/ld: openssl.c:(.text+0x2b88): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2bb3): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2bbd): undefined reference to `X509_get_X509_PUBKEY'
/usr/bin/ld: openssl.c:(.text+0x2bd5): undefined reference to `X509_PUBKEY_get0_param'
/usr/bin/ld: openssl.c:(.text+0x2be7): undefined reference to `i2a_ASN1_OBJECT'
/usr/bin/ld: openssl.c:(.text+0x2bfb): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2c26): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2c32): undefined reference to `X509_get0_extensions'
/usr/bin/ld: openssl.c:(.text+0x2c3d): undefined reference to `OPENSSL_sk_num'
/usr/bin/ld: openssl.c:(.text+0x2c70): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2c96): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x2c9e): undefined reference to `OPENSSL_sk_num'
/usr/bin/ld: openssl.c:(.text+0x2cac): undefined reference to `OPENSSL_sk_value'
/usr/bin/ld: openssl.c:(.text+0x2cb4): undefined reference to `BIO_s_mem'
/usr/bin/ld: openssl.c:(.text+0x2cbc): undefined reference to `BIO_new'
/usr/bin/ld: openssl.c:(.text+0x2ccc): undefined reference to `X509_EXTENSION_get_object'
/usr/bin/ld: openssl.c:(.text+0x2cdc): undefined reference to `i2t_ASN1_OBJECT'
/usr/bin/ld: openssl.c:(.text+0x2ceb): undefined reference to `X509V3_EXT_print'
/usr/bin/ld: openssl.c:(.text+0x2cfb): undefined reference to `X509_EXTENSION_get_data'
/usr/bin/ld: openssl.c:(.text+0x2d06): undefined reference to `ASN1_STRING_print'
/usr/bin/ld: openssl.c:(.text+0x2d23): undefined reference to `X509_get0_notBefore'
/usr/bin/ld: openssl.c:(.text+0x2d2e): undefined reference to `ASN1_TIME_print'
/usr/bin/ld: openssl.c:(.text+0x2d45): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2d70): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2d78): undefined reference to `X509_get0_notAfter'
/usr/bin/ld: openssl.c:(.text+0x2d83): undefined reference to `ASN1_TIME_print'
/usr/bin/ld: openssl.c:(.text+0x2d95): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2dc0): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2dc8): undefined reference to `X509_get_pubkey'
/usr/bin/ld: openssl.c:(.text+0x2ddc): undefined reference to `EVP_PKEY_get_id'
/usr/bin/ld: openssl.c:(.text+0x2dff): undefined reference to `EVP_PKEY_free'
/usr/bin/ld: openssl.c:(.text+0x2e1a): undefined reference to `PEM_write_bio_X509'
/usr/bin/ld: openssl.c:(.text+0x2e2e): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2e5d): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2e70): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x2ee6): undefined reference to `BIO_printf'
/usr/bin/ld: openssl.c:(.text+0x2f04): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2f2f): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2f4b): undefined reference to `BIO_puts'
/usr/bin/ld: openssl.c:(.text+0x2f7a): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: openssl.c:(.text+0x2f8e): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: openssl.c:(.text+0x2f9f): undefined reference to `BN_num_bits'
/usr/bin/ld: openssl.c:(.text+0x2fb2): undefined reference to `BIO_printf'
/usr/bin/ld: openssl.c:(.text+0x2fcd): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x2ff8): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x303c): undefined reference to `BN_clear_free'
/usr/bin/ld: openssl.c:(.text+0x3046): undefined reference to `BN_clear_free'
/usr/bin/ld: openssl.c:(.text+0x308e): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: openssl.c:(.text+0x309e): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: openssl.c:(.text+0x30b5): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: openssl.c:(.text+0x30c9): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: openssl.c:(.text+0x3149): undefined reference to `BN_clear_free'
/usr/bin/ld: openssl.c:(.text+0x3153): undefined reference to `BN_clear_free'
/usr/bin/ld: openssl.c:(.text+0x315d): undefined reference to `BN_clear_free'
/usr/bin/ld: openssl.c:(.text+0x3167): undefined reference to `BN_clear_free'
/usr/bin/ld: openssl.c:(.text+0x31ae): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: openssl.c:(.text+0x31be): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: openssl.c:(.text+0x31d5): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: openssl.c:(.text+0x31e9): undefined reference to `EVP_PKEY_get_bn_param'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `Curl_ossl_verifyhost':
openssl.c:(.text+0x3308): undefined reference to `X509_get_ext_d2i'
/usr/bin/ld: openssl.c:(.text+0x331c): undefined reference to `OPENSSL_sk_num'
/usr/bin/ld: openssl.c:(.text+0x3372): undefined reference to `OPENSSL_sk_value'
/usr/bin/ld: openssl.c:(.text+0x33aa): undefined reference to `GENERAL_NAMES_free'
/usr/bin/ld: openssl.c:(.text+0x33fc): undefined reference to `GENERAL_NAMES_free'
/usr/bin/ld: openssl.c:(.text+0x340d): undefined reference to `X509_get_subject_name'
/usr/bin/ld: openssl.c:(.text+0x3436): undefined reference to `X509_NAME_get_index_by_NID'
/usr/bin/ld: openssl.c:(.text+0x344f): undefined reference to `X509_NAME_get_entry'
/usr/bin/ld: openssl.c:(.text+0x3457): undefined reference to `X509_NAME_ENTRY_get_data'
/usr/bin/ld: openssl.c:(.text+0x346b): undefined reference to `ASN1_STRING_type'
/usr/bin/ld: openssl.c:(.text+0x3481): undefined reference to `ASN1_STRING_to_UTF8'
/usr/bin/ld: openssl.c:(.text+0x34c5): undefined reference to `ASN1_STRING_get0_data'
/usr/bin/ld: openssl.c:(.text+0x34ce): undefined reference to `ASN1_STRING_length'
/usr/bin/ld: openssl.c:(.text+0x34e5): undefined reference to `ASN1_STRING_get0_data'
/usr/bin/ld: openssl.c:(.text+0x34f1): undefined reference to `ASN1_STRING_length'
/usr/bin/ld: openssl.c:(.text+0x3551): undefined reference to `GENERAL_NAMES_free'
/usr/bin/ld: openssl.c:(.text+0x3565): undefined reference to `ASN1_STRING_get0_data'
/usr/bin/ld: openssl.c:(.text+0x3573): undefined reference to `ASN1_STRING_length'
/usr/bin/ld: openssl.c:(.text+0x36ca): undefined reference to `CRYPTO_free'
/usr/bin/ld: openssl.c:(.text+0x3741): undefined reference to `ASN1_STRING_length'
/usr/bin/ld: openssl.c:(.text+0x3768): undefined reference to `CRYPTO_malloc'
/usr/bin/ld: openssl.c:(.text+0x3781): undefined reference to `ASN1_STRING_get0_data'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `servercert':
openssl.c:(.text+0x389c): undefined reference to `BIO_s_mem'
/usr/bin/ld: openssl.c:(.text+0x38a4): undefined reference to `BIO_new'
/usr/bin/ld: openssl.c:(.text+0x38ca): undefined reference to `SSL_get1_peer_certificate'
/usr/bin/ld: openssl.c:(.text+0x38ec): undefined reference to `X509_get_subject_name'
/usr/bin/ld: openssl.c:(.text+0x391a): undefined reference to `X509_get0_notBefore'
/usr/bin/ld: openssl.c:(.text+0x3925): undefined reference to `ASN1_TIME_print'
/usr/bin/ld: openssl.c:(.text+0x3937): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x3955): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x395e): undefined reference to `X509_get0_notAfter'
/usr/bin/ld: openssl.c:(.text+0x3969): undefined reference to `ASN1_TIME_print'
/usr/bin/ld: openssl.c:(.text+0x397b): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x3999): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x39a1): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x39d9): undefined reference to `X509_get_issuer_name'
/usr/bin/ld: openssl.c:(.text+0x3a0b): undefined reference to `SSL_get_verify_result'
/usr/bin/ld: openssl.c:(.text+0x3a1c): undefined reference to `SSL_get_peer_cert_chain'
/usr/bin/ld: openssl.c:(.text+0x3a2b): undefined reference to `OPENSSL_sk_num'
/usr/bin/ld: openssl.c:(.text+0x3af5): undefined reference to `OPENSSL_sk_value'
/usr/bin/ld: openssl.c:(.text+0x3b07): undefined reference to `X509_get0_signature'
/usr/bin/ld: openssl.c:(.text+0x3b1d): undefined reference to `X509_ALGOR_get0'
/usr/bin/ld: openssl.c:(.text+0x3b34): undefined reference to `OBJ_obj2txt'
/usr/bin/ld: openssl.c:(.text+0x3b3c): undefined reference to `X509_get0_pubkey'
/usr/bin/ld: openssl.c:(.text+0x3b47): undefined reference to `EVP_PKEY_get_bits'
/usr/bin/ld: openssl.c:(.text+0x3b53): undefined reference to `EVP_PKEY_get_security_bits'
/usr/bin/ld: openssl.c:(.text+0x3b95): undefined reference to `EVP_PKEY_get_group_name'
/usr/bin/ld: openssl.c:(.text+0x3bba): undefined reference to `EVP_PKEY_get0_type_name'
/usr/bin/ld: openssl.c:(.text+0x3c96): undefined reference to `X509_get_X509_PUBKEY'
/usr/bin/ld: openssl.c:(.text+0x3ca0): undefined reference to `i2d_X509_PUBKEY'
/usr/bin/ld: openssl.c:(.text+0x3cd2): undefined reference to `X509_get_X509_PUBKEY'
/usr/bin/ld: openssl.c:(.text+0x3ce2): undefined reference to `i2d_X509_PUBKEY'
/usr/bin/ld: openssl.c:(.text+0x3d24): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x3dc9): undefined reference to `BIO_new_mem_buf'
/usr/bin/ld: openssl.c:(.text+0x3de3): undefined reference to `PEM_read_bio_X509'
/usr/bin/ld: openssl.c:(.text+0x3dfb): undefined reference to `X509_check_issued'
/usr/bin/ld: openssl.c:(.text+0x3e18): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x3e20): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x3e29): undefined reference to `SSL_get_verify_result'
/usr/bin/ld: openssl.c:(.text+0x3e63): undefined reference to `X509_verify_cert_error_string'
/usr/bin/ld: openssl.c:(.text+0x3ea1): undefined reference to `SSL_get0_verified_chain'
/usr/bin/ld: openssl.c:(.text+0x3f51): undefined reference to `BIO_s_file'
/usr/bin/ld: openssl.c:(.text+0x3f59): undefined reference to `BIO_new'
/usr/bin/ld: openssl.c:(.text+0x3f80): undefined reference to `BIO_ctrl'
/usr/bin/ld: openssl.c:(.text+0x3f9b): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x3fa4): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x3fde): undefined reference to `SSL_ctrl'
/usr/bin/ld: openssl.c:(.text+0x4010): undefined reference to `d2i_OCSP_RESPONSE'
/usr/bin/ld: openssl.c:(.text+0x4028): undefined reference to `OCSP_response_status'
/usr/bin/ld: openssl.c:(.text+0x403d): undefined reference to `OCSP_response_get1_basic'
/usr/bin/ld: openssl.c:(.text+0x4054): undefined reference to `SSL_get_peer_cert_chain'
/usr/bin/ld: openssl.c:(.text+0x406f): undefined reference to `SSL_CTX_get_cert_store'
/usr/bin/ld: openssl.c:(.text+0x4081): undefined reference to `OCSP_basic_verify'
/usr/bin/ld: openssl.c:(.text+0x4095): undefined reference to `SSL_get1_peer_certificate'
/usr/bin/ld: openssl.c:(.text+0x40b7): undefined reference to `OPENSSL_sk_value'
/usr/bin/ld: openssl.c:(.text+0x40c5): undefined reference to `X509_check_issued'
/usr/bin/ld: openssl.c:(.text+0x40d9): undefined reference to `OPENSSL_sk_num'
/usr/bin/ld: openssl.c:(.text+0x40e6): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x4101): undefined reference to `OCSP_BASICRESP_free'
/usr/bin/ld: openssl.c:(.text+0x410b): undefined reference to `OCSP_RESPONSE_free'
/usr/bin/ld: openssl.c:(.text+0x4126): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x4145): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x4164): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x4251): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x429f): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x42a6): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x42af): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x42e9): undefined reference to `X509_verify_cert_error_string'
/usr/bin/ld: openssl.c:(.text+0x4318): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x4341): undefined reference to `EVP_sha1'
/usr/bin/ld: openssl.c:(.text+0x434f): undefined reference to `OCSP_cert_to_id'
/usr/bin/ld: openssl.c:(.text+0x435a): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x4397): undefined reference to `OCSP_resp_find_status'
/usr/bin/ld: openssl.c:(.text+0x43a2): undefined reference to `OCSP_CERTID_free'
/usr/bin/ld: openssl.c:(.text+0x43d6): undefined reference to `OCSP_check_validity'
/usr/bin/ld: openssl.c:(.text+0x4417): undefined reference to `OCSP_crl_reason_str'
/usr/bin/ld: openssl.c:(.text+0x4438): undefined reference to `OCSP_BASICRESP_free'
/usr/bin/ld: openssl.c:(.text+0x4442): undefined reference to `OCSP_RESPONSE_free'
/usr/bin/ld: openssl.c:(.text+0x446e): undefined reference to `OCSP_response_status_str'
/usr/bin/ld: openssl.c:(.text+0x448f): undefined reference to `OCSP_RESPONSE_free'
/usr/bin/ld: openssl.c:(.text+0x4501): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x4533): undefined reference to `X509_free'
/usr/bin/ld: openssl.c:(.text+0x454d): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x458c): undefined reference to `OCSP_BASICRESP_free'
/usr/bin/ld: openssl.c:(.text+0x4613): undefined reference to `OCSP_BASICRESP_free'
/usr/bin/ld: openssl.c:(.text+0x461d): undefined reference to `OCSP_RESPONSE_free'
/usr/bin/ld: openssl.c:(.text+0x4637): undefined reference to `OCSP_cert_status_str'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `Curl_ssl_setup_x509_store':
openssl.c:(.text+0x471c): undefined reference to `SSL_CTX_get_cert_store'
/usr/bin/ld: openssl.c:(.text+0x480e): undefined reference to `BIO_new_mem_buf'
/usr/bin/ld: openssl.c:(.text+0x482a): undefined reference to `PEM_X509_INFO_read_bio'
/usr/bin/ld: openssl.c:(.text+0x485e): undefined reference to `OPENSSL_sk_value'
/usr/bin/ld: openssl.c:(.text+0x4871): undefined reference to `X509_STORE_add_cert'
/usr/bin/ld: openssl.c:(.text+0x488f): undefined reference to `X509_STORE_add_crl'
/usr/bin/ld: openssl.c:(.text+0x48a6): undefined reference to `OPENSSL_sk_num'
/usr/bin/ld: openssl.c:(.text+0x48b1): undefined reference to `X509_INFO_free'
/usr/bin/ld: openssl.c:(.text+0x48c8): undefined reference to `OPENSSL_sk_pop_free'
/usr/bin/ld: openssl.c:(.text+0x48d2): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x499d): undefined reference to `X509_STORE_up_ref'
/usr/bin/ld: openssl.c:(.text+0x49b3): undefined reference to `SSL_CTX_set_cert_store'
/usr/bin/ld: openssl.c:(.text+0x49c1): undefined reference to `X509_LOOKUP_file'
/usr/bin/ld: openssl.c:(.text+0x49cc): undefined reference to `X509_STORE_add_lookup'
/usr/bin/ld: openssl.c:(.text+0x49e7): undefined reference to `X509_load_crl_file'
/usr/bin/ld: openssl.c:(.text+0x4a09): undefined reference to `X509_STORE_set_flags'
/usr/bin/ld: openssl.c:(.text+0x4a2e): undefined reference to `X509_STORE_set_flags'
/usr/bin/ld: openssl.c:(.text+0x4a88): undefined reference to `X509_STORE_up_ref'
/usr/bin/ld: openssl.c:(.text+0x4abf): undefined reference to `X509_STORE_free'
/usr/bin/ld: openssl.c:(.text+0x4b18): undefined reference to `X509_STORE_load_file'
/usr/bin/ld: openssl.c:(.text+0x4b4a): undefined reference to `X509_STORE_load_path'
/usr/bin/ld: openssl.c:(.text+0x4bcd): undefined reference to `X509_STORE_set_flags'
/usr/bin/ld: openssl.c:(.text+0x4bec): undefined reference to `X509_STORE_set_flags'
/usr/bin/ld: openssl.c:(.text+0x4cd3): undefined reference to `X509_INFO_free'
/usr/bin/ld: openssl.c:(.text+0x4cdb): undefined reference to `OPENSSL_sk_pop_free'
/usr/bin/ld: openssl.c:(.text+0x4ce5): undefined reference to `BIO_free'
/usr/bin/ld: openssl.c:(.text+0x4d49): undefined reference to `X509_STORE_load_path'
/usr/bin/ld: openssl.c:(.text+0x4dd2): undefined reference to `X509_STORE_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_connect_step1':
openssl.c:(.text+0x4eb9): undefined reference to `RAND_status'
/usr/bin/ld: openssl.c:(.text+0x4f25): undefined reference to `TLS_client_method'
/usr/bin/ld: openssl.c:(.text+0x4f4f): undefined reference to `SSL_CTX_new'
/usr/bin/ld: openssl.c:(.text+0x4f73): undefined reference to `SSL_CTX_ctrl'
/usr/bin/ld: openssl.c:(.text+0x502c): undefined reference to `SSL_CTX_ctrl'
/usr/bin/ld: openssl.c:(.text+0x504d): undefined reference to `SSL_CTX_set_options'
/usr/bin/ld: openssl.c:(.text+0x508d): undefined reference to `SSL_CTX_set_alpn_protos'
/usr/bin/ld: openssl.c:(.text+0x5138): undefined reference to `SSL_CTX_set_cipher_list'
/usr/bin/ld: openssl.c:(.text+0x5165): undefined reference to `SSL_CTX_set_ciphersuites'
/usr/bin/ld: openssl.c:(.text+0x518b): undefined reference to `SSL_CTX_set_post_handshake_auth'
/usr/bin/ld: openssl.c:(.text+0x51aa): undefined reference to `SSL_CTX_ctrl'
/usr/bin/ld: openssl.c:(.text+0x51ea): undefined reference to `SSL_CTX_set_srp_username'
/usr/bin/ld: openssl.c:(.text+0x5201): undefined reference to `SSL_CTX_set_srp_password'
/usr/bin/ld: openssl.c:(.text+0x522f): undefined reference to `SSL_CTX_set_verify'
/usr/bin/ld: openssl.c:(.text+0x5254): undefined reference to `SSL_CTX_ctrl'
/usr/bin/ld: openssl.c:(.text+0x5263): undefined reference to `SSL_CTX_sess_set_new_cb'
/usr/bin/ld: openssl.c:(.text+0x52e4): undefined reference to `SSL_free'
/usr/bin/ld: openssl.c:(.text+0x52f0): undefined reference to `SSL_new'
/usr/bin/ld: openssl.c:(.text+0x530a): undefined reference to `SSL_set_ex_data'
/usr/bin/ld: openssl.c:(.text+0x5321): undefined reference to `SSL_set_connect_state'
/usr/bin/ld: openssl.c:(.text+0x5342): undefined reference to `SSL_ctrl'
/usr/bin/ld: openssl.c:(.text+0x535d): undefined reference to `SSL_set_ex_data'
/usr/bin/ld: openssl.c:(.text+0x5395): undefined reference to `SSL_set_session'
/usr/bin/ld: openssl.c:(.text+0x53c8): undefined reference to `BIO_meth_new'
/usr/bin/ld: openssl.c:(.text+0x53e3): undefined reference to `BIO_meth_set_write'
/usr/bin/ld: openssl.c:(.text+0x53f2): undefined reference to `BIO_meth_set_read'
/usr/bin/ld: openssl.c:(.text+0x5401): undefined reference to `BIO_meth_set_ctrl'
/usr/bin/ld: openssl.c:(.text+0x5410): undefined reference to `BIO_meth_set_create'
/usr/bin/ld: openssl.c:(.text+0x541f): undefined reference to `BIO_meth_set_destroy'
/usr/bin/ld: openssl.c:(.text+0x542f): undefined reference to `BIO_new'
/usr/bin/ld: openssl.c:(.text+0x5446): undefined reference to `BIO_set_data'
/usr/bin/ld: openssl.c:(.text+0x544e): undefined reference to `BIO_up_ref'
/usr/bin/ld: openssl.c:(.text+0x545a): undefined reference to `SSL_set0_rbio'
/usr/bin/ld: openssl.c:(.text+0x5466): undefined reference to `SSL_set0_wbio'
/usr/bin/ld: openssl.c:(.text+0x5543): undefined reference to `SSL_CTX_ctrl'
/usr/bin/ld: openssl.c:(.text+0x557f): undefined reference to `SSL_CTX_set_msg_callback'
/usr/bin/ld: openssl.c:(.text+0x5595): undefined reference to `SSL_CTX_ctrl'
/usr/bin/ld: openssl.c:(.text+0x55a1): undefined reference to `ERR_peek_error'
/usr/bin/ld: openssl.c:(.text+0x5615): undefined reference to `SSL_CTX_set_keylog_callback'
/usr/bin/ld: openssl.c:(.text+0x564c): undefined reference to `SSL_ctrl'
/usr/bin/ld: openssl.c:(.text+0x5784): undefined reference to `SSL_CTX_set_cipher_list'
/usr/bin/ld: openssl.c:(.text+0x5818): undefined reference to `ERR_get_error'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_bio_cf_in_read':
openssl.c:(.text+0x588c): undefined reference to `BIO_get_data'
/usr/bin/ld: openssl.c:(.text+0x58ea): undefined reference to `BIO_clear_flags'
/usr/bin/ld: openssl.c:(.text+0x5981): undefined reference to `BIO_set_flags'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_connect_step2':
openssl.c:(.text+0x59db): undefined reference to `ERR_clear_error'
/usr/bin/ld: openssl.c:(.text+0x59e4): undefined reference to `SSL_connect'
/usr/bin/ld: openssl.c:(.text+0x5a07): undefined reference to `SSL_get_error'
/usr/bin/ld: openssl.c:(.text+0x5ac8): undefined reference to `ERR_get_error'
/usr/bin/ld: openssl.c:(.text+0x5b46): undefined reference to `SSL_get_peer_signature_type_nid'
/usr/bin/ld: openssl.c:(.text+0x5b58): undefined reference to `SSL_ctrl'
/usr/bin/ld: openssl.c:(.text+0x5b60): undefined reference to `OBJ_nid2sn'
/usr/bin/ld: openssl.c:(.text+0x5b94): undefined reference to `SSL_get0_alpn_selected'
/usr/bin/ld: openssl.c:(.text+0x5c15): undefined reference to `OBJ_nid2sn'
/usr/bin/ld: openssl.c:(.text+0x5c31): undefined reference to `SSL_get_current_cipher'
/usr/bin/ld: openssl.c:(.text+0x5c39): undefined reference to `SSL_CIPHER_get_name'
/usr/bin/ld: openssl.c:(.text+0x5c45): undefined reference to `SSL_get_version'
/usr/bin/ld: openssl.c:(.text+0x5d85): undefined reference to `SSL_get_verify_result'
/usr/bin/ld: openssl.c:(.text+0x5d9e): undefined reference to `X509_verify_cert_error_string'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-openssl.o): in function `ossl_session_free':
openssl.c:(.text+0x4b5): undefined reference to `SSL_SESSION_free'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-curl_ntlm_core.o): in function `setup_des_key':
curl_ntlm_core.c:(.text+0x9d): undefined reference to `DES_set_odd_parity'
/usr/bin/ld: curl_ntlm_core.c:(.text+0xa8): undefined reference to `DES_set_key_unchecked'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-curl_ntlm_core.o): in function `Curl_ntlm_core_lm_resp':
curl_ntlm_core.c:(.text+0x117): undefined reference to `DES_ecb_encrypt'
/usr/bin/ld: curl_ntlm_core.c:(.text+0x137): undefined reference to `DES_ecb_encrypt'
/usr/bin/ld: curl_ntlm_core.c:(.text+0x157): undefined reference to `DES_ecb_encrypt'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-curl_ntlm_core.o): in function `Curl_ntlm_core_mk_lm_hash':
curl_ntlm_core.c:(.text+0x23c): undefined reference to `DES_ecb_encrypt'
/usr/bin/ld: curl_ntlm_core.c:(.text+0x260): undefined reference to `DES_ecb_encrypt'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-http1.o): in function `start_req':
http1.c:(.text+0x180): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-md4.o): in function `Curl_md4it':
md4.c:(.text+0x5bc): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-keylog.o): in function `Curl_tls_keylog_write_line':
keylog.c:(.text+0x18f): undefined reference to `__memcpy_chk'
/usr/bin/ld: /usr/local/lib/libcurl.a(libcurl_la-keylog.o): in function `Curl_tls_keylog_write':
keylog.c:(.text+0x271): undefined reference to `__memcpy_chk'
collect2: error: ld returned 1 exit status
Error: execution of an external program failed: 'musl-gcc -o /root/takajo/takajo /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@sstd@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@sstd@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@sstd@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@sstd@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@sstd@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@spure@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@spure@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@spure@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@scligen.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@spure@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@sansiparse.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@snancy.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@szippy@sadler32_simd.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@szippy@scrc32_simd.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@szippy.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@spuppy@splatforms@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@spuppy.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@spure@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@stermstyle.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@spure@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@spure@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@spure@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@[email protected] /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@ssuru@scommon_displays.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@ssuru@sfractional_bar.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@ssuru.nim.c.o /root/.cache/nim/takajo_r/@m..@[email protected]@[email protected]@slib@[email protected] /root/.cache/nim/takajo_r/@[email protected] /root/.cache/nim/takajo_r/@mtakajo.nim.c.o -pthread -pthread -lm -lm -lrt -static /usr/local/lib/libcurl.a -ldl'
Tip: 20 messages have been suppressed, use --verbose to show them.
nimble.nim(229) buildFromDir
Error: Build failed for the package: takajo