From 54b1e71dda120cd40bb97bfba70f691176d60c9a Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2023 14:35:53 +0100 Subject: [PATCH] Make update: Allow amd64 architecture Apparently, the 65bit Intel architecture is presented differently on Linux and Windows. Allow both variants for the command line, so that semantically the command line argument can be seen as a lower case platform.machine. --- build_files/utils/make_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_files/utils/make_update.py b/build_files/utils/make_update.py index c5e3a5fafe6..aa321462cf7 100755 --- a/build_files/utils/make_update.py +++ b/build_files/utils/make_update.py @@ -42,7 +42,7 @@ def parse_arguments() -> argparse.Namespace: parser.add_argument("--svn-branch", default=None) parser.add_argument("--git-command", default="git") parser.add_argument("--use-linux-libraries", action="store_true") - parser.add_argument("--architecture", type=str, choices=("x86_64", "arm64",)) + parser.add_argument("--architecture", type=str, choices=("x86_64", "amd64", "arm64",)) return parser.parse_args()