You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* make modal into react; move more from pug to react/js
* cleanup modal and settings
* convert everything to react; parse executable+args with spaces (cs01#116)
* add gzip compression to flask
* add gzip; rename index.js to build.js
* everything in a single div id
* add javascript unit tests
* add button to toggle assembly flavors (cs01#110); refresh state when clicking return button
``command``: (Optional) The quote-enclosed executable and arguments to run in gdb. This is a way to script the intial loading of the inferior program you wish to debug. For example ``gdbgui "./mybinary -myarg value -flag1 -flag2"`` (note the quotes around the executable and arguments!). Executables and arguments can also be input through the browser interface after launching (no quotes required there).
116
116
117
117
Flags (all are optional):
118
-
-h, --help show this help message and exit
119
-
-p PORT, --port PORT The port on which gdbgui will be hosted. Defaults to
120
-
5000
121
-
--host HOST The host ip address on which gdbgui serve. Defaults to
122
-
127.0.0.1
123
-
-r, --remote Shortcut to sets host to 0.0.0.0 and suppress browser
124
-
from opening. This allows remote access to gdbgui and
125
-
is useful when running on a remote machine that you
126
-
want to view/debug from your local browser, or let
127
-
someone else debug your application remotely.
128
-
-g GDB, --gdb GDB Path to gdb or lldb executable. Defaults to gdb. lldb
129
-
support is experimental.
130
-
--lldb Use lldb commands (experimental)
131
-
-v, --version Print version
132
-
--hide_gdbgui_upgrades
133
-
Hide messages regarding newer version of gdbgui.
134
-
Defaults to False.
135
-
--debug The debug flag of this Flask application. Pass this
136
-
flag when debugging gdbgui itself to automatically
137
-
reload the server when changes are detected
138
-
-n, --no_browser By default, the browser will open with gdb gui. Pass
139
-
this flag so the browser does not open.
140
-
-x GDB_CMD_FILE, --gdb_cmd_file GDB_CMD_FILE
141
-
Execute GDB commands from file.
142
-
143
-
--args ARGS [ARGS ...]
144
-
(Optional) The binary and arguments to run in gdb.
145
-
Example: gdbgui --args "./mybinary myarg -flag1
146
-
-flag2"
147
-
148
-
--auth (Optional) Require authentication before accessing
149
-
gdbgui in the browser. Prompt will be displayed in
150
-
terminal asking for username and password before
151
-
running server. NOTE: gdbgui does not use https.
152
-
--auth-file AUTH_FILE
153
-
(Optional) Require authentication before accessing
154
-
gdbgui in the browser. Specify a file that contains
155
-
the HTTP Basic auth username and password separate by
156
-
newline. NOTE: gdbgui does not use https.
118
+
-h, --help show this help message and exit
119
+
-p PORT, --port PORT The port on which gdbgui will be hosted. Defaults to 5000
120
+
--host HOST The host ip address on which gdbgui serve. Defaults to 127.0.0.1
121
+
-r, --remote Shortcut to sets host to 0.0.0.0 and suppress browser from opening. This allows remote access to gdbgui and is useful when running on a remote machine that you want to view/debug from your local browser, or let someone else debug your application remotely.
122
+
-g GDB, --gdb GDB Path to gdb or lldb executable. Defaults to gdb. lldb support is experimental.
123
+
--lldb Use lldb commands (experimental)
124
+
-v, --version Print version
125
+
--hide_gdbgui_upgrades Hide messages regarding newer version of gdbgui. Defaults to False.
126
+
--debug The debug flag of this Flask application. Pass this flag when debugging gdbgui itself to automatically reload the server when changes are detected
127
+
-n, --no_browser By default, the browser will open with gdb gui. Pass this flag so the browser does not open
128
+
-x GDB_CMD_FILE GDB_CMD_FILE Execute GDB commands from file
129
+
--args ARGS The binary and arguments to run in gdb. Example: gdbgui --args "./mybinary myarg -flag1 -flag2"
130
+
--auth Require authentication before accessing gdbgui in the browser. Prompt will be displayed in terminal asking for username and password before running server. NOTE: gdbgui does not use https
131
+
--auth-file AUTH_FILE Require authentication before accessing gdbgui in the browser. Specify a file that contains the HTTP Basic auth username and password separate by newline. NOTE: gdbgui does not use https.
0 commit comments