1
1
add an lt_dlerror() in the error output one of the error cases.

This commit was SVN r21751.
Этот коммит содержится в:
Jeff Squyres 2009-08-03 16:29:52 +00:00
родитель 9455eb804f
Коммит 98b0a7af3d

Просмотреть файл

@ -502,8 +502,8 @@ static int open_component(component_file_item_t *target_file,
component_struct = (mca_base_component_t*)lt_dlsym(component_handle, struct_name);
if (NULL == component_struct) {
opal_output_verbose(vl, 0, "mca: base: component_find: \"%s\" does not appear to be a valid "
"%s MCA dynamic component (ignored)",
target_file->basename, target_file->type);
"%s MCA dynamic component (ignored): %s",
target_file->basename, target_file->type, lt_dlerror());
free(mitem);
free(struct_name);
lt_dlclose(component_handle);