Skip to content

Commit

Permalink
updated version to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lee218llnl committed Feb 28, 2020
1 parent 9fc635b commit e74ee70
Show file tree
Hide file tree
Showing 20 changed files with 43 additions and 25 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2020-02-28 Gregory L. Lee <[email protected]>
* : tag version 4.0.2

2018-12-26 Gregory L. Lee <[email protected]>
* STATview.py : Added ability to generate folded trace file for flamegraph

Expand Down
3 changes: 1 addition & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
#AC_INIT(STAT, 3.0.1, [email protected], The Stack Trace Analysis Tool, http://www.paradyn.org/STAT/STAT.html)
AC_COPYRIGHT([Copyright (c) 2007-2018, Lawrence Livermore National Security, LLC.])
AC_INIT([STAT], [4.0.1])
AC_INIT([STAT], [4.0.2])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_HEADER([config.h])
Expand Down
Binary file modified doc/quickstart/stat_quickstart.pdf
Binary file not shown.
16 changes: 16 additions & 0 deletions doc/src/stat_changelog.sgml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
<section>
<title>stat version 4.0.2</title>
<para>
<itemizedlist>
<listitem><para>
DynInst 10.X support
</para></listitem>
<listitem><para>
Core file merging enhancements
</para></listitem>
<listitem><para>
as always, numerous other bug fixes and minor enhancements (refer to ChangeLog file in top-level directory)
</para></listitem>
</itemizedlist>
</para>
</section>
<section>
<title>stat version 4.0.1</title>
<para>
Expand Down
Binary file modified doc/userguide/stat_userguide.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/DysectView.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import STATview
Expand Down
2 changes: 1 addition & 1 deletion scripts/STATGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import STAThelper
Expand Down
2 changes: 1 addition & 1 deletion scripts/STAThelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import sys
Expand Down
4 changes: 2 additions & 2 deletions scripts/STATmain.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" % (__version_major__, __version_minor__, __version_revision__)

import sys
Expand Down Expand Up @@ -67,7 +67,7 @@ def STATmain_main(in_arg_list, command=None):
args = None
arg_parser = argparse.ArgumentParser(prog='STAT')
subparsers = arg_parser.add_subparsers()


if sys.argv[1] in ['gui', 'view'] and import_exception is not None:
raise import_exception
Expand Down
2 changes: 1 addition & 1 deletion scripts/STATmerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import _STATmerge
Expand Down
2 changes: 1 addition & 1 deletion scripts/STATview.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import string
Expand Down
2 changes: 1 addition & 1 deletion scripts/attach_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import subprocess
Expand Down
2 changes: 1 addition & 1 deletion scripts/bg_core_backtrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import sys
Expand Down
2 changes: 1 addition & 1 deletion scripts/core_file_merger.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
__author__ = ["Dane Gardner", "Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion scripts/cuda_gdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import sys
Expand Down
2 changes: 1 addition & 1 deletion scripts/gdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import subprocess
Expand Down
2 changes: 1 addition & 1 deletion scripts/stat_cuda_gdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__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"]
__version_major__ = 4
__version_minor__ = 0
__version_revision__ = 1
__version_revision__ = 2
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)

import sys
Expand Down
2 changes: 1 addition & 1 deletion scripts/stat_merge_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY, LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""
__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"]
__version__ = "3.0.1"
__version__ = "4.0.2"

import sys
import os
Expand Down
16 changes: 8 additions & 8 deletions scripts/travis-dep-builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,10 @@ for pkg in $downloads; do
cmake_opts="${extra_cmake_opts[$name]}"
configure_opts="${extra_configure_opts[$name]}"
cache_name="$name:$sha1:$make_opts:$configure_opts:$cmake_opts"
# if check_cache "$name"; then
# say "Using cached version of ${name}"
# continue
# fi
if check_cache "$name"; then
say "Using cached version of ${name}"
continue
fi
export CC=gcc
export CXX=g++
gcc --version
Expand Down Expand Up @@ -288,10 +288,10 @@ for url in $checkouts; do
cmake_opts="${extra_cmake_opts[$name]}"
configure_opts="${extra_configure_opts[$name]}"
cache_name="$name:$sha1:$make_opts:$configure_opts:$cmake_opts"
# if check_cache "$cache_name"; then
# say "Using cached version of ${name}"
# continue
# fi
if check_cache "$cache_name"; then
say "Using cached version of ${name}"
continue
fi
git clone ${url} ${name} || die "Failed to clone ${url}"
(
cd ${name} || die "cd failed"
Expand Down
2 changes: 1 addition & 1 deletion src/STAT.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
#define STAT_UNKNOWN -1
#define STAT_MAJOR_VERSION 4
#define STAT_MINOR_VERSION 0
#define STAT_REVISION_VERSION 1
#define STAT_REVISION_VERSION 2

#include "STAT_IncMRNet.h"

Expand Down

0 comments on commit e74ee70

Please sign in to comment.