Skip to content

Commit b559f63

Browse files
committed
remove more make
1 parent d092949 commit b559f63

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

can/packer.py

-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,5 @@
22
import os
33
import subprocess
44

5-
can_dir = os.path.dirname(os.path.abspath(__file__))
6-
subprocess.check_call(["make", "-j3", "packer_impl.so"], cwd=can_dir) # don't use all the cores to avoid overheating
7-
85
from opendbc.can.packer_impl import CANPacker
96
assert CANPacker

can/packer_impl.pyx

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ cdef class CANPacker():
7171
can_dir = os.path.dirname(os.path.abspath(__file__))
7272
libdbc_fn = os.path.join(can_dir, "libdbc.so")
7373
libdbc_fn = str(libdbc_fn).encode('utf8')
74-
subprocess.check_call(["make"], cwd=can_dir)
7574

7675
cdef void *libdbc = dlopen(libdbc_fn, RTLD_LAZY)
7776
self.canpack_init = <canpack_init_func>dlsym(libdbc, 'canpack_init')

0 commit comments

Comments
 (0)