On 4/9/10 08:08 , christophe.ja...@ouvaton.org wrote: > I tried to "makeinfo -I include/ gcc.texi" inside extracted > http://gcc.gnu.org/onlinedocs/docs-sources.tar.gz directory, but have > the following error: > > include//gcc-common.texi:12: @include `gcc-vers.texi': No such file or > directory.
To build GCC's documentation, you should configure a build and then run 'make doc' from the GCC build directory: $ mkdir bld && cd bld $ ../gcc/configure && make info Alternately, you can access the GCC documentation at http://gcc.gnu.org/onlinedocs/ Diego.