Remove the specified directories from the source path or set path to default.
unuse [ { dirname,… | * } ]
dirname |
The directory to remove from source path. |
* |
Sets path to default. |
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.
(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
Copyright © 2001-2011, Intel Corporation. All rights reserved.