opendbc needs cereal

This commit is contained in:
George Hotz 2019-12-01 16:05:17 -08:00
parent b559f63d6e
commit ffd9dca7de
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
Import('env') Import('env', 'cereal')
import os import os
from opendbc.can.process_dbc import process from opendbc.can.process_dbc import process
@ -23,6 +23,6 @@ env.Command(['packer_impl.so'],
# parser # parser
env.Command(['parser_pyx.so'], env.Command(['parser_pyx.so'],
[libdbc, 'parser_pyx_setup.py', 'parser_pyx.pyx', 'common.pxd'], [libdbc, cereal, 'parser_pyx_setup.py', 'parser_pyx.pyx', 'common.pxd'],
"cd opendbc/can && python3 parser_pyx_setup.py build_ext --inplace") "cd opendbc/can && python3 parser_pyx_setup.py build_ext --inplace")