-
-
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
gnu-config: Update, allowing hacks to be removed #40040
Conversation
if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isAarch32 | ||
then [] | ||
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target"; | ||
configurePlatforms = [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it runtime-tested that this fixes it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No it is not. Unless we have some CI that does this, I was hoping you might :).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only other issue I remember is ld picking a wrong emulation. If this also doesn't solve that we have the means to force it from nix now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIRC the LD emulation thing was the actual thing that prevented it from working.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also as far as I know we are using the same triplets that other distros do, or maybe that was one of the things to double-check - IIRC gnu-efi had some problems that I had to work around on ARM. I can still try to build this though once some other builds finish.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=8f50e6eddb95 is the culprit. Looks like they meant to blacklist odd-end arm vendors, so unknown
is being caught by mistake.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 7f5ba50d4b2..0acd953f119 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -254,6 +254,7 @@ esac
case ${target} in
# Avoid special cases that are not obsolete
arm*-*-*eabi* \
+ | arm*-unknown-* \
)
;;
arm*-wince-pe* \
I'll submit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure the real problem isn't that your quadruplet is missing the *eabi*
part? What do other distros do?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(There is an older 'OABI' ABI which has been dropped by GCC by now, I think).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dezgeg oh I see, interesting.
lib/systems/parse.nix
Outdated
@@ -69,8 +69,13 @@ rec { | |||
cpuTypes = with significantBytes; setTypes types.openCpuType { | |||
arm = { bits = 32; significantByte = littleEndian; family = "arm"; }; | |||
armv5tel = { bits = 32; significantByte = littleEndian; family = "arm"; }; | |||
armv6a = { bits = 32; significantByte = littleEndian; family = "arm"; }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How are the R- and M- parts tested given that they probably don't run Linux at all or without a nommu-configured libc etc.?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I merely wanted to use gccCrossStageStatic
. This does allow gcc and binutils to configure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also built binutils.
Success on x86_64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Failure on x86_64-darwin (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on aarch64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
eca653b
to
189614e
Compare
@dezgeg OK I prohibited |
Well, now I get that error message on |
@dezgeg ah thanks, I'll change the defaulting. Would |
bd04b0c
to
b3a67c0
Compare
Doing the lib changes in #40297 |
Failure on x86_64-darwin (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on x86_64-darwin (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on aarch64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on aarch64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Failure on x86_64-darwin (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on aarch64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
b3a67c0
to
84c279f
Compare
Success on x86_64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Failure on x86_64-darwin (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on aarch64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Build-testing this version now... |
This one builds stdenv now at least. |
Great, Thanks so much for testing! I might rebase again but I'll merge today. |
Not just Aarch64. Other non-x86 platforms might be old enough, but I am about to update gnu-config to handle things better across the board.
…xception"" And there's more reverts too. The previous commmit d838afbc9376bdadb8c690eb00b425f3eeccdf2d to gnu-config finally solves it! This reverts commit 3ed545a.
84c279f
to
f2b575b
Compare
Success on x86_64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Success on x86_64-darwin (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Failure on aarch64-linux (full log) Attempted: binutils, gnu-config Partial log (click to expand)
|
Motivation for this change
gnu-config
failed to parse certain ARM cpu types and most 4-component configs, so I fixed it upstream. Now after updating it here, we should be able to always pass--build
and--host
to binutils and GCC like other platforms, and also support more ARM cpu types ourselves.Things done
build-use-sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)