| 15 Feb 2025 |
alexfmpe | ah yeah no false alarm, I was building the wrong thing, the types.h and other errors are present in staging(-next) | 01:06:05 |
alexfmpe | fixed this one at least: https://github.com/NixOS/nixpkgs/pull/382182 | 01:23:07 |
| BenjB83 joined the room. | 10:14:34 |
| BenjB83 changed their display name from Benjamín Buske to BenjB83. | 10:43:28 |
| 16 Feb 2025 |
| KristijanZic joined the room. | 01:07:04 |
| Jake Hillion joined the room. | 18:26:31 |
| 17 Feb 2025 |
Axman6 | If you're building on a x86_64-linux system and you build pkgs.pkgsCross.gnu64.foo is there a difference between what it builds and what pkgs.foo? are there any checks that a cross compile isn't actually a cross compile? | 06:11:55 |
Axman6 | Just wondering if there's anything that checks if buildPlatform and hostPlatform are the same and uses the top level definitions | 06:12:42 |
K900 | No, there isn't | 07:21:10 |
alexfmpe | $ nix-build -A hello
/nix/store/p09fxxwkdj69hk4mgddk4r3nassiryzc-hello-2.12.1
$ nix-build -A pkgsCross.gnu64.hello
/nix/store/p09fxxwkdj69hk4mgddk4r3nassiryzc-hello-2.12.1
| 16:06:50 |
alexfmpe | there are some things that check whether you're doing cross, but not for the purpose of picking a different attribute path | 16:08:28 |
alexfmpe | I think it's mostly about whether test suites can be run normally, or maybe configuring cross compilers | 16:09:34 |
alexfmpe | a good deal of cross is just proper build time vs run time separation | 16:09:54 |
alexfmpe | * I think it's mostly about whether test suites can be run normally, configuring cross compilers, etc | 16:10:24 |
Axman6 | Cool, looks like that covers all my curiosities. | 23:40:59 |
| 18 Feb 2025 |
| @mlaga97:matrix.mlaga97.space left the room. | 03:26:00 |
Axman6 | If, hypothetically, I was insane and wanted to cross compile for windows using pkgsCross.mingwW64, and I wanted to produce statically linked executables, is there any chance what could possibly work? trying pkgs.okgsCross.mingwW64.pkgsStatic.myPackage fails quite quickly, with mingw_w64-headers-static-12.0.0 quite sensibly reporting checking host system type... Invalid configuration 'x86_64-w64-windows-gnu': Kernel 'windows' not known to work with OS 'gnu'. (I assume that pkgsStatic attempts to use musl, which clearly won't work) | 05:30:23 |
K900 | No can do | 05:34:40 |
K900 | Windows doesn't really do static | 05:34:57 |
Axman6 | yeah ok - I guess I need to find out how windows packages things up | 06:10:01 |
| 19 Feb 2025 |
Axman6 | Is there a way to have Nix run a VM or something else to run things like tests when cross compiling? | 01:32:21 |
Artturin | In reply to @axman6:matrix.org Is there a way to have Nix run a VM or something else to run things like tests when cross compiling? No but in some cases it should be possible to hook up stdenv.hostPlatform.emulator buildPackages somehow | 01:52:04 |
Artturin | * No but in some cases it might be possible to hook up
stdenv.hostPlatform.emulator buildPackages somehow | 01:52:18 |
Artturin | * No but in some cases it might be possible to hook up
`stdenv.hostPlatform.emulator buildPackages somehow` | 01:52:28 |
Artturin | * No but in some cases it might be possible to hook up
`stdenv.hostPlatform.emulator buildPackages` somehow
| 01:52:42 |
Artturin | https://github.com/search?q=repo%3ANixOS%2Fnixpkgs+%2F%5C.emulator%2F&type=code | 01:53:27 |
Axman6 | Ok, that helped me find https://nix.dev/tutorials/cross-compilation.html#real-world-cross-compiling-of-a-hello-world-example too, thanks | 01:57:46 |
Axman6 | now to figure out how to run x86_64 wine under some VM on aarch64-darwin 😂 | 01:59:05 |
Artturin | If you want a linux builder https://nixcademy.com/posts/macos-linux-builder/ | 02:00:12 |
Axman6 | That looks shockingly simple. Is it possible for the VM to share the host's /nix/store? | 02:06:46 |