macOS: libiconv.2.dyld not loaded #51
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
After successfully installing Lix with the
https://install.lix.systems/lix
installation script, I attempted to execute/nix/nix-installer --help
and received the error:My Xcode installation is up to date, I ran
brew install libiconv
and it was already installed. The dynamic library/nix/store/dka6i6yj8sgws93wc6m0lmqzhk21kq87-libiconv-107/lib/libiconv.2.dylib
does exist on initial installation, but the executable seems to be looking for/nix/store/phzzjrksk8nnmjsbrpbkvv4pr383ab6v-libiconv-109/lib/libiconv.2.dylib
, which does not exist.I tested downloading the same executable from the latest
lix-installer
release:curl -sL -o lix-installer https://install.lix.systems/lix/lix-installer-aarch64-darwin && chmod +x ./lix-installer && ./lix-installer --help
and got the same exact error, but if I runcurl -sL -o lix-installer https://install.lix.systems/lix && chmod +x ./lix-installer && ./lix-installer --help
, allowing the Rustup-based script to download the same exact executable into atmp
folder, it works perfectly and I'm able to manage my installation. Honestly have no idea why this happens.:3
Might be linked to #45
I am very willing to believe this, yes. It would be very plausible that for some reason the binaries we built got linked to something in the nix store, which then led to the sadness observed.
I don't like non-nix environments very much but we might have to go that route to mitigate those issues. agh!