[buildcore] Windows fixes

This commit is contained in:
2023-11-11 22:35:34 -06:00
parent 3fbb2a0086
commit 81d092e967
3 changed files with 7 additions and 4 deletions

View File

@ -14,6 +14,7 @@
import os
import platform
import shutil
import socket
import subprocess
import sys
from typing import List, Optional
@ -115,7 +116,7 @@ def hostname() -> int:
def host_env() -> int:
os_name = os.uname().sysname.lower()
os_name = socket.gethostname().lower()
arch = platform.machine()
if arch == 'amd64':
arch = 'x86_64'