Skip to content
Snippets Groups Projects
Verified Commit be118de7 authored by Willi Mutschler's avatar Willi Mutschler Committed by Sébastien Villemot
Browse files

Add ability to use self-compiled x13as on Mac

(cherry picked from commit a3588e28)
parent f4be688b
Branches
No related tags found
No related merge requests found
......@@ -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