-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update shell.nix
to nixpkgs-24.05
#14651
base: master
Are you sure you want to change the base?
Update shell.nix
to nixpkgs-24.05
#14651
Conversation
Like in #14592 there are some spec failures in CI related to iconv. |
Apparently Apple replaced the system iconv implementation from an old GNU libiconv to a FreeBSD-based one in 2023, so this is why I recalled not seeing those spec failures on my M2 in the past? The actual bug is somewhat weird, and I have managed to reproduce it in C as well. # first call consumes 1023 bytes and outputs 992 bytes; all the `y`s are lost
# second call consumes 3 bytes and outputs 2 bytes for the `好`
("x" * 992 + "y" * 31 + "好").encode("EUC-JP").size # => 994 |
We should pass either |
This pull request has been mentioned on Crystal Forum. There might be relevant details there: https://forum.crystal-lang.org/t/cross-compiling-crystal-applications-part-2/7090/12 |
Detect if macOS is the compilation target and forces libiconv usage instead of macOS built-in iconv as is broken since 2023. Ref: * crystal-lang/crystal#14651 (comment)
My bad, it's |
Now for some reason CI on macOS doesn't even complete anymore. https://github.com/crystal-lang/crystal/actions/runs/11682308922/job/32535751549?pr=14651 is running for 4 hours now. |
Updates nixpkgs in
shell.nix
to 24.05 release. This release also brings LLVM 18 (and drops LLVM 11) so we update LLVM as well.Closes #14269, #14592