-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add cython override #37
base: bump-nixpkgs-2019-11-21
Are you sure you want to change the base?
Add cython override #37
Conversation
Weird issue happens when combining cross overlays and pkgsStatic together. Some issue when combining the two together. This was introduced in NixOS/nixpkgs@39769df. /cc @Ericson2314
Cython depends on gdb but we can’t build it targetting wasm32. Luckily, gdb is an optional dependency of Cython, so just setting it to null works. We don’t get the cython debugger, but we don’t need it anyway.
Thanks Matt, but there was indeed an issue with the wasm-cross expressions which caused the gdb to be built for the target wasm. Its important to use two layers of
This is the way existing wasm-cross uses webabi. And infact this was the only change required to make cross-compilation work after I pulled in your fix from #33 |
Yeah that sounds good! |
Why was this not an issue before? |
it seems that even with this fix the build fails
|
Cython was added to python lxml here: https://github.com/nixos/nixpkgs/commits/e1b6b9056d4 |
Adds an override to cython, dropping gdb support.