diff options
author | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-10-27 08:42:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-27 08:42:57 -0700 |
commit | db2f3e91c59b6e7ae0e4cf60281534a2aade2eeb (patch) | |
tree | bfb48568e891930ec454e1f053274ce16ece6427 | |
parent | 75712607670d468c015233502ea5da753c52810b (diff) |
Remove -g from CFLAGS
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,8 +3,8 @@ SHELL := /bin/bash -o pipefail AS := $(DEVKITARM)/bin/arm-none-eabi-as ASFLAGS := -mcpu=arm7tdmi -CC1 := tools/agbcc/bin/agbcc -CFLAGS := -mthumb-interwork -Wimplicit -O2 -g -fhex-asm +CC1 := tools/agbcc/bin/agbcc +override CFLAGS += -mthumb-interwork -Wimplicit -O2 -fhex-asm CPP := $(DEVKITARM)/bin/arm-none-eabi-cpp CPPFLAGS := -I tools/agbcc/include -iquote include -nostdinc -undef |