Date: Sat, 8 May 2010 13:41:02 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org Subject: svn commit: r207778 - in stable/6/lib/libthread_db: . arch/arm Message-ID: <201005081341.o48Df2bC030286@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Sat May 8 13:41:01 2010 New Revision: 207778 URL: http://svn.freebsd.org/changeset/base/207778 Log: MFC r173703(cognet): Add arm support in libthread_db Added: stable/6/lib/libthread_db/arch/arm/ - copied from r173703, head/lib/libthread_db/arch/arm/ Modified: stable/6/lib/libthread_db/Makefile Directory Properties: stable/6/lib/libthread_db/ (props changed) Modified: stable/6/lib/libthread_db/Makefile ============================================================================== --- stable/6/lib/libthread_db/Makefile Sat May 8 13:23:57 2010 (r207777) +++ stable/6/lib/libthread_db/Makefile Sat May 8 13:41:01 2010 (r207778) @@ -6,7 +6,11 @@ LIB= thread_db SHLIB_MAJOR= 2 SRCS= thread_db.c SRCS+= libpthread_db.c libpthread_md.c +# libc_r not supported on arm +.if ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "ia64" && \ + ${MACHINE_ARCH} != "poewrpc" && !defined(NO_LIBC_R) SRCS+= libc_r_db.c libc_r_md.c +.endif SRCS+= libthr_db.c INCS= thread_db.h WARNS?= 6
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005081341.o48Df2bC030286>