summaryrefslogtreecommitdiffstats
path: root/examples/toolchain.yml
blob: fea1ce457de35752d85f7ad88d087195c812a162 (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
tasks:
  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: 'build_depends'
    depends:
      - task: 'depends'