Update docs

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9578 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-04-13 19:50:23 +00:00
parent a3da36ba3d
commit 10ad1dff79
3 changed files with 21 additions and 20 deletions

View file

@ -66,12 +66,13 @@ information. (Make sure you use the same switches for every package you
compile, and also when you install).
@menu
* Backend Bundles::
* Alternate Libraries::
* Cross-Compiling::
* Flat Structure::
@end menu
@node Backend Bundles, Cross-Compiling, Configuration, Configuration
@node Backend Bundles, Alternate Libraries, Configuration, Configuration
@subsection Backend Bundles
By default, the gnustep-make package specifies that GUI backends are built
@ -81,11 +82,11 @@ instance, if bundles do not work on your platform), it can be disabled using
@example
--disable-backend-bundle
@end
@end example
in the arguments to configure.
@node Alternate Libraries, Cross-Compiling, Configuration, Configuration
@node Alternate Libraries, Cross-Compiling, Backend Bundles, Configuration
@subsection Alternate Library Setup
You can specify compilation of alternate libraries by using the

View file

@ -1,7 +1,7 @@
GNUstep HOWTO
*************
Last Update: 5 April 2001
Last Update: 13 April 2001
This document explains how to build the different components of the
GNUstep core libraries and GNUstep Launchpad.
@ -180,16 +180,6 @@ configure will use /usr/GNUstep/System as the default root directory.
Alternate Library Setup
-----------------------
You can specify compilation of alternate libraries by using the
-with-library-combo option:
./configure --with-library-combo=gnu-gnu-gnu-xdps
to compile with the xdps library rather than the default xgps
backend. IMPORTANT: The xdps backend is still experimental. Do not use
it unless you are willing to deal with PostScript problems and other
bugs.
Read the installation instructions in the Makefile package (make)
for more installation options. Make sure you use the same configuration
options when configuring each GNUstep library.
@ -368,7 +358,7 @@ and possibly one or two major ones if your trying to do this. Darwin
doesn't have a GCC ObjC Compiler, so you need to use the ObjC runtime
that comes with Darwin. To do this configure (gnustep-make) like this:
./configure --with-library-combo=nx-gnu-gnu-xgps
./configure --with-library-combo=nx-gnu-gnu
Debian/DEC-Alpha
================

20
INSTALL
View file

@ -52,6 +52,19 @@ debug=yes" compiles using static libraries with debugging information.
(Make sure you use the same switches for every package you compile, and
also when you install).
Backend Bundles
---------------
By default, the gnustep-make package specifies that GUI backends are
built as a bundle and loaded in at runtime. This allows one to switch
backends by simply redefining a user default. If you do not want this
behavior (for instance, if bundles do not work on your platform), it
can be disabled using
--disable-backend-bundle
in the arguments to configure.
Alternate Library Setup
-----------------------
@ -59,12 +72,9 @@ Alternate Library Setup
with-library-combo option. You need to have these libraries unpacked in
a subdirectory under the gstep directory, then you can say
./configure --with-library-combo=gnu-gnu-gnu-xdps
./configure --with-library-combo=nx-gnu-gnu
to compile with the xdps library rather than the default xgps
backend. IMPORTANT: The xdps backend is still experimental. Do not use
it unless you are willing to deal with PostScript problems and other
bugs.
to compile with Apple's (NexT's) runtime on Darwin, for example.
Configuring the GNUstep makefile package for a cross-compile target
-------------------------------------------------------------------