File tree Expand file tree Collapse file tree 3 files changed +4
-15
lines changed Expand file tree Collapse file tree 3 files changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ STAT is released under the Berkeley Software Distribution (BSD) license. Please
1313
1414### BUILDING STAT
1515STAT has several dependent libraries that must be installed:
16- <<<<<<< HEAD
1716* [ MRNet] ( https://github.com/dyninst/mrnet )
1817* [ LaunchMON] ( https://github.com/LLNL/LaunchMON )
1918* [ GraphLib] ( https://github.com/LLNL/graphlib )
@@ -28,17 +27,6 @@ git clone https://github.com/spack/spack.git
2827cd spack
2928./bin spack install stat
3029```
31- =======
32- * MRNet
33- * [ LaunchMON] ( https://github.com/LLNL/LaunchMON )
34- * [ GraphLib] ( https://github.com/LLNL/graphlib )
35- * Stackwalker
36- * libdwarf
37-
38- In addition, the STAT GUI requires Python with PyGTK, both of which are commonly preinstalled with many Linux operating systems.
39-
40- Please refer to [ INSTALL] ( /INSTALL ) for instructions on building STAT.
41- >>>>>>> 7ff8f39... Minor readme updates
4230
4331### SUPPORTED PLATFORMS
4432STAT is able to run on any machine where all of the dependent libraries run. This currently includes:
Original file line number Diff line number Diff line change @@ -51,11 +51,11 @@ def new_gdb_instance(pid, gdb_type='gdb'):
5151
5252 try :
5353 if 'cuda-gdb' in os .environ ['STAT_GDB' ]:
54- gdb = CudaGdbDriver (pid , 'debug ' , 'log.txt ' )
54+ gdb = CudaGdbDriver (pid , 'error ' , 'stderr ' )
5555 else :
56- gdb = GdbDriver (pid , 'debug ' , 'log.txt ' )
56+ gdb = GdbDriver (pid , 'error ' , 'stderr ' )
5757 except :
58- gdb = GdbDriver (pid , 'debug ' , 'log.txt ' )
58+ gdb = GdbDriver (pid , 'error ' , 'stderr ' )
5959 if gdb .launch () is False :
6060 return - 1
6161 gdb_instances [pid ] = gdb
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ AM_CXXFLAGS += -DOMP_STACKWALKER
1616endif
1717if ENABLE_GDB
1818AM_CXXFLAGS += -DSTAT_GDB_BE
19+ SWIGFLAGS += -DSTAT_GDB_BE
1920endif
2021AM_LDFLAGS = $(CODE_COVERAGE_LIBS )
2122
You can’t perform that action at this time.
0 commit comments