This is the mail archive of the libc-help@sourceware.org mailing list for the glibc 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: questions about bug 4737 (fork is not async-signal-safe)


Jonathan Nieder wrote:

> 	git clone git://sourceware.org/git/glibc.git
> 	mkdir glibc-build
> 	cd glibc-build
> 	../glibc/configure --prefix=$HOME/opt/glibc
> 	make check
> 	make install
> 	LD_LIBRARY_PATH=$HOME/opt/glibc:/usr/local/lib:/usr/lib:/lib
> 	export LD_LIBRARY_PATH
> 	elf/ld.so /path/to/app arguments

Erm, those last three lines should have been

	LD_LIBRARY_PATH=$HOME/opt/glibc/lib:/usr/local/lib:/usr/lib:/lib
	export LD_LIBRARY_PATH
	elf/ld.so /path/to/app arguments

so the libc.so that is supposed to be being tested is actually listed
in LD_LIBRARY_PATH. :)  You can test that the setting is right with
ld.so --list or ldd.  Sorry for the trouble.


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