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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<chapter>
<title>Compiling Plex86</title>
<para>Hello, this is my paragraph.</para>
<sect1>
<title>Running Configure Script</title>
<para>Before compiling plex86, you must use the supplied configure
script to configure the source code for your system and desired
options. Ideally, you can just type:
<screen>
<prompt>user:~></prompt> <command>cd plex86</command>
<prompt>user:plex86></prompt> <command>./configure</command>
</screen>
Below is a
list of options you can pass to the configure script, if you need
to compile with non-default values.
As with any GNU autoconf generated script, you can
always see a current list of available options by typing:
<screen>
<prompt>user:plex86></prompt> <command>./configure --help</command>
</screen>
in case this manual is out of date.
<table frame="all" tocentry="1"><title>Configuration Options</title>
<tgroup cols="2" align="left">
<thead>
<row>
<entry>Option</entry>
<entry>Purpose</entry>
</row>
</thead>
<tbody>
<row>
<entry>--with-x</entry>
<entry>use the X Window System (default)</entry>
</row>
<row>
<entry>--enable-cosimulation</entry>
<entry>Enable support for cosimulating with another
simulation/emulation/virtualization package. (not currently
supported)</entry>
</row>
<row>
<entry>--with-linux-source=dir</entry>
<entry>Compile with specific Linux kernel source. It is possible
to compile against a different Linux kernel version than
your system's default version. In this case, you have to
specify the path to the toplevel source directory. Remember,
when you invoke plex86, you must be running the version of
the Linux kernel you compiled against!
</entry>
</row>
<row>
<entry>--with-gui=[x,curses,sdl]</entry>
<entry>Select which GUI to support (x is default)</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</sect1>
<sect1>
<title>Compiling</title>
<para>Now that the source code is configured, you should be able
to compile the source code by typing:
</para>
<screen>
<prompt>user:plex86></prompt> <command>make</command>
</screen>
</sect1>
</chapter>
|