Relaxing the Scope Lookup Rules for Static Symbols and C++ Member Functions
Related Topics:
To relax the scope lookup rules for static symbols and C++ member functions, type:
dbxenv scope_look_aside on
or use the "double backquote" prefix:
stop in ''func4 func4 may be static and not in scope
If the dbx environment variable scope_look_aside is set to on, dbx looks for:
- Static variables defined in other files if not found in the current scope. Files from libraries in /usr/lib are not searched.
- C++ member functions without class qualification
- Instantiations of C++ inline member functions in other files if a member function is not instantiated in the current file.