polyadvent

A game engine from scratch in C
git clone git://jb55.com/polyadvent
Log | Files | Refs | README

commit c8fce35a959437b09ee6c73b0fc8138705515c90
parent ab6fcbf4140fc2d2b64b40db45abce7995431013
Author: William Casarin <jb55@jb55.com>
Date:   Fri,  2 Aug 2019 21:24:04 -0700

build: Ofast

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -7,7 +7,7 @@ DEFS= -DGLFW_INCLUDE_NONE # CFLAGS = $(DEFS) -ggdb -O0 -I src -Wall -Wextra -std=c99 \ -CFLAGS = $(DEFS) -O2 -I src -Wall -Werror -Wextra -std=c99 \ +CFLAGS = $(DEFS) -Ofast -I src -Wall -Werror -Wextra -std=c99 \ -Wno-unused-function \ -Wno-unused-parameter \ -Wno-unused-variable \