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
|
In order to install FLORIST, you should go through the following steps:
0. Make sure you have GNAT installed.
Note that to use FLORIST, you need to either use a GNAT run time based on
native threads (see GNAT user's guide for more details)
or use the --disable-threads option at configure time below:
1. Configure FLORIST by typing "./configure".
You may want to use the --prefix=/florist/install option to specify
where to install FLORIST. By default, Florist will be installed
under /usr/local.
If you are using a special configuration with no support or non standard
support for tasking/threads, you may consider using the --disable-threads
option:
./configure --disable-threads
Note that disabling thread support will remove support for the following
packages that depend on threads:
- POSIX.Asynchronous_IO
- POSIX.Condition_Variables
- POSIX.Message_Queues
- POSIX.Mutexes
- POSIX.Process_Primitives
- POSIX.Process_Signals
- POSIX.Timers
2. Build and compile FLORIST by typing "make"
If you need to specify optional gnatmake flags, or use an alternate
gnatmake executable, you may specify GNATMAKE="gnatmake-cmd-line", e.g:
make GNATMAKE="gnatmake --RTS=zcx"
3. Install FLORIST by typing "make install"
|