Skip to content

Commit

Permalink
fix: use only gcc and clang on linux, disable tcc due to missing head…
Browse files Browse the repository at this point in the history
…er files (#78)
  • Loading branch information
ttytm committed May 25, 2024
1 parent 5929788 commit 5f61e13
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ jobs:
needs: setup
strategy:
matrix:
compiler: [tcc, gcc, clang]
compiler: [gcc, clang] # [tcc, gcc, clang]
optimization: ['', -cstrict, -prod]
exclude:
- compiler: tcc
optimization: -prod
# exclude:
# - compiler: tcc
# optimization: -prod
fail-fast: false
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ v run %USERPROFILE%/.vmodules/vwebui/setup.vsh
```

> [!TIP]
> On Windows it is recommended to use GCC or Clang to compile a WebUI V program. TCC is currently not working due to missing header files.
> You can use the `-cc` flag to specify a custom compiler. E.g.:
> It is recommended to use GCC or Clang to compile a WebUI V program.
> TCC is currently not working due to missing header files. E.g.:
>
> ```
> v -cc gcc run .
Expand Down

0 comments on commit 5f61e13

Please sign in to comment.