This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: installation of header files


Loren James Rittle writes:
> 
> >When passing a different gxx_include_dir from the toplevel make when
> 
> Could you please post the exact configure command you run
> that makes this happen.  I think I know the answer, but knowing
> exactly what breaks at top-level may help your cause of getting
> this patch in.  Please post a public follow up.

../src/configure \
	--enable-languages=c,c++,java,f77,proto,objc,ada \
	--prefix=/usr \
	--infodir=\''${prefix}/share/info'\' \
	--mandir='$${prefix}/share/man' \
	--with-gxx-include-dir=/usr/include/g++-v3-3.1 \
	--enable-shared \
	--with-gnu-as --with-gnu-ld \
	--with-system-zlib --enable-long-long --enable-nls \
	--without-included-gettext --enable-clocale=gnu \
	--enable-threads=posix --enable-java-gc=boehm \
	--enable-objc-gc \
	i386-linux

not sure about the quoting. In the toplevel Makefile I get:

infodir = '${prefix}/share/info'
mandir = ${prefix}/share/man

in gcc/Makefile:

infodir = ${prefix}/share/info
mandir = /usr/share/man

so I overwrite these macros when calling make.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]