Updated FIRM code in ctrtool according to 3dbrew/boot9. Removed -flto flag since this can cause problems.

This commit is contained in:
profi200
2017-01-07 21:31:05 +01:00
parent 7b384c6213
commit dc81220cf6
3 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ OBJS = $(foreach dir,$(SRC_DIR),$(subst .c,.o,$(wildcard $(dir)/*.c))) $(foreach
# Compiler Settings
OUTPUT = ctrtool
CXXFLAGS = -I.
CFLAGS = -O2 -flto -Wall -Wno-unused-variable -Wno-unused-result -I. -std=c99
CFLAGS = -O2 -Wall -Wno-unused-variable -Wno-unused-result -I. -std=c99
CC = gcc
CXX = g++
ifeq ($(OS),Windows_NT)