Skip to content

Commit 0f99736

Browse files
committed
Disable debug info by default in Makefile
1 parent 1935703 commit 0f99736

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ GPP = nspire-g++
33
LD = nspire-ld
44
GENZEHN = genzehn
55
OPTIMIZE ?= fast
6-
GCCFLAGS = -g -O$(OPTIMIZE) -I nGL -I . -Wall -W -marm -ffast-math -mcpu=arm926ej-s -fno-math-errno -fomit-frame-pointer -flto -fno-rtti -fgcse-sm -fgcse-las -funsafe-loop-optimizations -fno-fat-lto-objects -frename-registers -fprefetch-loop-arrays -Wold-style-cast -mno-thumb-interwork -ffunction-sections -fdata-sections
7-
LDFLAGS = -g -lm -Wl,--gc-sections
6+
GCCFLAGS = -O$(OPTIMIZE) -I nGL -I . -Wall -W -marm -ffast-math -mcpu=arm926ej-s -fno-math-errno -fomit-frame-pointer -flto -fno-rtti -fgcse-sm -fgcse-las -funsafe-loop-optimizations -fno-fat-lto-objects -frename-registers -fprefetch-loop-arrays -Wold-style-cast -mno-thumb-interwork -ffunction-sections -fdata-sections
7+
LDFLAGS = -lm -Wl,--gc-sections
88
ZEHNFLAGS = --name "Crafti" --version 12 --author "Fabian Vogt" --notice "3D Minecraft" --compress
99
EXE = crafti
1010
OBJS = $(patsubst %.c, %.o, $(shell find . -name \*.c))

0 commit comments

Comments
 (0)