Bug 1244: changes to pospopcnt
[libreriscv.git] / HDL_workflow / cocotb.mdwn
1 # Installation instructions for cocotb
2
3 ## Setting up new debootstrap and chroot into it
4
5 Run the following if you wish to isolate the cocotb build
6 from other software (reproducible builds) or use the schroot
7 auto-preparation script here:
8 <https://git.libre-soc.org/?p=dev-env-setup.git;a=blob;f=mk-deb-chroot;hb=HEAD>
9
10 export MY_CHROOT=/opt/chroot/cocotb
11 mkdir $MY_CHROOT
12 debootstrap stable $MY_CHROOT http://deb.debian.org/debian/
13 mount -t proc proc $MY_CHROOT/proc
14 mount -t sysfs sysfs $MY_CHROOT/sys
15 mount -t devpts devpts $MY_CHROOT/dev/pts/
16 chroot $MY_CHROOT /bin/bash
17
18 The dev-env-setup chroot script is a little more sophisticated
19 than the above
20
21 ## Steps to compile cocotb
22
23 ### Necessary software to install
24
25 apt-get install git python3 python3-dev g++ make \
26 python3-setuptools python3-pytest
27
28 ### Build cocotb
29
30 git clone https://github.com/cocotb/cocotb.git
31
32 cd cocotb
33 git checkout v1.5.2
34 python3 setup.py install
35
36 Please adjust the install paths for cocotb.
37