Skip to content

Commit

Permalink
Revert getenv for vivado path tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
StancaPop committed Jan 22, 2025
1 parent a7320dd commit 8e4a688
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/BSPTestsBase.m
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ function setVivadoPath(~,vivado)
if ispc
pathname = ['C:\Xilinx\Vivado\',vivado,'\bin\vivado.bat'];
elseif isunix
pathname = getenv('vivado_settings_path');
pathname = ['/emea/mediadata/opt/Xilinx/Vivado/',vivado,'/bin/vivado'];
%pathname = ['/opt/Xilinx/Vivado/',vivado,'/bin/vivado'];
%pathname = getenv('vivado_settings_path');
end
end
assert(exist(pathname,'file')>0,'Correct version of Vivado is unavailable or in a non-standard location');
Expand Down

0 comments on commit 8e4a688

Please sign in to comment.