12345678910111213141516171819202122232425262728293031323334353637383940 |
- # vim: filetype=yaml sw=2
- filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.gz'
- git_url: https://git.code.sf.net/p/mingw-w64/mingw-w64
- git_hash: 0a1d495478d8ed1a94fc77b9dbb428b7e0372588
- version: '[% c("abbrev") %]'
- llvm_version: 8.0.1
- gpg_keyring: clang.gpg
- sig_ext: sig
- var:
- container:
- use_container: 1
- setup: |
- mkdir -p /var/tmp/dist
- tar -C /var/tmp/dist -xf $rootdir/[% c("compiler_tarfile") %]
- export PATH="/var/tmp/dist/mingw-w64-clang/bin:$PATH"
- input_files:
- - project: container-image
- - project: clang
- name: clang
- - project: cmake
- name: cmake
- - URL: 'https://github.com/llvm/llvm-project/releases/download/llvmorg-[% c("llvm_version") %]/libcxx-[% c("llvm_version") %].src.tar.xz'
- name: libcxx
- file_gpg_id: 1
- - URL: 'https://github.com/llvm/llvm-project/releases/download/llvmorg-[% c("llvm_version") %]/libcxxabi-[% c("llvm_version") %].src.tar.xz'
- name: libcxxabi
- file_gpg_id: 1
- - URL: 'https://github.com/llvm/llvm-project/releases/download/llvmorg-[% c("llvm_version") %]/libunwind-[% c("llvm_version") %].src.tar.xz'
- name: libunwind
- file_gpg_id: 1
- - URL: 'https://github.com/llvm/llvm-project/releases/download/llvmorg-[% c("llvm_version") %]/compiler-rt-[% c("llvm_version") %].src.tar.xz'
- name: compiler-rt
- file_gpg_id: 1
- - project: llvm-mingw
- name: llvm-mingw
- - filename: mingw-winrt.patch
- - filename: sort.patch
|