unify cross windows builds with separate wine dirs per host arch (and thus wine version)

This commit is contained in:
2022-06-15 12:00:38 +02:00
parent 2d597a68b9
commit 3ac3906fea
6 changed files with 12 additions and 16 deletions

View File

@ -0,0 +1,4 @@
include $(CONFIG)/os/CONFIG.win32-x86.win32-x86
PATH := /opt/wine-msvc-2017/bin/x86:$(PATH)
export WINEPREFIX = $(HOME)/.wine-$(EPICS_HOST_ARCH)

View File

@ -0,0 +1,4 @@
include $(CONFIG)/os/CONFIG.windows-x64.windows-x64
PATH := /opt/wine-msvc-2017/bin/x64:$(PATH)
export WINEPREFIX = $(HOME)/.wine-$(EPICS_HOST_ARCH)

View File

@ -1,3 +1 @@
include $(CONFIG)/os/CONFIG.win32-x86.win32-x86
PATH := /opt/wine-msvc-2017/bin/x86:$(PATH)
include $(CONFIG)/os/CONFIG.Linux.win32-x86

View File

@ -1,3 +1 @@
include $(CONFIG)/os/CONFIG.windows-x64.windows-x64
PATH := /opt/wine-msvc-2017/bin/x64:$(PATH)
include $(CONFIG)/os/CONFIG.Linux.windows-x64

View File

@ -1,5 +1 @@
include $(CONFIG)/os/CONFIG.win32-x86.win32-x86
PATH_FILTER = $(subst /,/,$(1))
PATH := /opt/wine-msvc-2017/bin/x86:$(PATH)
include $(CONFIG)/os/CONFIG.Linux.win32-x86

View File

@ -1,5 +1 @@
include $(CONFIG)/os/CONFIG.windows-x64.windows-x64
PATH_FILTER = $(subst /,/,$(1))
PATH := /opt/wine-msvc-2017/bin/x64:$(PATH)
include $(CONFIG)/os/CONFIG.Linux.windows-x64