Differences From Artifact [6cd6104734]:
- File Makefile — part of check-in [38646cdd7a] at 2024-12-04 09:30:32 on branch trunk — _XOPEN_SOURCE removed (user: nnz, size: 893) [annotate] [blame] [check-ins using]
To Artifact [1941c5f730]:
- File Makefile — part of check-in [dcd83ba657] at 2024-12-04 09:41:25 on branch trunk — added clang (user: nnz, size: 1078) [annotate] [blame] [check-ins using]
| 1 2 3 4 5 6 7 8 | - + |
|
︙ | |||
39 40 41 42 43 44 45 | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | + + + + + + + + + | aoc: *.c *.h gcc -std=c99 -pedantic -pedantic-errors \ -flto -fno-omit-frame-pointer -ffloat-store -fno-common -fstrict-aliasing \ -O3 -DNDEBUG \ *.c \ -o aoc aocclang: *.c *.h clang -std=c99 -pedantic \ -Weverything \ -Wno-declaration-after-statement \ -Wno-implicit-int-conversion \ -Wno-shorten-64-to-32 \ *.c \ -o aocclang |