-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
[WIP] nixpkgs: Begin moving to buildSystem parameter, away from crossSystem #50875
Conversation
e4f7827
to
044685c
Compare
The pair of hostSystem and buildSystem is a better abstraction than localSystem and crossSystem. The reason is that the latter definitions are optimized for the build *process* rather than the build *result*. Let me explain: In a declarative system, we care more about the result than the process, and the only useful property of the result is *hostSystem*. Knowing hostSystem, the only other piece of information we need in order to derive the previous attributes is *buildSystem*, which is extrinsic to the *result* and can typically be forgotten.
044685c
to
48292eb
Compare
@matthewbauer I'd recommend anyone to avoid 👎 reactions. Please write a comment about what needs to improve. It seems that 4 other people would like to see a change like this happen. |
Sorry about that! I was going to post a comment but didn’t have time to explain the full reasoning. Basically:
|
No problem!
The
Ok, let's call it
An implementation concern. I'll see if I can rewrite it such that it has fewer conditionals. I do think that the user interface here is more important than the number of conditionals.
This seems like a very simple "intuitive" defaults scheme to me. The only issue is that you now have to give two arguments for a remote non-cross build of a foreign architecture; for example a darwin user deploying to linux using a linux build farm.
I quite like the latter option, but I don't know enough about the history of cross compilation yet to judge it. It seems quite elegant: |
mmm agree the autoconf terminology is bad, but if we rename it here we should rename the existing More importantly |
Are there any updates on this pull request, please? |
Thank you for your contributions.
|
TL;DR: Someone please pick this up because this could be much more elegant. Sadly I'm not the right person to do it. My goal with this PR was to separate the "what" from the "how", where the "what" is most important. I believe that the primary focus of this interface should be the build result, so the platform where the build result can run. Because this is the most essential parameter, I think it should always be set via the same parameter name. Cross builds can then be achieved by changing the platform that builds it. This is a more top-down design approach than the current bottom-up one. Sadly I'm not the right person to chase this little redesign. I'm not very closely involved with the nixpkgs cross compilation business, so I think that everyone is better off when I leave this and perhaps someone else picks this up. I don't need any credit for this either, because I've only done the easy part. |
In response to #36217, #49510, #49765.
Motivation for this change
The general issue seems to be that
localSystem
is the wrong abstraction.It is documented in only one section of the manual, about invoking nixpkgs for cross compilation and apologizing for the current situation. It does not seem to be useful outside the task of invoking nixpkgs. In this issue I (too) am proposing to use the existing build and host terminology, instead of maintaining separate terms local and cross for the singular purpose of invoking nixpkgs.
In a declarative system, we care more about the result than the
process, and the only useful property of the result is hostSystem.
Knowing hostSystem, the only other piece of information we need
in order to derive the previous attributes is buildSystem, which
is extrinsic to the result and can typically be forgotten.
This PR is work in progress. TODO:
top-level/impure.nix
buildSystem ? null
. Cross-users will have specifybuildSystem
or we'll have to keepcrossSystem
around for the purpose of simultaneously settinghostSystem
andbuildSystem = currentSystem
. Any opinions?localSystem
and possiblycrossSystem
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)