summaryrefslogtreecommitdiffstats
path: root/examples/recipes/toolchain.yml
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-10-30 00:21:04 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-10-30 21:15:09 +0200
commit3fbe53aec0f340a90858265ca8f890314fa5d523 (patch)
tree32a666397b7c97c6ba202274b7f0aaf0e2166422 /examples/recipes/toolchain.yml
parent6d77ac17b4414d30384473c667e08199f428d94e (diff)
downloadrebel-3fbe53aec0f340a90858265ca8f890314fa5d523.tar
rebel-3fbe53aec0f340a90858265ca8f890314fa5d523.zip
examples: move recipes to subdirectory
Diffstat (limited to 'examples/recipes/toolchain.yml')
-rw-r--r--examples/recipes/toolchain.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/recipes/toolchain.yml b/examples/recipes/toolchain.yml
new file mode 100644
index 0000000..ab8e6de
--- /dev/null
+++ b/examples/recipes/toolchain.yml
@@ -0,0 +1,31 @@
+tasks:
+ build_depends:
+ args:
+ host: 'platform'
+ target: 'platform'
+ output:
+ default:
+ runtime_depends:
+ - recipe: 'gcc'
+ task: 'install'
+ - recipe: 'libgcc'
+ task: 'install'
+
+ depends:
+ args:
+ host: 'platform'
+ output:
+ default:
+ runtime_depends:
+ - recipe: 'glibc'
+ task: 'install'
+ - recipe: 'gcc-libs'
+ task: 'install'
+
+ build:
+ args:
+ host: 'platform'
+ build_depends:
+ - task: 'build_depends'
+ depends:
+ - task: 'depends'