From d3e09695f1dd4cb6f85236b22d3ab31274b2c741 Mon Sep 17 00:00:00 2001 From: olliepop777 Date: Thu, 1 Aug 2024 22:45:30 -0700 Subject: [PATCH] Add flag to build x86_64 version on Windows for ARM --- build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 8ef1954..22342c0 100644 --- a/build.py +++ b/build.py @@ -8,7 +8,7 @@ # Basic Usage: python3 build.py # Help: python3 build.py --help -BIFROST_JSON_VERSION = "1.0.1" +BIFROST_JSON_VERSION = "1.0.2" PLATFORM_INFO = { "Windows": { @@ -189,6 +189,7 @@ def set_windows_compiler(): ) ) build_args += ["-T v142"] + build_args += ["-A x64"] return build_args def get_macOS_architecture(is_release, bif_install_version, maya_install_version):