Skip to content

mihawk/fis-gtm

 
 

Repository files navigation

All software in this package is part of FIS GT.M (http://fis-gtm.com)
which is Copyright 2016 Fidelity Information Services, Inc., and
provided to you under the terms of a license. If there is a COPYING
file included in this package, it contains the terms of the license under
which the package is provided to you. If there is not a COPYING file in
the package, you must ensure that your use of FIS GT.M complies with the
license under which it is provided. If you are unsure as to the terms of
your license, please consult with the entity that provided you with the
package.

GT.M relies on CMake to generate the Makefiles to build GT.M from source. The
prerequisites are CMake (at least 2.8.5), GNU make (at least 3.81), Linux
(either x86 or x86_64), libraries and development files for libz, Unicode,
OpenSSL and GPG. Debian 7, Ubuntu 12.04/14.04 LTS and RHEL 6.0 were used to do
the test builds for this distribution. The default ICU and GPG packages were
taken from the distribution repositories.

To build GT.M for Linux, do the following steps:

1. Fulfill the pre-requisites
   Install developement libraries libelf, zlib, libicu, libgpgme, libgpg-error,
   libgcrypt, libssl, libconfig. There may be other library dependencies. If
   CMake issues a  NOTFOUND error, please see the FAQ below.

2. Unpack the GT.M sources
   The GT.M source tarball extracts to a directory with the version number in
   the name, fis-gtm-V6.3-000
   $ tar xfz fis-gtm-V6.3-000.tar.gz
   $ cd fis-gtm-V6.3-000

   You should find this README, LICENSE, COPYING and CMakeLists.txt file and
   sr_* source directories.

3. Building GT.M -
   <fis-gtm-build> can be a sub directory of the source directory,
   fis-gtm-V6.3-000, or any other valid path.

   $ mkdir <fis-gtm-build>
   $ cd <fis-gtm-build>

   # [optional] If you installed GT.M, provide the directory path to cmake
   #   -D GTM_DIST:PATH=$gtm_dist
   #
   # By default the build produces release versions of GT.M. To build a debug
   # version of GT.M supply the following parameter to cmake
   #     -D CMAKE_BUILD_TYPE=DEBUG
   #
   # Note that the cmake install does not create the final installed GT.M.
   # Instead, it stages GT.M for distribution. Change the CMAKE_INSTALL_PREFIX
   # to place the staged files in a local directory. To install GT.M, you must
   # cd to that installed directory and execute the configure script.
   #
   #     -D CMAKE_INSTALL_PREFIX:PATH=${PWD}/package
   #
   $ cmake -D CMAKE_INSTALL_PREFIX:PATH=${PWD}/package <path to>/fis-gtm-V6.3-000

   $ make

   $ make install

   $ cd package/lib/fis-gtm/V6.3-000_x86_64

   # Now you are ready to install GT.M. Answer a few questions and install it.
   # The recommended installation path is /opt/fis-gtm/V6.3-000_x86_64

   $ sudo ./configure

   $ make clean

4. Packaging GT.M -
   Create a tar file from the installed directory

FAQ:
- The CMake build fails with the following message followed by one or more cases.
	CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
	Please set them or make sure they are set and tested correctly in the CMake files:
  This indicates that required libraries are not found. Please consult the list
  of libraries and check your distributions package manager.

About

FIS/GT.M Repository to mirror the source code drops on http://sourceforge.net/projects/fis-gtm/

Resources

License

Unknown, AGPL-3.0 licenses found

Licenses found

Unknown
LICENSE
AGPL-3.0
COPYING

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 60.3%
  • M 36.2%
  • Shell 1.5%
  • Assembly 1.1%
  • C++ 0.6%
  • CMake 0.2%
  • Other 0.1%