Skip to content

Commit

Permalink
Merge pull request accellera-official#86 from aut0/lib64_fix
Browse files Browse the repository at this point in the history
Check lib64/ for SystemC library
  • Loading branch information
lmailletcontoz authored Oct 24, 2023
2 parents a172c70 + 9c1e9b4 commit 679151d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/verify.pl
Original file line number Diff line number Diff line change
Expand Up @@ -821,11 +821,13 @@ sub add_to_ldpath
push @candidates, "$dir$local$suffix" if ( -d "$dir$local$suffix" );

} else {
my $lib = "/lib";
my $arch = "-$rt_systemc_arch";
my $lib = "/lib";
my $lib64 = "/lib64";
my $arch = "-$rt_systemc_arch";
push @candidates, "$dir$lib$arch" if ( -d "$dir$lib$arch" );
push @candidates, "$dir$arch" if ( -d "$dir$arch" );
push @candidates, "$dir$lib" if ( -d "$dir$lib" );
push @candidates, "$dir$lib64" if ( -d "$dir$lib64" );
}

# use given (existing) directory directly
Expand Down

0 comments on commit 679151d

Please sign in to comment.