| 3 Sep 2023 |
raitobezarius | pkgsCross is just convenience for | 12:09:08 |
raitobezarius | nix-build -A something --argstr crossSystem "a system config" | 12:09:35 |
raitobezarius | It is an arbitrary limitation of the full power of the cross compilation infra | 12:09:55 |
raitobezarius | And is useful to refer to cross compiled package internally to nixpkgs via the available examples | 12:10:16 |
problems | alright i'm back on the case | 17:02:06 |
problems | getting firefox to build for ppc64le-musl | 17:02:19 |
problems | with obnoxiously cryptic errors | 17:02:36 |
problems | does anyone want to try their hand? i pushed my nixpkgs changes to github: https://github.com/ashkitten/nixpkgs/tree/fix-firefox-ppc64le-musl | 17:06:56 |
problems | nix build github:ashkitten/nixpkgs/fix-firefox-ppc64le-musl#pkgsCross.musl-power.firefox | 17:07:38 |
problems | here's my build log: https://gist.github.com/ashkitten/5bfa92664c80e5e4082eca94f5dbfdfd | 17:08:19 |
problems | it truly beats me why exit status 0 is an error here... | 17:10:52 |
problems | okay.. got past that. now i'm having different errors! | 18:22:59 |
problems | https://gist.github.com/ashkitten/a8f46190ae9c734bc7b0fe1a4581700f | 18:23:21 |
problems | guess it's trying to run the wrong as but i'm not sure where it's getting that from | 18:23:41 |
problems | interesting... pkgsCross.musl-power.buildPackages.rustc.llvmPackages.bintools doesn't contain as | 18:35:38 |
problems | llvmPackages.bintools doesn't at all, actually | 18:36:03 |
problems | i'll try building without lto.. see if that at least gets it to build, then work on lto | 18:40:11 |
problems | the issue is it's passing -fno-integrated-as to clang, but there is no as in the closure if cc is overridden with a bintools that doesn't contain as i think | 18:41:36 |
problems | ayyyyy it built!! | 19:08:03 |
problems | so now i need to make sure the wrapper builds, and see if i can add as back to stdenv without messing everything up | 19:10:57 |
problems | got wrapper building!! | 21:23:12 |
problems | and it works! ..now building again to fix sqlite endianness issue | 21:23:39 |
rhelmot | is clang known to be problematic as a basic stdenv compiler | 21:35:45 |
p14 | In reply to @rhelmot:matrix.org is clang known to be problematic as a basic stdenv compiler There are issues for example https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration They can be worked around with effort but lots of stuff doesn't currently work out of the box with a recent LLVM in nix. | 21:37:26 |
p14 | It's slightly unfortunate breakage particularly because it confuses a lot of configure scripts into awkwardly silently (or nonobviously at least) broken states. | 21:38:21 |
problems | wheeee | 21:54:33 |
problems | why does llvmPackages.bintools not contain as? | 22:08:04 |
problems | ah. | 22:11:38 |
problems | https://github.com/NixOS/nixpkgs/commit/a5e136325868d6439b405dffbe782f5abbd0ee1a | 22:11:44 |
problems | @Alyssa Ross maybe you have a recommendation here, since you wrote this commit. i need as in the firefox build for lto, and not sure where it's supposed to come from. | 22:13:45 |