Make update: Allow amd64 architecture
Apparently, the 64bit 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. Pull Request #104878
This commit is contained in:
@@ -40,7 +40,7 @@ def parse_arguments():
|
||||
parser.add_argument("--use-centos-libraries", action="store_true")
|
||||
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()
|
||||
|
||||
|
Reference in New Issue
Block a user