如果我在命令行 设置http_proxy
的话, cmake ..
可以成功走代理,但是如果我右键点击CMakeLists.txt
,如果执行过程中有一些下载 github 仓库的操作,由于走不了代理,就不能继续进行下去了。。。
[ 11%] Performing download step (git clone) for 'googletest'
Cloning into 'googletest-src'...
fatal: unable to access 'https://github.com/google/googletest.git/': LibreSSL SSL_connect: Operation timed out in connection to github.com:443
1
mschultz 2022-03-04 16:27:35 +08:00
看上去这是一个 git 操作(`git clone`),所以
``` git config --global http.proxy http://<host>:<port> git config --global https.proxy http://<host>:<port> ``` 可不可以呢? |
2
statumer 2022-03-04 16:50:06 +08:00 via iPhone
set(ENV{HTTP_PROXY} “”)
|
3
imzcg2 2022-03-04 18:12:45 +08:00 via Android
clash + tun 不够用?
|