mamefile.mamemingw. fix for string weirdness and depend can frig off

This commit is contained in:
dinkc64 2024-10-31 01:01:56 -04:00
parent 6855224190
commit 29687578f7

View File

@ -10,11 +10,6 @@ unexport
# Flags. Uncomment any of these declarations to enable their function.
#
# Check for changes in header files, but not if we want to skip the depend step
ifndef SKIPDEPEND
DEPEND = 1
endif
#
# Declare variables
#
@ -185,6 +180,10 @@ CXXFLAGS = -pipe \
-Wno-unused-but-set-variable -Wno-sequence-point -Wno-narrowing -Wno-extra \
$(DEF) $(incdir)
#return back to msvcrt-style swprintf
CFLAGS += -D__USE_MINGW_ANSI_STDIO=0
CXXFLAGS += -D__USE_MINGW_ANSI_STDIO=0
ifdef BUILD_X64_EXE
CFLAGS += -m64
CXXFLAGS += -m64