Iván Baldo
Iván Baldo
Maybe this is related https://github.com/MetaMask/metamask-mobile/issues/8380
Are we using the dependencies and versions equal or later than the specified in https://github.com/WalletConnect/walletconnect-monorepo/issues/4089#issuecomment-1929834527 ?
Happening to me in an up to date RHEL 9.4 server...
With the mptcpd-0.8-3.el9 package installed it doesn't work. If I run it as root manually with `/usr/libexec/mptcpd` then it does work. Maybe some other capability is needed too? ```sh #...
Yeah, of course, but still: that's a workaround, not a proper fix and behavior. Thanks for your answer Jan!
Thanks a lot for your answer Dave! Now more than two and a half years later, whats your opinion on using BBR? BTW I been using it together with fq_codel...
Tried compiling like this but same error still: `CUDA_NVCC_FLAGS='--compiler-options -fPIC' cargo build --features cuda,cudnn,flash-attn,nccl`
This didn't work neither: `CUDA_NVCC_FLAGS='--compiler-options -fPIE' cargo build --features cuda,cudnn,flash-attn,nccl`
Thanks @yinqiwen! As you suggested, adding the following to that file, the compilation works: ```rust .arg("--compiler-options") .arg("-fPIC") ``` Maybe these options could be added by default?
My issue is a bit different but related: I am building a Docker Image to run later in a different host. Is there a way to build for all the...