summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/toolchain.yml28
1 files changed, 22 insertions, 6 deletions
diff --git a/examples/toolchain.yml b/examples/toolchain.yml
index ea9f41f..6d66404 100644
--- a/examples/toolchain.yml
+++ b/examples/toolchain.yml
@@ -1,11 +1,27 @@
tasks:
- install:
+ build_depends:
+ args:
+ host: 'platform'
+ target: 'platform'
+ output:
+ default:
+ runtime_depends:
+ - task: 'gcc:install'
+ - task: 'gcc-libs:install-gcc'
+
+ depends:
+ args:
+ host: 'platform'
+ output:
+ default:
+ runtime_depends:
+ - task: 'glibc:install'
+ - task: 'gcc-libs:install'
+
+ build:
args:
host: 'platform'
build_depends:
- - task: 'gcc:install'
- - task: 'gcc-libs:install-gcc'
+ - task: 'toolchain:build_depends'
depends:
- - task: 'glibc:install'
- - task: 'gcc-libs:install'
- run: ''
+ - task: 'toolchain:depends'