Skip to content

Commit dd1a343

Browse files
committed
Merge branch 'develop'
2 parents 3084ef4 + bd6fb44 commit dd1a343

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ STAT is released under the Berkeley Software Distribution (BSD) license. Please
1313

1414
### BUILDING STAT
1515
STAT 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
2827
cd 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
4432
STAT is able to run on any machine where all of the dependent libraries run. This currently includes:

scripts/stat_cuda_gdb.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

src/Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ AM_CXXFLAGS += -DOMP_STACKWALKER
1616
endif
1717
if ENABLE_GDB
1818
AM_CXXFLAGS += -DSTAT_GDB_BE
19+
SWIGFLAGS += -DSTAT_GDB_BE
1920
endif
2021
AM_LDFLAGS = $(CODE_COVERAGE_LIBS)
2122

0 commit comments

Comments
 (0)