The capabilities provided by psLib are grouped into the following areas which are also reflected in the file system directory structure:
This list is sorted in hierarchical order: The later entries depend on the functions and data types of the earlier entries.
The installed code for psLib consists of header files and binary libraries in the form of static and/or shared library, depending on the configuration options. To assist in using the library, a script "pslib-config" is supplied that provides the compiler and linker options.
Though not required to build the base library, several 3rd party software libraries are needed for particular functionality.
We recommend using the particular versions listed as compatibility tested, as that is the only versions of the external libraries tested to work well with psLib. Though it is quite possible that later versions of the libraries listed will also work as well, care must be taken when upgrading these libraries to verify that its functionality is compatible with the tested version.
https://mhpcc.pan-starrs.org/code/releases
Though MHPCC recommends using the released packaged tar files descibed above, both recent daily development snapshots and direct CVS access is available. The recent daily snapshots are available at:
https://mhpcc.pan-starrs.org/code/snapshots
These snapshots represents development code as found in CVS on the day specified in the filename. This code set may not be functional, vary in testing, etc. Reasonable efforts are made to ensure that the code does actually compile, but given the nature of code development, even that is not always the case. Use snapshots with great caution.
If one has a login account on mhpcc.pan-starrs.org, direct CVS access is possible. Example of the commands required for direct CVS retrieval are as follows:
$ cvs -d:ext:USERNAME@mhpcc.pan-starrs.org:/data/panstarrs/cvsroot co -r RELEASEBRANCH psLibwhere:
$ cd psLib $ make -f Makefile.cvsThis creates the configure script and Makefile templates.
The recommended steps to build the library are:
$ cd psLib $ ./configure $ make $ make check $ make installThis builds, tests, and installs the library.
The configure step allows users to specify specific locations for the third party libraries (see "3rd Party Libraries" for a list), disabling of select functionality (e.g., database and perl module), installation location, etc. An enumeration of the options for configure, and the default values, can be obtained via "./configure --help".
Though 'make check' compiles and runs the test suite, one can also use custom scripts to run all the tests and just a particular test. To run the unit test suite, do the following:
$ cd psLib/test $ ./FullUnitTest
This has the advantage over 'make check' in that it does not stop when a test fails and it collects some very basic statistics on the results. To run a particular test, do the following:
$ runTest testfilename
$ cd psLib $ make docsThis places documentation in PREFIX/docs/psLib, where PREFIX is set using the configure script.
Also, a prebuilt set of code documentation for both the releases and last CVS snapshot can be found at:
https://mhpcc.pan-starrs.org/docs/
1.3.9.1