Oracle® Solaris Studio 12.4: Debugging a Program With dbx

Exit Print View

Updated: January 2015
 
 

Initialization File Sample

The following example shows a sample .dbxrc file:

dbxenv input_case_sensitive false
catch FPE

    The first line changes the default setting for the case sensitivity control:

  • dbxenv is the command used to set dbxenv variables. For a complete list of dbxenv variables, see Setting dbxenv Variables.

  • input_case_sensitive is the dbxenv variable that controls case sensitivity.

  • false is the setting for input_case_sensitive.

The next line is a debugging command, catch, which adds a system signal, FPE, to the default list of signals to which dbx responds, stopping the program.