alexcrichton / curl-rust

Rust bindings to libcurl
MIT License
1.02k stars 234 forks source link

Update curl to 7.83 #444

Closed LucioFranco closed 2 years ago

LucioFranco commented 2 years ago

cc @alexcrichton @sagebind

LucioFranco commented 2 years ago

Not totally sure why there is a failure on windows...any help here would be appreciated

alexcrichton commented 2 years ago

The error message:

  = note: libcurl_sys-76a9e782c1ceea02.rlib(select.o) : error LNK2019: unresolved external symbol curlx_mstotv referenced in function our_select

indicates a link error due to a missing symbol. This is typically because there's a missing *.c file somewhere or something like that. You'll need to hunt around for where that symbol is defined in curl and add it to the build script.

LucioFranco commented 2 years ago

Seeing this failure now

warning: In file included from /src/target/x86_64-unknown-linux-gnu/debug/build/systest-22cae09e2ca33814/out/all.c:4:0:
warning: /src/target/x86_64-unknown-linux-gnu/debug/build/curl-sys-b5934fcd5deaddfe/out/include/curl/curl.h:3072:20: fatal error: header.h: No such file or directory
warning: compilation terminated.

Can't seem to reproduce locally on my mac, will try a linux box when I get the chance.

LucioFranco commented 2 years ago

Going to close this in favor of #445 since I don't have anymore time today to work on this.