Andrea Bencini wrote: > Linux From Scratch 6.8 > > 5.4. Binutils-2.21 - Pass 1 > > I prepare Binutils for compilation: > > ../binutils-2.21/configure \ > --target=$LFS_TGT --prefix=/tools \ > --disable-nls --disable-werror > > Before running this instruction I would want to know all the "configure" > parameters. > > If I do: > ./binutils-2.21/configure --help > > I have the list of the "configure" parameters, but I do not find > > --disable-nls and --disable-werror. > > Is it possible to know all the parameters?
It's a bit hard. Sometimes it just takes experience. In the case of binutils, the main configure command calls other configure commands in subdirectories, e.g. binutils/configure, bfd/configure. These commands are passed the parent parameters. Several of the packages in LFS are quite complex and have this type of arrangement. Note that configure --help for binutils does specify --enable-werror. Any place you can specify --enable, you can specify disable. In the same way, any place you can specify --with*, you can specify --without*. -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
