Compare commits

..

No commits in common. "86ba43a25b9162198d9f3f95c690f3b99b07b4a0" and "504d270947a333177d8fa2bad68df35a4736855a" have entirely different histories.

2 changed files with 0 additions and 3 deletions

1
.gitignore vendored
View file

@ -10,4 +10,3 @@
!init.sh
/fceux-am
/nvboard
/am-kernels

View file

@ -40,9 +40,7 @@ SRCS-y += $(shell find -L $(DIRS-y) -name "*.c")
SRCS = $(filter-out $(SRCS-BLACKLIST-y),$(SRCS-y))
# Extract compiler and options from menuconfig
ifneq ($(CONFIG_CC),)
CC = $(call remove_quote,$(CONFIG_CC))
endif
CFLAGS_BUILD += $(call remove_quote,$(CONFIG_CC_OPT))
CFLAGS_BUILD += $(if $(CONFIG_CC_LTO),-flto,)
CFLAGS_BUILD += $(if $(CONFIG_CC_DEBUG),-Og -ggdb3,)