Overview
Comment: | added tcc |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
999b1250b685f0e062bb30b2bf31f377 |
User & Date: | nnz on 2024-12-04 09:46:30 |
Other Links: | manifest | tags |
Context
2024-12-04
| ||
10:01 | first check check-in: 6802a94662 user: nnz tags: trunk | |
09:46 | added tcc check-in: 999b1250b6 user: nnz tags: trunk | |
09:41 | added clang check-in: dcd83ba657 user: nnz tags: trunk | |
Changes
Modified Makefile from [1941c5f730] to [e5558dd887].
|
| | | | 1 2 3 4 5 6 7 8 9 10 11 | all: aocdbg aoc aocclang aoctcc clean: rm aocdbg aoc aocclang aoctcc aocdbg: *.c *.h gcc -std=c99 -pedantic -pedantic-errors \ -Werror -Wall -Wextra \ -Wc99-c11-compat \ -Wc11-c2x-compat \ -Wbad-function-cast \ |
︙ | ︙ | |||
48 49 50 51 52 53 54 | clang -std=c99 -pedantic \ -Weverything \ -Wno-declaration-after-statement \ -Wno-implicit-int-conversion \ -Wno-shorten-64-to-32 \ *.c \ -o aocclang | > > > > > > | 48 49 50 51 52 53 54 55 56 57 58 59 60 | clang -std=c99 -pedantic \ -Weverything \ -Wno-declaration-after-statement \ -Wno-implicit-int-conversion \ -Wno-shorten-64-to-32 \ *.c \ -o aocclang aoctcc: *.c *.h tcc -std=c99 -pedantic \ -Wall \ *.c \ -o aoctcc |