()
| 31 | |
| 32 | |
| 33 | def compile_cachesim(): |
| 34 | p = subprocess.run( |
| 35 | "cd {}/../scripts/ && bash install_libcachesim.sh".format(BASEPATH), |
| 36 | shell=True, |
| 37 | stdout=subprocess.DEVNULL, |
| 38 | stderr=subprocess.PIPE, |
| 39 | ) |
| 40 | |
| 41 | if p.stderr.decode() != "": |
| 42 | print(p.stderr.decode()) |
| 43 | |
| 44 | |
| 45 | def setup(): |