Files
panda-meb/tests/libpanda/SConscript
martinl f674084db5 MacOS: use gcc-12 for building tests (#1241)
* MacOS: use gcc-12 for building tests

* Update README.md

---------

Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
2023-03-13 16:21:43 -07:00

14 lines
255 B
Python

env = Environment(
CC='gcc',
CFLAGS=[
'-nostdlib',
'-fno-builtin',
'-std=gnu11',
'-Wfatal-errors',
],
CPPPATH=[".", "../../board/"],
)
env.PrependENVPath('PATH', '/opt/homebrew/bin')
env.SharedLibrary("libpanda.so", ["panda.c",])