Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add interactive sst-info #1011

Closed
wants to merge 33 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7870ad6
Merge pull request #944 from sstsimulator/devel
gvoskuilen Apr 21, 2023
cfe6093
Merge pull request #947 from sstsimulator/devel
sst-autotester Apr 25, 2023
8e39798
Merge pull request #951 from sstsimulator/devel
sst-autotester May 7, 2023
d31c2e6
Merge pull request #953 from sstsimulator/devel
sst-autotester May 11, 2023
70f56eb
Merge pull request #956 from sstsimulator/devel
sst-autotester May 26, 2023
3394518
Merge pull request #965 from sstsimulator/devel
sst-autotester Jul 11, 2023
688ec5d
Merge pull request #966 from sstsimulator/devel
sst-autotester Jul 12, 2023
979cfc8
Merge pull request #971 from sstsimulator/devel
sst-autotester Jul 13, 2023
756fee8
Merge pull request #975 from sstsimulator/devel
sst-autotester Jul 18, 2023
c565e44
Merge pull request #978 from sstsimulator/devel
sst-autotester Jul 25, 2023
a61fbf2
Merge pull request #980 from sstsimulator/devel
sst-autotester Aug 1, 2023
8be7e46
Merge pull request #984 from sstsimulator/devel
sst-autotester Sep 7, 2023
31f4144
Merge pull request #986 from sstsimulator/devel
sst-autotester Sep 12, 2023
f1247ed
Update issue templates
feldergast Sep 13, 2023
68e40c6
Merge pull request #990 from sstsimulator/devel
sst-autotester Sep 22, 2023
2805841
Merge pull request #1004 from sstsimulator/devel
sst-autotester Oct 11, 2023
4c4d4ac
Merge pull request #1007 from sstsimulator/devel
sst-autotester Oct 17, 2023
c9157f0
Add interactive sst-info
bliu1013 Oct 19, 2023
b08ec99
Fix format
bliu1013 Nov 1, 2023
66acc2a
Add command history and update help string
bliu1013 Nov 10, 2023
7aecbda
Add variables, small fixes
bliu1013 Nov 15, 2023
778a0ea
Move window handling to header
bliu1013 Nov 16, 2023
1e73008
Fix backspace, added framework for autofill box
bliu1013 Nov 16, 2023
e654fb8
Move functions out of header, update popup box
bliu1013 Nov 29, 2023
740cf54
Update to clang format
bliu1013 Nov 29, 2023
d42ebb3
Fix backspace, added framework for autofill box
bliu1013 Nov 16, 2023
0d83cfd
Move more window functions to class
bliu1013 Dec 7, 2023
d2a9f11
Move interactive code behind ifdefs, small fixes
bliu1013 Dec 15, 2023
0b74ba4
Add error messages from bpswenson
bliu1013 Dec 15, 2023
839b331
Update formatting
bliu1013 Dec 15, 2023
0696891
Move interactive code under ifdef for curses, small fixes
bliu1013 Dec 15, 2023
e38ec8b
Fix bug with merge
bliu1013 Dec 15, 2023
92423ee
Remove autofill box (temp)
bliu1013 Jan 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions config/ax_require_defined.m4
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# ===========================================================================
# https://www.gnu.org/software/autoconf-archive/ax_require_defined.html
# ===========================================================================
#
# SYNOPSIS
#
# AX_REQUIRE_DEFINED(MACRO)
#
# DESCRIPTION
#
# AX_REQUIRE_DEFINED is a simple helper for making sure other macros have
# been defined and thus are available for use. This avoids random issues
# where a macro isn't expanded. Instead the configure script emits a
# non-fatal:
#
# ./configure: line 1673: AX_CFLAGS_WARN_ALL: command not found
#
# It's like AC_REQUIRE except it doesn't expand the required macro.
#
# Here's an example:
#
# AX_REQUIRE_DEFINED([AX_CHECK_LINK_FLAG])
#
# LICENSE
#
# Copyright (c) 2014 Mike Frysinger <[email protected]>
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice
# and this notice are preserved. This file is offered as-is, without any
# warranty.

#serial 2

AC_DEFUN([AX_REQUIRE_DEFINED], [dnl
m4_ifndef([$1], [m4_fatal([macro ]$1[ is not defined; is a m4 file missing?])])
])dnl AX_REQUIRE_DEFINED
Loading
Loading