Compare commits

..

4 Commits

Author SHA1 Message Date
royjr 85d872d3ed Update opendbc_repo 2026-03-09 01:22:36 -04:00
royjr bcae6d8f94 Merge branch 'master' into g90-2023 2026-03-09 01:11:40 -04:00
royjr 4d78d50793 Update opendbc_repo 2026-03-09 01:11:35 -04:00
Jason Wen 52b1c63085 HKG: Car Port for Genesis G90 2023 2025-05-10 18:49:40 -04:00
2 changed files with 1 additions and 18 deletions
-17
View File
@@ -1,25 +1,8 @@
import os
import subprocess
Import('env', 'arch', 'common', 'messaging', 'visionipc', 'cereal')
replay_env = env.Clone()
replay_env['CCFLAGS'] += ['-Wno-deprecated-declarations']
if arch == "Darwin":
openssl_prefixes = []
for formula in ("openssl@3", "openssl"):
try:
prefix = subprocess.check_output(['brew', '--prefix', formula], encoding='utf8').strip()
if os.path.isdir(prefix):
openssl_prefixes.append(prefix)
except (FileNotFoundError, subprocess.CalledProcessError):
continue
for prefix in openssl_prefixes:
replay_env['CPPPATH'] += [f"{prefix}/include"]
replay_env['LIBPATH'] += [f"{prefix}/lib"]
base_frameworks = []
base_libs = [common, messaging, cereal, visionipc, 'm', 'ssl', 'crypto', 'pthread']