Added links to SWIG Wiki Shared Library page.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4008 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2002-10-23 19:34:08 +00:00
commit 847f6b207c

View file

@ -53,7 +53,7 @@ extern char *get_time();
<h3> Building a Tcl module </h3>
At the UNIX prompt, type the following (shown for Linux):
At the UNIX prompt, type the following (shown for Linux, see the <a href="http://swig.cs.uchicago.edu/cgi-bin/wiki.pl?SwigFaq/SharedLibraries">SWIG Wiki Shared Libraries</a> page for help with other operating systems):
<blockquote>
<pre><tt>
@ -83,7 +83,7 @@ the 'load' command.
<h3> Building a Python module </h3>
Turning C code into a Python module is also easy. Simply do the following (shown for Irix):
Turning C code into a Python module is also easy. Simply do the following (shown for Irix, see the <a href="http://swig.cs.uchicago.edu/cgi-bin/wiki.pl?SwigFaq/SharedLibraries">SWIG Wiki Shared Libraries</a> page for help with other operating systems):
<blockquote> <tt> <pre>
@ -107,7 +107,7 @@ We can now use the Python module as follows :
</tt> </blockquote>
<h3> Building a Perl module </h3>
You can also build a Perl5 module as follows (shown for Solaris):
You can also build a Perl5 module as follows (shown for Solaris, see the <a href="http://swig.cs.uchicago.edu/cgi-bin/wiki.pl?SwigFaq/SharedLibraries">SWIG Wiki Shared Libraries</a> page for help with other operating systems):
<blockquote><tt><pre>
unix % swig -perl5 example.i
@ -127,7 +127,7 @@ unix %
</pre></tt></blockquote>
<h3> Building a Java module </h3>
SWIG will also generate JNI code for accessing C/C++ code from Java. Here is an example building a Java module (shown for Cygwin):
SWIG will also generate JNI code for accessing C/C++ code from Java. Here is an example building a Java module (shown for Cygwin, see the <a href="http://swig.cs.uchicago.edu/cgi-bin/wiki.pl?SwigFaq/SharedLibraries">SWIG Wiki Shared Libraries</a> page for help with other operating systems):
<blockquote><tt><pre>
$ swig -java example.i