-
Notifications
You must be signed in to change notification settings - Fork 6
/
readme_SINGE_GLG_Test_mac.txt
108 lines (72 loc) · 3.96 KB
/
readme_SINGE_GLG_Test_mac.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
SINGE_GLG_Test_mac Executable
1. Prerequisites for Deployment
Verify that version 9.8 (R2020a) of the MATLAB Runtime is installed.
If not, you can run the MATLAB Runtime installer.
To find its location, enter
>>mcrinstaller
at the MATLAB prompt.
NOTE: You will need administrator rights to run the MATLAB Runtime installer.
Alternatively, download and install the Macintosh version of the MATLAB Runtime for R2020a
from the following link on the MathWorks website:
https://www.mathworks.com/products/compiler/mcr/index.html
For more information about the MATLAB Runtime and the MATLAB Runtime installer, see
"Distribute Applications" in the MATLAB Compiler documentation
in the MathWorks Documentation Center.
2. Files to Deploy and Package
Files to Package for Standalone
================================
-run_SINGE_GLG_Test_mac.sh (shell script for temporarily setting environment variables
and executing the application)
-to run the shell script, type
./run_SINGE_GLG_Test_mac.sh <mcr_directory> <argument_list>
at Linux or Mac command prompt. <mcr_directory> is the directory
where version 9.8 of the MATLAB Runtime is installed or the directory where
MATLAB is installed on the machine. <argument_list> is all the
arguments you want to pass to your application. For example,
If you have version 9.8 of the MATLAB Runtime installed in
/mathworks/home/application/v98, run the shell script as:
./run_SINGE_GLG_Test_mac.sh /mathworks/home/application/v98
If you have MATLAB installed in /mathworks/devel/application/matlab,
run the shell script as:
./run_SINGE_GLG_Test_mac.sh /mathworks/devel/application/matlab
-MCRInstaller.zip
Note: if end users are unable to download the MATLAB Runtime using the
instructions in the previous section, include it when building your
component by clicking the "Runtime included in package" link in the
Deployment Tool.
-The Macintosh bundle directory structure SINGE_GLG_Test_mac.app
Note: this can be stored in an archive file with the zip command
zip -r SINGE_GLG_Test_mac.zip SINGE_GLG_Test_mac.app
or the tar command
tar -cvf SINGE_GLG_Test_mac.tar SINGE_GLG_Test_mac.app
-This readme file
3. Definitions
For information on deployment terminology, go to
https://www.mathworks.com/help and select MATLAB Compiler >
Getting Started > About Application Deployment >
Deployment Product Terms in the MathWorks Documentation
Center.
4. Appendix
A. Mac systems:
In the following directions, replace MR/v98 by the directory on the target machine where
MATLAB is installed, or MR by the directory where the MATLAB Runtime is installed.
If the environment variable DYLD_LIBRARY_PATH is undefined, set it to the following
string:
MR/v98/runtime/maci64:MR/v98/sys/os/maci64:MR/v98/bin/maci64
If it is defined, set it to the following:
${DYLD_LIBRARY_PATH}:MR/v98/runtime/maci64:MR/v98/sys/os/maci64:MR/v98/bin/maci64
For more detailed information about setting the MATLAB Runtime paths, see Package and
Distribute in the MATLAB Compiler documentation in the MathWorks Documentation Center.
NOTE: To make these changes persistent after logout on Linux
or Mac machines, modify the .cshrc file to include this
setenv command.
NOTE: The environment variable syntax utilizes forward
slashes (/), delimited by colons (:).
NOTE: When deploying standalone applications, you can
run the shell script file run_SINGE_GLG_Test_mac.sh
instead of setting environment variables. See
section 2 "Files to Deploy and Package".
5. Launching application using Macintosh finder
If the application is purely graphical, that is, it doesn't read from standard in or
write to standard out or standard error, it may be launched in the finder just like any
other Macintosh application.