makefile: Fix MinGW build when using windows-build libpthreadsGC2
This commit is contained in:
parent
b45b9426c6
commit
107f620f4c
1 changed files with 2 additions and 2 deletions
4
makefile
4
makefile
|
@ -883,11 +883,11 @@ else
|
|||
$(info .)
|
||||
else
|
||||
# Version check on windows-build
|
||||
WINDOWS_BUILD = $(shell findstr WINDOWS-BUILD ..\windows-build\Windows-Build_Versions.txt)
|
||||
WINDOWS_BUILD = $(word 2,$(shell findstr WINDOWS-BUILD ..\windows-build\Windows-Build_Versions.txt))
|
||||
ifeq (,$(WINDOWS_BUILD))
|
||||
WINDOWS_BUILD = 00000000
|
||||
endif
|
||||
ifneq (,$(shell if 20150412 GTR $(WINDOWS_BUILD) echo old-windows-build))
|
||||
ifneq (,$(or $(shell if 20150412 GTR $(WINDOWS_BUILD) echo old-windows-build),$(and $(shell if 20171112 GTR $(WINDOWS_BUILD) echo old-windows-build),$(findstring pthreadGC2,$(PTHREADS_LDFLAGS)))))
|
||||
$(info .)
|
||||
$(info windows-build components at: $(abspath ..\windows-build))
|
||||
$(info .)
|
||||
|
|
Loading…
Add table
Reference in a new issue