Cheng Shao
Cheng Shao
Relevant ghc merge request for those interested: https://gitlab.haskell.org/ghc/ghc/-/merge_requests/7296
Additional note: it's possible to run `nix-prefetch --file /nix/store/path_to_nixpkgs ...` to specify nixpkgs path, but that's not enough to get rid of `NIX_PATH` dependency directly because of https://github.com/msteen/nix-prefetch/blob/master/lib/lib.nix#L1.
I tried adding `contentAddressedByDefault = true;` to nixpkgs config, building and pushing all build-time/run-time dependencies of `pkgs.hello` to a cachix bucket, but in another nix environment, it fails to find...
https://help.github.com/articles/github-terms-of-service/ ToS里哪条提到不许议论政治了?还“不管对于错”。。妈的智障 另外这贴下的评论真是墙国心态大观,比原贴都有意思多了。
@23Skidoo I built a static `cabal` for my own project, simply by adding a `ld-options: -static` line to `cabal-install.cabal` and building it in an Alpine image. No extra flags/hacks is...
@23Skidoo Nope. The hard lifting is done by @mitchty who provides `ghc` packages on Alpine (which are used to bootstrap later `ghc` releases), yet there's only `x86_64` and `armhf` versions...
@23Skidoo You need to build it yourself, and since there's no ghc binary package for i386, you need to cross-compile it in a glibc based distro.
@LnL7 When building a docker image for nix, setting up `nixbld` users even without installing the daemon can be helpful sometimes, e.g. when building `nixpkgs.google-chrome-dev`, it always fail with a...
Hi folks, I have a `wasi-sdk` fork that added dummy implementation for some `pthread` functions which seems to get C++ mutex & atomics working, see https://github.com/TerrorJack/wasi-sdk/releases/tag/201027 and the tagged commit...
I think in general, full pthread support with appropriate blocking behavior is possible within `wasi-sdk` without relying on wasm threads proposal or extending the wasi spec. To achieve this, we...