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 endif
else else
ifeq ($(TARGET),$(filter $(TARGET),WIN32 WIN64)) ifeq ($(TARGET),$(filter $(TARGET),WIN32 WIN64))
UNAME_P := $(shell uname -p) ifeq ($(TARGET),WIN32)
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
AR := i686-w64-mingw32-ar AR := i686-w64-mingw32-ar
AS := i686-w64-mingw32-as AS := i686-w64-mingw32-as
CC := i686-w64-mingw32-gcc CC := i686-w64-mingw32-gcc
CXX := i686-w64-mingw32-g++ CXX := i686-w64-mingw32-g++
endif
ifeq ($(TARGET),WIN32)
COMMON_CC_FLAGS += -m32 COMMON_CC_FLAGS += -m32
else ifeq ($(TARGET),WIN64) 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 COMMON_CC_FLAGS += -m64
endif endif