From 49716ba836e3cb77d3ee340e5bb7ee46f263a1f8 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sun, 9 Jun 2024 20:27:36 +0200 Subject: default CFLAGS to -g -O2 --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b09cc5d..91d7f13 100644 --- a/Makefile +++ b/Makefile @@ -36,8 +36,7 @@ COLLECTORS += vmstat # compile settings -CFLAGS = -std=c11 -Wall -Wextra -pedantic -Wno-format-truncation $(if $(DEBUG),-g,-Os) -LDFLAGS = $(if $(DEBUG),-g,-Os -s) +CFLAGS = -std=c11 -Wall -Wextra -pedantic -Wno-format-truncation -g -O2 # build rules -- cgit 1.4.1