mirror of
https://github.com/tailix/libkernaux.git
synced 2025-03-31 17:25:22 -04:00
Main: build with Tiny C Compiler
This commit is contained in:
parent
ad8219addc
commit
28e0cf6a54
3 changed files with 10 additions and 3 deletions
9
.github/workflows/main.yml
vendored
9
.github/workflows/main.yml
vendored
|
@ -12,8 +12,11 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
# TODO: something is wrong with TCC, Multiboot 2 info tag struct size
|
||||
#cc: ['gcc', 'clang', 'tcc']
|
||||
cc: ['gcc', 'clang']
|
||||
cc:
|
||||
- exe: 'gcc'
|
||||
- exe: 'clang'
|
||||
- exe: 'tcc'
|
||||
flags: '--without-multiboot2'
|
||||
opt: ['', '-O0', '-O3']
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -22,7 +25,7 @@ jobs:
|
|||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure --enable-tests --enable-tests-python CC='${{matrix.cc}}' CFLAGS='${{matrix.opt}}'
|
||||
run: ./configure --enable-tests --enable-tests-python ${{matrix.cc.flags}} CC='${{matrix.cc.exe}}' CFLAGS='${{matrix.opt}}'
|
||||
- name: make
|
||||
run: make
|
||||
- name: check
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#ifndef __USE_POSIX2
|
||||
#define __USE_POSIX2
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
|
||||
static const char output1[] =
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#ifndef __USE_POSIX2
|
||||
#define __USE_POSIX2
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
|
||||
static const char output1[] =
|
||||
|
|
Loading…
Add table
Reference in a new issue