summaryrefslogtreecommitdiffstats
path: root/examples/binutils.yml
AgeCommit message (Collapse)Author
2021-10-30examples: move recipes to subdirectoryMatthias Schiffer
2021-10-24examples: remove explicit parallelism handlingMatthias Schiffer
We are going to pass in a jobserver pipe through MAKEFLAGS.
2021-10-18examples: delete autotools config.log and similar filesMatthias Schiffer
Improves reproducibility of task layers. While reproduciblity is not as important for layers as it is for outputs, this is low-hanging fruit and may improve cache usage.
2021-10-02examples: binutils: allow build for cross hostMatthias Schiffer
2021-09-29examples: use {{pn}} and {{pv}} throughout recipesMatthias Schiffer
2021-09-29context: add platform relation variablesMatthias Schiffer
build_to_host, host_to_target and build_to_target describe how two platforms are related. cross_compile and sysroot are moved into this new structure. cross_compile is added to the toplevel scope as an alias for build_to_host.cross_compile, as most packages will only ever need this.
2021-09-25example: omit recipe name in dependencies where possibleMatthias Schiffer
2021-09-23Have tasks explicitly list their input argumentsMatthias Schiffer
2021-09-22Rename target_triple to gnu_tripletMatthias Schiffer
2021-09-19Use template variables instead of environment, parametrize all examplesMatthias Schiffer
This implements passing of various pieces of information through task arguments, as well as argument inheritance through different kinds of dependencies.
2021-09-17Have recipes specify outputs, verify in resolverMatthias Schiffer
The outputs are not respected by the runner yet.
2021-09-16examples: more toolchain stuffMatthias Schiffer
2021-09-15examples: remove unnecessary env exportsMatthias Schiffer
2021-09-15examples: fix a few configuration issues, build initial libgccMatthias Schiffer
2021-09-15Make 'fetch' a kind of dependency instead of a kind of taskMatthias Schiffer
2021-09-15examples: adjust binutils for aarch64 target, add gcc recipeMatthias Schiffer
2021-09-11More build dir reorganizationMatthias Schiffer
- Rename work layer to "layer" - Only preserve a work subdir of the build home - Move downloads and destination dir out of work dir
2021-09-06examples: use inherit for binutils exampleMatthias Schiffer
2021-07-25examples: add build script for binutilsMatthias Schiffer
2021-07-24runc: copy fetch dependencies into workdirMatthias Schiffer
2021-07-24Introduce "fetch" task typeMatthias Schiffer
No actual fetching for now, fetch tasks always succeed immediately. The runner ignores fetch tasks for unpacking.