-
-
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
TI MSP430 cross compiling #58330
TI MSP430 cross compiling #58330
Conversation
Do you need to use prebuilt binaries for this arch? |
As in do I personally need gcc/binutils in the cache? It'd be nice but if I'm the only one who cares I can always set up my own builds to cachix or something. If "you" as in the world/nixpkgs... These parts are like AVR, the main goal here is just to be able to set up a cross gcc and dev environment - you don't run linux on them and don't expect to run actual packages/binaries either. |
Ok sorry I misread and throught you were extracting non-nix build tarballs when you are just getting more headers. Still, why isn't the newlib that comes with gcc no good? |
CC @matthewbauer who de-duplicated a lot of the avr stuff. I'm just trying to make sure we don't have any duplication here like we did before. |
so the way it works is for example,
These headers/ldscripts contain symbols specific to the features and memory map of that specific mcu - there are about 700+ models. These files are not distributed as part of gcc nor newlib, but are a pretty standard part of the dev environment for any project targeting these parts. newlib+gcc still cover all the standard libc headers and crt etc. |
pkgs/top-level/all-packages.nix
Outdated
msp430Newlib = callPackage ../development/misc/msp430/newlib.nix { }; | ||
msp430NewlibCross = callPackage ../development/misc/msp430/newlib.nix { | ||
inherit (pkgs.buildPackages.xorg) lndir; | ||
newlib = pkgs.newlibCross; |
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.
We really shouldn't use pkgs.*Cross
in nixpkgs...almost ever. (@matthewbauer I told you this would happen!)
See what the others do with the special stdenv instead. oh it's already stdenvNoCC
, that will be fine.
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.
We really shouldn't use pkgs.*Cross in nixpkgs...almost ever.
Hm, it's only being used here because this package is wrapping/replacing it and being used in a place where newlibCross
is already being used, should that be done some other way?
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.
Hey I'm really sorry I straight up misread this as pkgsCross.msp430...
. Everything you did is fine, though pkgs.
is fine to skip too here.
@AerialX Again sorry for all the paranoid misdirection from my end here. The PR looks good; thank you for contributing it. |
np, thanks! I'm just not familiar with the process or idioms of nixpkgs and wanted to make sure I was understanding and explaining everything properly. |
Motivation for this change
Enables compiling for MSP430 microcontrollers.
Remaining unsure points
fetchzip
appropriate here or isfetchurl
better to use when the archive is likely an archive that won't superficially change?msp430GccSupport
be included in stdenv or should it just be expected to be added tobuildInputs
of any packages targeting msp430 devices?msp430GccSupport
package contains headers, symbols, and linker scripts for the registers and memory layout of each of the hundreds of MSP430 SKUs.-mmcu=
flag with gcc will pull in the appropriate ldscript and header, so I'm assuming this should be included in gcc, libc, or stdenv in some way.Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)