Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 5e2e5d4

Browse files
committed
build: Add dummy rules for win-x86_64 builds
We need to be able to run the build system against branches that don't support 64-bit Windows. This patch works around the lack of support for running builds conditionally by branch by adding dummy build rules for win-x86_64.
1 parent f9aba90 commit 5e2e5d4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,16 @@ all-win-%:
180180

181181
$(addsuffix -win,all config compile): %: %-x86
182182

183+
# Dummy rules for Windows x86-64 builds
184+
# TODO Replace with real rules
185+
config-win-x86_64:
186+
mkdir -p build-win-x86_64
187+
compile-win-x86_64:
188+
mkdir -p win-x86_64-bin
189+
all-win-x86_64:
190+
$(MAKE) config-win-x86_64
191+
$(MAKE) compile-win-x86_64
192+
183193
################################################################
184194
# Emscripten rules
185195
################################################################

0 commit comments

Comments
 (0)