Skip to content

Commit

Permalink
Merge branch 'TinyCC:mob' into mob
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner authored Jan 12, 2024
2 parents 2d3ad9e + 6120656 commit 4f503d2
Show file tree
Hide file tree
Showing 122 changed files with 13,019 additions and 3,878 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build and run tests

on:
push:
branches: [ mob ]

jobs:
test-x86_64-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: make & test tcc
run: ./configure && make && make test -k

test-x86_64-osx:
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- name: make & test tcc
run: ./configure && make && make test -k

test-x86_64-win32:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: make & test tcc
shell: cmd
run: |
set MSYS2_PATH_TYPE=inherit
set MSYSTEM=MINGW64
set CHERE_INVOKING=yes
C:\msys64\usr\bin\bash -l -c "./configure && make && make test -k"
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
a.out
tcc_g
tcc
tcc_c
tcc_p
*-tcc
libtcc*.def

Expand All @@ -24,10 +26,12 @@ config*.h
config*.mak
config.texi
conftest*
c2str
tags
TAGS
tcc.1
tcc.pod
*.pod
*.tcov
tcc-doc.html
tcc-doc.info

Expand Down
24 changes: 24 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
version 0.9.28:

User interface:
- -b : bounds checker much improved (herman ten brugge)
- -bt : support for standalone backtraces also (grischka)
- -gdwarf : debug format (herman ten brugge)
- -M, -MM, and -MMD (Arthur Williams)
- -W[no-]error=<option> (Steffen Nurpmeso)

Platforms:
- new RISC-V (riscv64) target (Michael Matz)
- native macOS support for x86_64 (Michael Matz, Herman ten Brugge)
- arm and riscv64 assemblers (Danny Milosavljevic)
- Android support with position independent executables (grischka)

Features:
- _Static_assert() (matthias)
- __attribute__ ((cleanup(func))) (matthias)
- stdatomic (Dmitry Selyutin)
- asm goto ("jmp %l[label]" : : : : label) (Michael Matz)

Fixes:
- ... many, see git shortlog release_0_9_27...release_0_9_27

Version 0.9.27:

User interface:
Expand Down
Loading

0 comments on commit 4f503d2

Please sign in to comment.