 |
» |
|
|
|
|  |  |
You can set the following options for your debug sessions: Standard input/output redirection
The Load Program dialog box with the Run tab selected Setting
Run Options |  |
In the Load Program dialog box, use the Run tab to set options
that specify the executable name, program arguments, core file name,
and existing process to be used for the current debug session. To specify
an executable:On the File
menu, click Load Program, then click the Run tab. In the Executable Name box,
type the path and name of the executable. To browse for the file,
click the Browse button. If
you browse for the file, the Executable Name dialog box displays In the Executable Name dialog
box, double-click to select the appropriate directory from the Directories
list and select the appropriate file from the Files list. When the proper path and
file appear in the Selection box, click OK.
In the Load Program dialog
box, verify that the proper path and file appear in the Executable
Name box. In the Arguments box, type
the command line arguments that you want to pass to the executable
when it runs. Click OK.
To load
a core file for debuggingOn the File
menu, click Load Program, then click the Run tab. Select the Core File option,
then type the path and name of the core file. To browse for the file,
click the Browse button. Click OK.
To attach
to an existing process for debuggingOn the File
menu, click Load Program, then click the Run tab. Select the Attach Process
ID option, then type the process ID number (PID). Click OK.
The process execution pauses and the program loads into the
WDB GUI. You can now set breakpoints, view variables, and perform
other debugging tasks. Set desired breakpoints at this stage because once you continue
executing the process, you will not have control of execution until
a breakpoint has been reached. Click Stop Debugging on the Debug menu to detach a process. After the process is detached, the process continues running
independently of the WDB GUI, and the WDB GUI no longer has any
control of the process. Setting
Environment Variables |  |
You can set environment variables that will be in effect for
the current debug session. To view
current environment variablesOn the File
menu, click Load Program, then click the Environment tab. Check the Debug Environment
Variables list box for a list of current environment variables. Click OK.
To set
new environment variablesOn the File
menu, click Load Program, then click the Environment tab. In the Variable box on the
Add/Modify Environment Variable section, type the name of the variable
you want to set. In the Value box, type the
value that you want to assign to the specified variable. For example,
to assign the variable, “DISPLAY,” a value of “test:0,” type
DISPLAY in the Variable box and type test:0 in the Value box. Click Set. Click OK.
To delete
environment variablesOn the File
menu, click Load Program. Click the Environment tab. In the Debug Environment
Variables list box, select the variable that you want to delete. Click Delete and click OK. In the Command view, enter
the command, unset env Varname where VarName is the name of the environment variable
you want to remove. Use the show env command in the Command view to verify that the environment variable
has been removed.
|