mirror of https://github.com/stella-emu/stella.git
Greatly reduced warnings from libretro Makefile in Linux.
This commit is contained in:
parent
2cf88abb99
commit
681c8156bd
|
@ -435,7 +435,7 @@ namespace StellaModTest
|
|||
{
|
||||
return (mod & KBDM_SHIFT);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
namespace StellaKeyName
|
||||
{
|
||||
|
@ -447,6 +447,6 @@ namespace StellaKeyName
|
|||
return "";
|
||||
#endif
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* StellaKeys */
|
||||
|
|
|
@ -10,6 +10,9 @@ BACKSLASH := \$(BACKSLASH)
|
|||
filter_out1 = $(filter-out $(firstword $1),$1)
|
||||
filter_out2 = $(call filter_out1,$(call filter_out1,$1))
|
||||
|
||||
CXXFLAGS+= -Wall -Wextra -Wno-unused-parameter -Wno-ignored-qualifiers
|
||||
CXXFLAGS+= -Wno-multichar -Wunused -fno-rtti -Woverloaded-virtual -Wnon-virtual-dtor -std=c++14
|
||||
|
||||
ifeq ($(platform),)
|
||||
platform = unix
|
||||
ifeq ($(shell uname -s),)
|
||||
|
|
Loading…
Reference in New Issue