Replies: 3 comments
-
Hi @Adam74211, Assuming you're talking about during the builds of libraries themselves, we currently use CMake to perform the downloads (which uses Curl underneath). Curl can be configured with the [1] https://stackoverflow.com/questions/9445489/performing-http-requests-with-curl-using-proxy |
Beta Was this translation helpful? Give feedback.
-
I had an issue in my company regarding proxy and wondered if the solution could be helpful to others. Setting the environment variables didn't do the trick. After searching and realizing that vcpkg uses curl, I then tried to issue a curl command directly with "curl -q -I https://github...", which presented the error "curl: (4) unsupported proxy 'https://xxx:yyy@proxy.com:1234', libcurl is built without the HTTPS-proxy support". Then, I just updated the HTTP_PROXY and HTTPS_PROXY variables to http://xxx:yyy@proxy.com:1234' and it worked as intended. |
Beta Was this translation helpful? Give feedback.
-
recently, i got this issue when use clion with vcpkg plugin, i make a stupid proxy way by use a wrapper exec process.
a real ugly way lol. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
All reactions