-
Notifications
You must be signed in to change notification settings - Fork 266
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 make target to download sources #172
Comments
Also looking for this! Same here though with Makefile familiarity... |
Easiest way to get everything you need is to run The file extraction is slow and noisy but will grab everything - you don't actually need to do this though, the sources can be pulled directly given a filename under sources/. If you use environment variables for versions, you can reference them in your config.mak or via
If you're doing CI, use environment variables; you generate a config.mak in that case as well; e.g., set your target, GCC version, etc. via the environment:
This will pull an individual file, checksum, and drop it in the sources/ directory.
sources/ should survive a |
Thanks for the thorough writeout @ryanwoodsmall, much appreciated! I went with your suggestion to spell out each package version as environment variables, then running |
Having a make target that only downloads (and probably unpacks) sources would make caching builds in CI easier.
This is probably possible with the current Makefile but I am not familiar enough with makefile syntax
The text was updated successfully, but these errors were encountered: