Allow for /usr/bin/hipcc to be a symlink

SWDEV-267206

If /usr/bin/hipcc is a symlink then resolve it first, and then find
the resulting directory rather than resolving /usr/bin.

Change-Id: I380728ffa05ed813cc793a1d6488aaae81ddbda8


[ROCm/hip commit: 24c8e5a348]
Cette révision appartient à :
Icarus Sparry
2021-01-08 17:53:32 -05:00
révisé par Maneesh Gupta
Parent c9cc6fbd65
révision d234e6a9a1
3 fichiers modifiés avec 3 ajouts et 3 suppressions
+1 -1
Voir le fichier
@@ -10,7 +10,7 @@ use List::Util qw(max);
my $base_dir;
BEGIN {
$base_dir = Cwd::realpath( dirname(__FILE__) );
$base_dir = dirname( Cwd::realpath(__FILE__) );
}
use lib "$base_dir/";
use hipvars;
+1 -1
Voir le fichier
@@ -95,7 +95,7 @@ sub delete_temp_dirs {
my $base_dir;
BEGIN {
$base_dir = Cwd::realpath( dirname(__FILE__) );
$base_dir = dirname(Cwd::realpath(__FILE__) );
}
use lib "$base_dir/";
use hipvars;
+1 -1
Voir le fichier
@@ -12,7 +12,7 @@ use File::Basename;
my $base_dir;
BEGIN {
$base_dir = Cwd::realpath( dirname(__FILE__) );
$base_dir = dirname( Cwd::realpath(__FILE__) );
}
use lib "$base_dir/";
use hipvars;