blob: 2eec261e3171913b46e161acfa879b6f418ba91f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
image: openbsd/latest
sources:
- https://git.sr.ht/~mcf/cc
- git://c9x.me/qbe.git
packages:
- gmake
environment:
PATH: $HOME/qbe/obj:$PATH
tasks:
- setup: |
# avoid __asm__ on non __GNUC__ compilers
doas patch -d /usr/include/amd64 < cc/.builds/openbsd.diff
- build: |
gmake -C qbe
cd cc
./configure
make all check bootstrap
|