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
View File
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
+5 -10
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