32-bit mingw doesn't use prefix for dlltool
parent
2a8bbc82dc
commit
70f13e02fc
6
Makefile
6
Makefile
|
@ -4,7 +4,11 @@ MINGW32 ?= i686-w64-mingw32
|
|||
_CXX ?= g++
|
||||
|
||||
CXX=$(MINGW32)-$(_CXX)
|
||||
DLLTOOL=$(MINGW32)-dlltool
|
||||
ifeq ($(MINGW32), "mingw32")
|
||||
DLLTOOL=dlltool
|
||||
else
|
||||
DLLTOOL=$(MINGW32)-dlltool
|
||||
endif
|
||||
|
||||
# Clang doesn't understand permissive compilation, we need to "fix" invalid
|
||||
# casts from a pointer type there using
|
||||
|
|
Loading…
Reference in New Issue