From a242f4c7df32e1e5906f305ccfd8d59e3d5ecbbb Mon Sep 17 00:00:00 2001 From: William Bell Date: Sun, 28 Dec 2025 01:55:19 +0000 Subject: [PATCH] go back to O3 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 55a7538..577489b 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ BUILD := build SRCS := $(wildcard $(SRC_DIR)/*.c) OBJS := $(patsubst $(SRC_DIR)/%.c,$(BUILD)/%.o,$(SRCS)) -CFLAGS := -Wall -Wextra -g +CFLAGS := -Wall -Wextra -O3 CFLAGS += $(shell pkg-config --cflags libavformat libavcodec libavutil libswresample alsa) LDFLAGS := $(shell pkg-config --libs libavformat libavcodec libavutil libswresample alsa)