Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. #!/bin/sh
  2. sudo apt-get update
  3. sudo apt-get install build-essential linux-headers-$(uname -r) wget tar git libyaml-cpp-dev libboost-dev
  4. cd
  5. wget http://www.accellera.org/images/downloads/standards/systemc/systemc-2.3.1.tgz
  6. tar -xzf systemc-2.3.1.tgz
  7. cd systemc-2.3.1
  8. mkdir objdir
  9. cd objdir
  10. sudo mkdir /usr/local/systemc-2.3.1
  11. ../configure --prefix=/usr/local/systemc-2.3.1
  12.  
  13. make
  14. sudo make install
  15.  
  16. echo /usr/local/systemc-2.3.1/lib-linux64 > systemc.conf
  17. sudo mv systemc.conf /etc/ld.so.conf.d/
  18. sudo ldconfig
  19.  
  20. cd
  21.  
  22. git clone https://github.com/davidepatti/noxim
  23.  
  24. cd noxim/bin
  25.  
  26. make
  27.  
  28. cp ../config_examples/config.yaml .
  29.  
  30. ./noxim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement