| 9 Apr 2025 |
implr | Haven't tried native yet | 23:16:05 |
Alex | You could try cross-compiling to aarch64.
If that fails with a similar error, then it's likely because of cross and not because of host arch. | 23:17:21 |
implr | huh, why didn't I think of that, of course | 23:26:46 |
implr | will try, thanks | 23:26:57 |
| 10 Apr 2025 |
implr | it is cross. oh well. | 10:20:07 |
| 11 Apr 2025 |
dramforever | this is one of the most confusing dependency list i've seen, has both pkg-config and pkgconfig | 02:30:09 |
dramforever | i mean the home-assistant-chip-wheels cross thing from yesterday | 02:30:25 |
dramforever | and the scary part is it seems to be actually correct, the former is the "normal" pkg-config and the latter is a python package | 02:30:51 |
hexa | Redacted or Malformed Event | 04:02:13 |
hexa | looked at it, and I have no clue why it fails like that | 04:02:30 |
hexa | but upstream certainly didn't envision riscv64 | 04:02:36 |
hexa | this was a shitty native build to begin with | 04:02:48 |
dramforever | found how to fix the pkg-config problem
--- a/pkgs/development/python-modules/home-assistant-chip-wheels/default.nix
+++ b/pkgs/development/python-modules/home-assistant-chip-wheels/default.nix
@@ -259,6 +259,7 @@ stdenv.mkDerivation rec {
''target_cc="${stdenv.cc.targetPrefix}cc"''
''target_cxx="${stdenv.cc.targetPrefix}c++"''
''target_ar="${stdenv.cc.targetPrefix}ar"''
+ ''pkg_config="${stdenv.cc.targetPrefix}pkg-config"''
];
preBuild = ''
| 07:01:51 |