Skip to content

Commit 012f2bb

Browse files
committed
bumped version to 4.2.1
1 parent 880e5a1 commit 012f2bb

21 files changed

+39
-16
lines changed

INSTALL

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,3 +150,11 @@ make install
150150
working cuda-gdb executable. Note that STAT currently still
151151
requires Dyninst as a dependence even when using the GDB
152152
backend.
153+
154+
Dyninst 12 removed the local_var.h header file that STAT uses
155+
to gather python traces. If this feature is needed, you will
156+
either need to use Dyninst version 11 or lower, or copy the
157+
local_var.h file from
158+
https://raw.githubusercontent.com/dyninst/dyninst/5c7e0ee327399
159+
cfae50d77f977ff6655c2ca3ae4/stackwalk/h/local_var.h to your
160+
Dyninst 12+ installation's include directory

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
AC_PREREQ(2.59)
55
AC_COPYRIGHT([Copyright (c) 2007-2020, Lawrence Livermore National Security, LLC.])
6-
AC_INIT([STAT], [4.2.0])
6+
AC_INIT([STAT], [4.2.1])
77
AC_CONFIG_AUX_DIR([config])
88
AC_CONFIG_SRCDIR([configure.ac])
99
AC_CONFIG_HEADER([config.h])

doc/quickstart/stat_quickstart.pdf

0 Bytes
Binary file not shown.

doc/src/stat_changelog.sgml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
<section>
2+
<title>stat version 4.2.1</title>
3+
<para>
4+
<itemizedlist>
5+
<listitem><para>
6+
update to support dropping of local_var.h from Dyninst 12
7+
</para></listitem>
8+
</itemizedlist>
9+
</para>
10+
</section>
11+
112
<section>
213
<title>stat version 4.2.0</title>
314
<para>

doc/src/stat_installation.sgml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,7 @@ STAT will also, by default, add rpaths to dependent libraries. This behavior ca
5151
<para>
5252
STAT can also be configured to use GDB as a backend instead of Dyninst. To specify the path to gdb, use the <option>--with-gdb</option> flag. If CUDA kernal traces are desired, the path should point to a working cuda-gdb executable. Note that STAT currently still requires Dyninst as a dependence even when using the GDB backend.
5353
</para>
54+
55+
<para>
56+
Dyninst 12 removed the local_var.h header file that STAT uses to gather python traces. If this feature is needed, you will either need to use Dyninst version 11 or lower, or copy the local_var.h file from <ulink url="https://raw.githubusercontent.com/dyninst/dyninst/5c7e0ee327399cfae50d77f977ff6655c2ca3ae4/stackwalk/h/local_var.h"></ulink> to your Dyninst 12+ installation's include directory
57+
</para>

doc/userguide/stat_userguide.pdf

510 Bytes
Binary file not shown.

scripts/DysectView.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] "Jesper Puge Nielsen"]
2323
__version_major__ = 4
2424
__version_minor__ = 2
25-
__version_revision__ = 0
25+
__version_revision__ = 1
2626
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2727

2828
import STATview

scripts/STATGUI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"]
2323
__version_major__ = 4
2424
__version_minor__ = 2
25-
__version_revision__ = 0
25+
__version_revision__ = 1
2626
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2727

2828
import STAThelper

scripts/STAThelper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"]
2121
__version_major__ = 4
2222
__version_minor__ = 2
23-
__version_revision__ = 0
23+
__version_revision__ = 1
2424
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2525

2626
import sys

scripts/STATmain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"]
2323
__version_major__ = 4
2424
__version_minor__ = 2
25-
__version_revision__ = 0
25+
__version_revision__ = 1
2626
__version__ = "%d.%d.%d" % (__version_major__, __version_minor__, __version_revision__)
2727

2828
import sys

0 commit comments

Comments
 (0)