]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/solib.c
2011-01-05 Michael Snyder <msnyder@vmware.com>
[thirdparty/binutils-gdb.git] / gdb / solib.c
index 0fb263545b9e81b5a93402e9c43548d3d8eefa52..21b554e8a73c304d0cdf1d9dff0b7b4f4ac23801 100644 (file)
@@ -102,8 +102,8 @@ static void
 show_solib_search_path (struct ui_file *file, int from_tty,
                        struct cmd_list_element *c, const char *value)
 {
-  fprintf_filtered (file, _("\
-The search path for loading non-absolute shared library symbol files is %s.\n"),
+  fprintf_filtered (file, _("The search path for loading non-absolute "
+                           "shared library symbol files is %s.\n"),
                    value);
 }
 
@@ -833,8 +833,9 @@ update_solib_list (int from_tty, struct target_ops *target)
            }
 
          if (e.reason < 0)
-           exception_fprintf (gdb_stderr, e, _("\
-Error while mapping shared library sections:\n"));
+           exception_fprintf (gdb_stderr, e,
+                              _("Error while mapping shared "
+                                "library sections:\n"));
 
          /* Notify any observer that the shared object has been
             loaded now that we've added it to GDB's tables.  */
@@ -849,9 +850,9 @@ Error while mapping shared library sections:\n"));
         stand out well.  */
 
       if (not_found == 1)
-       warning (_("\
-Could not load shared library symbols for %s.\n\
-Do you need \"set solib-search-path\" or \"set sysroot\"?"),
+       warning (_("Could not load shared library symbols for %s.\n"
+                  "Do you need \"set solib-search-path\" "
+                  "or \"set sysroot\"?"),
                 not_found_filename);
       else if (not_found > 1)
        warning (_("\
@@ -904,7 +905,8 @@ libpthread_solib_p (struct so_list *so)
    FROM_TTY and TARGET are as described for update_solib_list, above.  */
 
 void
-solib_add (char *pattern, int from_tty, struct target_ops *target, int readsyms)
+solib_add (char *pattern, int from_tty,
+          struct target_ops *target, int readsyms)
 {
   struct so_list *gdb;
 
@@ -1096,7 +1098,8 @@ info_sharedlibrary_command (char *pattern, int from_tty)
     {
       if (so_missing_debug_info)
        ui_out_message (uiout, 0,
-                       _("(*): Shared library is missing debugging information.\n"));
+                       _("(*): Shared library is missing "
+                         "debugging information.\n"));
     }
 }
 
@@ -1353,8 +1356,9 @@ reload_shared_libraries_1 (int from_tty)
            solib_map_sections (so);
 
          if (e.reason < 0)
-           exception_fprintf (gdb_stderr, e, _("\
-Error while mapping shared library sections:\n"));
+           exception_fprintf (gdb_stderr, e,
+                              _("Error while mapping "
+                                "shared library sections:\n"));
          else if (auto_solib_add || was_loaded || libpthread_solib_p (so))
            solib_read_symbols (so, flags);
        }
@@ -1467,7 +1471,8 @@ Show autoloading of shared library symbols."), _("\
 If \"on\", symbols from all shared object libraries will be loaded\n\
 automatically when the inferior begins execution, when the dynamic linker\n\
 informs gdb that a new library has been loaded, or when attaching to the\n\
-inferior.  Otherwise, symbols must be loaded manually, using `sharedlibrary'."),
+inferior.  Otherwise, symbols must be loaded manually, using \
+`sharedlibrary'."),
                           NULL,
                           show_auto_solib_add,
                           &setlist, &showlist);
@@ -1490,9 +1495,12 @@ For other (relative) files, you can add directories using\n\
 
   add_setshow_optional_filename_cmd ("solib-search-path", class_support,
                                     &solib_search_path, _("\
-Set the search path for loading non-absolute shared library symbol files."), _("\
-Show the search path for loading non-absolute shared library symbol files."), _("\
-This takes precedence over the environment variables PATH and LD_LIBRARY_PATH."),
+Set the search path for loading non-absolute shared library symbol files."),
+                                    _("\
+Show the search path for loading non-absolute shared library symbol files."),
+                                    _("\
+This takes precedence over the environment variables \
+PATH and LD_LIBRARY_PATH."),
                                     reload_shared_libraries,
                                     show_solib_search_path,
                                     &setlist, &showlist);