Skip to content

Commit

Permalink
Removed RTLD_NOLOAD flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcg1969 committed Mar 25, 2014
1 parent 603bdaa commit fc592dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vecLibFort.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ static void loadlib(void)
{
static const char* veclib_loc = VECLIB_FILE;
DEBUG( "Loading library: %s\n", veclib_loc )
veclib = dlopen (veclib_loc, RTLD_LOCAL | RTLD_NOLOAD | RTLD_FIRST);
veclib = dlopen (veclib_loc, RTLD_LOCAL | RTLD_FIRST);
if ( veclib == 0 ) {
fprintf( stderr, "Failed to open vecLib library; aborting.\n Location: %s\n", veclib );
abort ();
Expand Down

0 comments on commit fc592dd

Please sign in to comment.