unuse (idb mode only)

Remove the specified directories from the source path or set path to default.

Syntax

unuse [ { dirname,… | * } ]

Parameters

dirname

The directory to remove from source path.

*

Sets path to default.

Description

This command removes entries from the list of source directories that the debugger uses to search for source and script files when opening an executable file.

To add entries to the list, use use.

If you do not specify any directories, this command sets the search list to the default, which is the home directory, the current directory, and the directory containing the executable file.

If you specify any directory names, the debugger removes them from the search list.

If you specify an asterisk (*), the debugger removes all directories from the search list.

Example

(idb) unuse aa
Directory search path for source files: 
. ../src /home/user/examples bb cc 
(idb) unuse aa
aa not in the current source path 
Directory search path for source files: 
. ../src /home/user/examples bb cc 
(idb) unuse bb cc
Directory search path for source files: 
. ../src /home/user/examples 
(idb) unuse *
Directory search path for source files: 
(idb) unuse
Directory search path for source files: 
. ../src /home/user/examples 

See Also


Submit feedback on this help topic

Copyright © 2001-2011, Intel Corporation. All rights reserved.