-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib.systems: replace gcc attributes with cpu options
- Loading branch information
1 parent
d30faab
commit 51e4486
Showing
4 changed files
with
111 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ rec { | |
}; | ||
ppc64-musl = { | ||
config = "powerpc64-unknown-linux-musl"; | ||
gcc = { abi = "elfv2"; }; | ||
abi = "elfv2"; | ||
}; | ||
|
||
sheevaplug = { | ||
|
@@ -198,7 +198,7 @@ rec { | |
libc = "newlib"; | ||
# GCC8+ does not build without this | ||
# (https://www.mail-archive.com/[email protected]/msg552339.html): | ||
gcc = { | ||
cpu = { | ||
arch = "armv5t"; | ||
fpu = "vfp"; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters