rcx

library of miscellaneous bits of C code
git clone git://git.rr3.xyz/rcx
Log | Files | Refs | README | LICENSE

commit c88e97c7aac0df9bdb9664c7bb9c1a72cfab277e
parent 1872fdf51e626c60bcc120e1b0979f7fe816d35d
Author: robert <robertrussell.72001@gmail.com>
Date:   Wed, 10 Aug 2022 16:33:33 -0700

Turn on -O2 by default

Diffstat:
Mconfig.mk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.mk b/config.mk @@ -1,3 +1,3 @@ CC = cc -CFLAGS = -std=c11 -Wall -pedantic -Iinc +CFLAGS = -std=c11 -O2 -Wall -pedantic -Iinc AR = ar