Initial commit

Signed-off-by: sisungo <[email protected]>
This commit is contained in:
sisungo
2026-06-08 16:43:26 +08:00
commit 3d480b48f3
13 changed files with 446 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import os
from . import packie
all: dict[str, dict[str, str]] = {
"aarch64-semios-linux": {},
}
_target: str = packie.host_arch()
def get_target():
return _target
def set_target(arch: str):
global _target
_target = arch
for key, val in all[_target]:
os.environ[key] = val