diff options
author | metamuffin <metamuffin@disroot.org> | 2024-10-09 10:13:59 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-10-09 10:13:59 +0200 |
commit | 7e89b781e7f1e8d7cedc20601642bec525200176 (patch) | |
tree | d5263e7cfe48b47e313ec6e99f1eaf3a10960778 /makefile | |
parent | 1109973fc1aae971439331c76eb46cbaf976690b (diff) | |
download | attocc-7e89b781e7f1e8d7cedc20601642bec525200176.tar attocc-7e89b781e7f1e8d7cedc20601642bec525200176.tar.bz2 attocc-7e89b781e7f1e8d7cedc20601642bec525200176.tar.zst |
fix strncmp
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ attocc: attocc.c cc -DDEBUG -O3 -o $@ $< attocc-debug: attocc.c - cc -DDEBUG -Wall -Wextra -Wpedantic -o $@ $< + cc -DDEBUG -Wall -Wextra -Wpedantic -Og -g -o $@ $< attocc-small: attocc.c cc -DDEBUG -Wl,--gc-sections -flto -ffunction-sections -fdata-sections -fPIC -s -Os -o $@ $< |