Date: Tue, 22 Sep 2009 13:15:51 GMT From: Stanislav Sedov <stas@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 168772 for review Message-ID: <200909221315.n8MDFpCt048947@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=168772 Change 168772 by stas@stas_yandex on 2009/09/22 13:15:47 - Do not try to read stabs on amd64, it doesn't work well. The reader is broken on amd64-linux as well. Affected files ... .. //depot/projects/valgrind/coregrind/m_debuginfo/readelf.c#10 edit Differences ... ==== //depot/projects/valgrind/coregrind/m_debuginfo/readelf.c#10 (text+ko) ==== @@ -2007,9 +2007,9 @@ } /* Read the stabs and/or dwarf2 debug information, if any. It - appears reading stabs stuff on amd64-linux doesn't work, so - we ignore it. */ -# if !defined(VGP_amd64_linux) + appears reading stabs stuff on amd64-linux and amd64-freebsd + doesn't work, so we ignore it. */ +# if !defined(VGP_amd64_linux) && !defined(VGP_amd64_freebsd) if (stab_img && stabstr_img) { ML_(read_debuginfo_stabs) ( di, stab_img, stab_sz, stabstr_img, stabstr_sz );
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909221315.n8MDFpCt048947>