12 lines
338 B
Bash
12 lines
338 B
Bash
|
#!/bin/sh
|
||
|
##
|
||
|
|
||
|
# Install prerequisites
|
||
|
pip install wheel
|
||
|
# clone and install PySysC
|
||
|
git clone https://github.com/Minres/PySysC.git /workspace/PySysC
|
||
|
STDCXX=11 SYSTEMC_HOME=`ls -d $CONAN_USER_HOME/.conan/data/systemc/2.3.3/_/_/package/* | head -1` \
|
||
|
pip install /workspace/PySysC/
|
||
|
# install SCC integration
|
||
|
pip install scc/contrib/pysysc
|