From: Nicholas Nethercote Date: Fri, 11 Mar 2005 04:36:46 +0000 (+0000) Subject: Remove now-irrelevant FAQ. X-Git-Tag: svn/VALGRIND_3_0_0~1046 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b03e16804239dc3f055635c4738bafef6ce84a06;p=thirdparty%2Fvalgrind.git Remove now-irrelevant FAQ. (This change went into the text FAQ.txt a while ago.) git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3272 --- diff --git a/docs/xml/FAQ.xml b/docs/xml/FAQ.xml index 96897d654c..1a3ad3d305 100644 --- a/docs/xml/FAQ.xml +++ b/docs/xml/FAQ.xml @@ -173,86 +173,6 @@ - - - My program dies like this: - - - -% error: /lib/librt.so.1: symbol __pthread_clock_settime, - version GLIBC_PRIVATE not defined in file libpthread.so.0 with link time reference - - - This is a total swamp. Nevertheless there is a way out. - It's a problem which is not easy to fix. Really the problem is - that /lib/librt.so.1 refers to some - symbols __pthread_clock_settime and - __pthread_clock_gettime in - /lib/libpthread.so which are not intended - to be exported, ie they are private. - - Best solution is to ensure your program does not use - /lib/librt.so.1. - - However ... since you're probably not using it directly, - or even knowingly, that's hard to do. You might instead be - able to fix it by playing around with - coregrind/vg_libpthread.vs. Things to - try: - - Remove this: - -GLIBC_PRIVATE { - __pthread_clock_gettime; - __pthread_clock_settime; -}; - - -or maybe remove this - -GLIBC_2.2.3 { - __pthread_clock_gettime; - __pthread_clock_settime; -} GLIBC_2.2; - - -or maybe add this: - -GLIBC_2.2.4 { - __pthread_clock_gettime; - __pthread_clock_settime; -} GLIBC_2.2; - -GLIBC_2.2.5 { - __pthread_clock_gettime; - __pthread_clock_settime; -} GLIBC_2.2; - - - or some combination of the above. After each change you - need to delete coregrind/libpthread.so and - do make && make - install. - - I just don't know if any of the above will work. If you - can find a solution which works, I would be interested to hear - it. - - To which someone replied: - -I deleted this: - -GLIBC_2.2.3 { - __pthread_clock_gettime; - __pthread_clock_settime; -} GLIBC_2.2; - -and it worked. - - - - -