This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/manuals/userman/installing.html

188 lines
11 KiB
HTML
Raw Normal View History

<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet type="text/css" href="../styles.css" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Logtalk user manual: installing Logtalk</title>
<link rel="stylesheet" href="../styles.css" type="text/css" />
</head>
<body>
<div class="navtop">
<a href="../index.html">contents</a> &gt; <a href="index.html">user manual</a>
</div>
<h1>Installing Logtalk</h1>
<h2>Hardware &amp; software requirements<a name="requirements"></a></h2>
<h3>Computer and operating system<a name="computer"></a></h3>
<p>
Logtalk is compatible with almost any computer/operating system with a modern Prolog compiler available. Currently, the main development environment is an Apple PowerBook running MacOS X. Being written in Prolog and distributed in source form, the only issue regarding operating system compatibility are the end-of-line codes in the source text files! Most example source file names do not fit in the 8+3 MS-DOS file length limitation, so this may prevent those examples from running under this operating system (or in any other system with similar limitations).
</p>
<h3>Prolog compiler<a name="compiler"></a></h3>
<p>
In writing Logtalk I have tried to follow the recently approved Prolog ISO standard whenever possible. Capabilities needed by Logtalk that are not defined in the ISO standard are:
</p>
<ul>
<li>access to predicate properties (<code>dynamic</code>, <code>static</code>, <code>built_in</code>)</li>
</ul>
<p>
Logtalk needs access to the predicate property<code>built_in</code> to properly compile objects and categories that contain Prolog built-in predicates calls. In addition, some Logtalk built-ins need to know the dynamic/static status of predicates to ensure correct application. The ISO standard for Prolog modules defines a <code>predicate_property/2</code> predicate that is already implemented by most Prolog compilers. Note that if these capabilities are not built-in the user cannot easily define them.</p>
<p>
For optimal performance, Logtalk requires that the Prolog compiler supports <strong>first-argument indexing</strong> for both static and dynamic code (most modern compilers support this feature).
</p>
<p>
Since most Prolog compilers are moving closer to the ISO Prolog standard <a href="../bibliography.html#ISO95">[ISO 95]</a>, it is advisable that you try to use a recent version of your favorite Prolog compiler.
</p>
<h2>Installing Logtalk<a name="installing"></a></h2>
<p>
The Logtalk system can be installed in any directory that is accessible to the user. The installation process consists merely in decompressing an archive file that will lead to a new directory with the structure/contents described below. The decompression process naturally depends on the operative system that you are using. For some operating systems, an installer may be provided. Users wishing to use the Logtalk library and Logtalk examples will need write access to the respective directories or to make a local copy these directories on their home directories. See the file <code>INSTALL</code> for details. The directory <code>misc</code> may contain scripts for helping with Logtalk packaging, installation, and integration with Prolog compilers.
</p>
<h4>Mac OS 8.x, 9.x</h4>
<p>
The Macintosh version is included in the file <code>lgt2xxx.sit</code>, a StuffIt archive. Drag and drop the <code>.sit</code> file in a utility like <code>StuffIt Expander</code> for expanding it.
</p>
<h4>MacOS X, BSD, Linux, Unix</h4>
<p>
The MacOS X/BSD/Linux/Unix version is included in the file <code>lgt2xxx.tar.gz</code>. In order to decompress and install the system you may use the following commands:
</p>
<pre>
% gunzip lgt2xxx.tar.gz
% tar -xvf lgt2xxx.tar
</pre>
<p>
This will create a sub-directory named <code>lgt2xxx</code> in your current directory.
</p>
<h4>OS/2, Windows 95/98/NT/ME/2000</h4>
<p>
The OS/2 and Windows 95/98/NT/ME/2000 version is included in the file <code>lgt2xxx.zip</code>. The file can be decompressed using an utility like <code>unzip</code>:
</p>
<pre>
unzip lgt2xxx.zip
</pre>
<h4>Other operating systems</h4>
<p>
Almost all files in the Logtalk distribution are text files. The only difference between the source files, other than the compressing formats, is the end-of-line codes: Macintosh uses a carriage return, Unix uses a line feed, OS/2, Windows 95/NT uses both a carriage return and a line feed. This should make it easier to install Logtalk under other operating systems.
</p>
<h2>Directories and files organization<a name="organization"></a></h2>
<p>
In the Logtalk installation directory, you will find the following files and directories:
</p>
<dl>
<dt><code>BIBLIOGRAPHY</code> - Logtalk bibliography in BibTeX format</dt>
<dt><code>INSTALL</code> - Logtalk installation instructions</dt>
<dt><code>LICENSE</code> - Logtalk user license</dt>
<dt><code>QUICK_START</code> - Quick start instructions for those that do not like to read manuals</dt>
<dt><code>README</code> - several useful information</dt>
<dt><code>RELEASE_NOTES</code> - release notes for this version</dt>
<dt><code>UPGRADING</code> - instructions in how to upgrade your programs to the current Logtalk version</dt>
<dt><code>compiler</code></dt>
<dd><code>NOTES</code> - notes on the current status of the compiler</dd>
<dd><code>...</code> - compiler source files</dd>
<dt><code>configs</code></dt>
<dd><code>NOTES</code> - notes on the provided configuration files</dd>
<dd><code>template.config</code> - template configuration file</dd>
<dd><code>...</code> - specific configuration files</dd>
<dt><code>examples</code></dt>
<dd><code>NOTES</code> - short description of the provided examples</dd>
<dd><code>bricks</code></dd>
<dd><dl>
<dd><code>NOTES</code> - example description and other notes</dd>
<dd><code>SCRIPT</code> - step by step example tutorial</dd>
<dd><code>loader.lgt</code> - loader utility file for the example objects</dd>
<dd><code>...</code> - bricks example source files</dd>
</dl></dd>
<dd><code>...</code> - other examples</dd>
<dt><code>library</code></dt>
<dd><code>NOTES</code> - short description of the library contents</dd>
<dd><code>all_loader.lgt</code> - loader utility file for all library entities</dd>
<dd><code>...</code> - library source files</dd>
<dt><code>manuals</code></dt>
<dd><code>NOTES</code> - notes on the provided documentation</dd>
<dd><code>bibliography.html</code> - bibliography</dd>
<dd><code>glossary.html</code> - glossary</dd>
<dd><code>index.html</code> - root document for all documentation</dd>
<dd><code>...</code> - other documentation files</dd>
<dt><code>misc</code></dt>
<dd><code>NOTES</code> - notes on diverse files for Logtalk packaging, installation, and integration with Prolog compilers</dd>
<dd><code>...</code> - packaging, installation, and integration files</dd>
<dt><code>wenv</code></dt>
<dd><code>NOTES</code> - notes on the text editors syntax configuration files providing syntax coloring for editing Logtalk source files</dd>
<dd><code>...</code> - syntax configuration files</dd>
<dt><code>xml</code></dt>
<dd><code>NOTES</code> - notes on the automatic generation of XML documentation files</dd>
<dd><code>logtalk.css</code> - cascade style sheet file for the HTML output of the XSLT conversion of the XML files</dd>
<dd><code>logtalk.dtd</code> - Document Type Description file describing the structure of the XML files</dd>
<dd><code>lgthtml.xsl</code> - transformation style sheet to output HTML code from the XML files</dd>
<dd><code>...</code> - other XML related files</dd>
</dl>
<h3>Configuration files<a name="configs"></a></h3>
<p>
Configuration files provide the glue code between the Logtalk preprocessor/runtime and a Prolog compiler. Each configuration file contains two sets of predicates: ISO Prolog standard predicates and directives not built-in in the target Prolog compiler and Logtalk-specific predicates.
</p>
<p>
Logtalk already includes ready to use configuration files for most academic and commercial Prolog compilers. If a configuration file is not available for the compiler that you intend to use, then you need to build a new one, starting from the included <code>template.config</code> file. Start by making a copy of the template file. Carefully check (or complete if needed) each listed definition. If your Prolog compiler conforms to the ISO standard, this task should only take you a few minutes. In most cases, you can borrow code from some of the predefined configuration files. If you are unsure that your Prolog compiler provides all the ISO predicates needed by Logtalk, try to run the system by setting the unknown predicate error handler to report as an error any call to a missing predicate. Better yet, switch to a modern, ISO compliant, Prolog compiler. If you send me your configuration file, with a reference to the target Prolog compiler, maybe I can include it in the next release of Logtalk.
</p>
<h3>Logtalk compiler and runtime<a name="compiler"></a></h3>
<p>
The <code>compiler</code> sub-directory contains the Prolog source file(s) that implement the Logtalk preprocessor/compiler and the Logtalk runtime. The compiler and the runtime may be split in two (or more) separate files or combined in a single file, depending on the Logtalk release that you are installing.
</p>
<h3>Library<a name="library"></a></h3>
<p>
Starting from version 2.7, Logtalk contains a standard library of useful objects, categories, and protocols. Read the corresponding <code>NOTES</code> file for details about the library contents.
</p>
<h3>Examples<a name="examples"></a></h3>
<p>
Logtalk 2.x contains new implementations of some of the examples provided with previous 1.x versions. The sources of each one of these examples can be found included in a subdirectory with the same name, inside the directory examples. The majority of these examples include a file named <code>SCRIPT</code> that contains cases of simple utilization. Some examples may depend on other examples and library objects to work properly. Read the corresponding <code>NOTES</code> file for details before running an example.
</p>
<h3>Logtalk source files<a name="entities"></a></h3>
<p>
Each Logtalk entity (object, category or protocol) is contained in a text file named after the entity. The extension <code>.lgt</code> is normally used. The Logtalk preprocessor compiles these files to plain Prolog, replacing the <code>.lgt</code> extension with <code>.pl</code> (the default Prolog extension). If your Prolog compiler expects the Prolog source filenames to end with a specific, different extension, you can set it in the corresponding configuration file.
</p>
<div class="navbottom">
<a href="documenting.html">previous</a> | <a href="../glossary.html">glossary</a> | <a href="running.html">next</a>
</div>
<div class="copyright">
Copyright &copy; <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> &mdash; <a href="http://www.logtalk.org">Logtalk.org</a>
</div>
<div class="footer">
<p><span class="bleft"><a href="http://validator.w3.org/check/referer">XHTML</a> + <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></span><span class="bright">Last updated on: August 14, 2004</span></p>
</div>
</body>
</html>