summaryrefslogtreecommitdiffstats
path: root/examples/recipes/toolchain.yml
blob: ab8e6de4ffcd11e34ca729ff61527d2791a3d38b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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'