SConstruct better tici detection

pull/2225/head
Willem Melching 2020-09-24 19:24:14 +02:00
parent 4fba3408c4
commit af66dae7e2
1 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,8 @@ import subprocess
import sys
import platform
TICI = os.path.isfile('/TICI')
AddOption('--test',
action='store_true',
help='build test files')
@ -21,7 +23,8 @@ Export('cython_dependencies')
real_arch = arch = subprocess.check_output(["uname", "-m"], encoding='utf8').rstrip()
if platform.system() == "Darwin":
arch = "Darwin"
if arch == "aarch64" and not os.path.isdir("/system"):
if arch == "aarch64" and TICI:
arch = "larch64"
webcam = bool(ARGUMENTS.get("use_webcam", 0))