this post was submitted on 25 Jun 2023
15 points (100.0% liked)

Operating Systems

3787 readers
1 users here now

All things operating system related, from Windows to Mac to Linux distros and the more obscure.

Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] TheTrueLinuxDev@beehaw.org 3 points 1 year ago (2 children)

Don't think so since the big part of what make arch appealing was the easier approach to programming on the platform. NixOS had some problems particularly the llvm and clang compilers that complained a lot about missing standard libraries and headers. Until that is addressed, it won't be the new arch. I plan on trying it again on next weekend.

[–] ericjmorey@programming.dev 2 points 1 year ago (1 children)

NixOS had some problems particularly the llvm and clang compilers that complained a lot about missing standard libraries and headers.

I tried searching for LLVM related issues with NixOS, but came up empty. Could you help me find more info on this?

[–] TheTrueLinuxDev@beehaw.org 1 points 1 year ago

It was discussed on Matrix channel for NixOS a long while ago. I am re-attempting NixOS to see if they have addressed the QOL for Clang/LLVM development. That was some of the issues that come up when I was working with FFI LLVM-C with C# (it uses LLVM for accelerating LINQ operations.)

[–] adis@lemmy.blad.is 1 points 1 year ago

NixOS had some problems particularly the llvm and clang compilers that complained a lot about missing standard libraries and headers.

I think it's likely that you're trying to just add clang/llvm toolchains to your development shell like this:

pkgs.mkShell { packages = [
  llvmPackages_16.clang
]; };

But you actually want something like:

(mkShell.override { inherit (llvmPackages_16) stdenv; }) {
  packages = [ ];
}