diff --git a/Documentation/install.texi b/Documentation/install.texi index ed00a190c..ef18940b4 100644 --- a/Documentation/install.texi +++ b/Documentation/install.texi @@ -19,16 +19,21 @@ To compile and install @samp{libobjects}: @item Install @samp{gcc}. The library requires gcc version -@value{OBJECTS_GCC_VERSION} or later. First you must apply two patches -that come with libobjects. @samp{gcc-class.patch} makes the -@code{Class} type compatible with NEXTSTEP. @samp{gcc-string.patch} -adds @@""-style constant strings to gcc (thanks to Pieter Schoenmakers -). +@value{OBJECTS_GCC_VERSION} or later. Before building @samp{gcc} you +must apply three patches that come with libobjects. +@file{gcc-class.patch} makes the @code{Class} type compatible with +NEXTSTEP. @file{gcc-string.patch} adds @@""-style constant strings to +gcc (thanks to Pieter Schoenmakers ). +@file{gcc-dynamic.patch} adds some support that helps with dynamic +linking. @example cd gcc-2.6.3/objc patch < ../../libobjects-@value{OBJECTS_VERSION}/gcc-class.patch -patch < ../../libobjects-@value{OBJECTS_VERSION}/gcc-string.patch +cd .. +patch -p1 < ../../libobjects-@value{OBJECTS_VERSION}/gcc-string.patch +cd objc +patch < ../../libobjects-@value{OBJECTS_VERSION}/gcc-dynamic.patch @end example @item