Skip to content
Snippets Groups Projects
Verified Commit a3588e28 authored by Willi Mutschler's avatar Willi Mutschler
Browse files

Add ability to use self-compiled x13as on Mac

parent 5e870858
Branches
No related tags found
1 merge request!39Add ability to use self-compiled x13as on Mac
......@@ -33,6 +33,12 @@ if ismac()
else
x13_binary = sprintf('%s%s%s%s', x13_binary, '32', filesep(), 'x13as');
end
if ~exist(x13_binary, 'file')
[status, x13_binary] = system('which x13as');
if ~status
x13_binary = deblank(x13_binary);
end
end
elseif isunix()
x13_binary = sprintf('%s%s%s', dseries_x13_root, 'linux', filesep());
if is64bit()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment