File: INSTALL

package info (click to toggle)
libflorist 2011-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,948 kB
  • sloc: ada: 11,664; ansic: 7,164; makefile: 204
file content (35 lines) | stat: -rw-r--r-- 1,269 bytes parent folder | download | duplicates (3)
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
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 GNAT run time that is not using native OS threads,
   you need to specify 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"