Update tools.

This commit is contained in:
Steven Smith 2016-05-28 18:29:47 -07:00
parent 3908147305
commit d84c344339
16 changed files with 5 additions and 10 deletions

BIN
3ds/bannertool-linux32 Executable file

Binary file not shown.

BIN
3ds/bannertool64.exe Executable file

Binary file not shown.

Binary file not shown.

BIN
3ds/citra/citra-linux64 Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
3ds/citra/citra64.exe Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
3ds/makerom-linux32 Executable file

Binary file not shown.

BIN
3ds/makerom64.exe Executable file

Binary file not shown.

View file

@ -198,22 +198,17 @@ else
endif
else
ifeq ($(TARGET),$(filter $(TARGET),WIN32 WIN64))
UNAME_P := $(shell uname -p)
ifeq ($(UNAME_P),x86_64)
AR := x86_64-w64-mingw32-ar
AS := x86_64-w64-mingw32-as
CC := x86_64-w64-mingw32-gcc
CXX := x86_64-w64-mingw32-g++
else
ifeq ($(TARGET),WIN32)
AR := i686-w64-mingw32-ar
AS := i686-w64-mingw32-as
CC := i686-w64-mingw32-gcc
CXX := i686-w64-mingw32-g++
endif
ifeq ($(TARGET),WIN32)
COMMON_CC_FLAGS += -m32
else ifeq ($(TARGET),WIN64)
AR := x86_64-w64-mingw32-ar
AS := x86_64-w64-mingw32-as
CC := x86_64-w64-mingw32-gcc
CXX := x86_64-w64-mingw32-g++
COMMON_CC_FLAGS += -m64
endif