makefiles: -Os

This commit is contained in:
bol-van
2024-11-10 14:20:14 +03:00
parent 591b246ed6
commit c16b125a55
6 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
CC ?= cc
CFLAGS += -std=gnu99 -s -O3
CFLAGS += -std=gnu99 -s -Os
LIBS = -lz -lpthread
SRC_FILES = *.c

View File

@@ -1,5 +1,5 @@
CC ?= gcc
CFLAGS += -std=gnu99 -O3
CFLAGS += -std=gnu99 -Os
CFLAGS_BSD = -Wno-address-of-packed-member
LIBS = -lz -lpthread
SRC_FILES = *.c