Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.

Commit 41e8083

Browse files
Comma Devicegeohot
Comma Device
authored andcommitted
don't make
1 parent 3254d1f commit 41e8083

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

can/libdbc_py.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
can_dir = os.path.dirname(os.path.abspath(__file__))
77
libdbc_fn = os.path.join(can_dir, "libdbc.so")
8-
subprocess.check_call(["make", "-j3"], cwd=can_dir) # don't use all the cores to avoid overheating
98

109
ffi = FFI()
1110
ffi.cdef("""

can/parser.py

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
import os
22
import subprocess
33

4-
can_dir = os.path.dirname(os.path.abspath(__file__))
5-
libdbc_fn = os.path.join(can_dir, "libdbc.so")
6-
subprocess.check_call(["make", "-j3"], cwd=can_dir) # don't use all the cores to avoid overheating
7-
84
from opendbc.can.parser_pyx import CANParser # pylint: disable=no-name-in-module, import-error
95
assert CANParser

0 commit comments

Comments
 (0)