Rolf Karp

Results 7 comments of Rolf Karp

Thanks to rust-lang/rust#40018 you can crosscompile Rust programs (on nightly) from Windows to Linux using the `linux-musl` target as long as none of the crates you use have any C...

With rust-lang/rust#48125 LLD is now part of nightly, so there's no need to even install LLVM anymore. It can simply be used like this: ``` [target.x86_64-unknown-linux-musl] rustflags = ["-Z", "linker-flavor=ld.lld"]...

Actually, `rustflags = ["-C", "linker-flavor=ld.lld"]` isn't even necessary anymore, it seems to be inferred by the linker name. Also, there's no need to install LLVM since LLD is already part...

Building xargo with the (nightly) `windows-gnu` toolchain works fine for me. @Niondir: Shouldn't `link.exe` from Visual Studio be used instead of the one from GNU coreutils? You may have to...

I cannot reproduce this, but there are a few reasons why this can happen: - `buildkit-cache-dance` may use a different buildx builder than your actual Docker build. - [Options](https://docs.docker.com/reference/dockerfile/#run---mounttypecache) to...

> I am wondering if you add `target=/run/secrets/gitlab_username` to `RUN --mount=type=secret,id=gitlab_username,target=/run/secrets/gitlab_username ...` if it helps I tried this, the secret file at `/run/secrets/xyz` is still empty (size 0).

It looks like this was fixed in the new Docker Compose version (tested on v2.29.2).