source: trunk/src/compile.m @ 951

Last change on this file since 951 was 924, checked in by g7moreau, 8 years ago
  • Update Copyright Copyright 2008-2016, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
File size: 2.8 KB
Line 
1%'compile': compile a Matlab function, create a binary in a subdirectory /bin
2%--------------------------------------------------------------------
3% compile (FctName)
4%
5%INPUT:
6%FctName: name of the Matlab fct to compile (without .m extension)
7
8%=======================================================================
9% Copyright 2008-2016, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
10%   http://www.legi.grenoble-inp.fr
11%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
12%
13%     This file is part of the toolbox UVMAT.
14%
15%     UVMAT is free software; you can redistribute it and/or modify
16%     it under the terms of the GNU General Public License as published
17%     by the Free Software Foundation; either version 2 of the license,
18%     or (at your option) any later version.
19%
20%     UVMAT is distributed in the hope that it will be useful,
21%     but WITHOUT ANY WARRANTY; without even the implied warranty of
22%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23%     GNU General Public License (see LICENSE.txt) for more details.
24%=======================================================================
25
26function compile (FctName,SubfctPath)
27hh=[];% handles of message display window
28if isempty(which('mcc'))
29    msgbox_uvmat('ERROR','no Matlab compiler toolbox mcc installed')
30    return
31else
32    hh=msgbox_uvmat('WAITING...',['compilation of ' FctName ' in progress...']);
33end
34disp(['compiling ' FctName ' ...'])
35% commands to compile civ_matlab and eventually other functions
36if ~exist('bin','dir')
37    [success,errormsg]=mkdir('bin');
38    if success~=1
39        display(errormsg)
40    end
41end
42if ~isempty(SubfctPath)
43    SubfctPath=['-I ' SubfctPath];%string indicating the option of including the path SubfctPath
44end
45[mcrmajor, mcrminor] = mcrversion;   
46MCRROOT = ['MCRROOT',int2str(mcrmajor),int2str(mcrminor)];
47FctNameVersion=[FctName,'_',MCRROOT];
48%hver=ver('MATLAB');
49%FctNameVersion=[FctName '_MCRROOT' regexprep(hver.Version,'\.','')];%suppress the dot in version number
50try
51    disp(['mcc -m -R -nojvm -R -nodisplay -R -singleCompThread ' SubfctPath ' ' FctName '.m'])
52    eval(['mcc -m -R -nojvm -R -nodisplay -R -singleCompThread ' SubfctPath ' ' FctName '.m'])% compile the source file [FctName .m], which produces a binary file FctName and a cmd file [run_' FctName '.sh]
53    system(['mv -f ' FctName ' bin/']);%move the binary file FctName to the subdir /bin
54    system(['sed -e ''''s#/' FctName '#/bin/' FctName '#'''' run_' FctName '.sh > ' FctNameVersion '.sh']);%modify the cmd file and copy it to [FctName '.sh']
55    system(['rm run_' FctName '.sh']);% remove the initial cmd file [run_' FctName '.sh]
56    system(['chmod +x ' FctNameVersion '.sh']); % set the cmd file to 'executable'
57catch ME
58    hh=msgbox_uvmat('ERROR',ME.message);
59end
60display('** END **')
61if ~isempty(hh)
62delete(hh)
63end
64
65
Note: See TracBrowser for help on using the repository browser.