Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Jan 2008 07:14:29 GMT
From:      John Birrell <jb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 132856 for review
Message-ID:  <200801090714.m097ETZT075506@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=132856

Change 132856 by jb@jb_freebsd1 on 2008/01/09 07:13:38

	Don't try to run ctfconvert on C++ objects. That isn't really required
	until after we're able to trace userland processes written in C.

Affected files ...

.. //depot/projects/dtrace/src/share/mk/bsd.lib.mk#13 edit
.. //depot/projects/dtrace/src/share/mk/sys.mk#19 edit

Differences ...

==== //depot/projects/dtrace/src/share/mk/bsd.lib.mk#13 (text+ko) ====

@@ -76,15 +76,9 @@
 
 .cc.po .C.po .cpp.po .cxx.po:
 	${CXX} ${PO_FLAG} ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}
-.if defined(CTFCONVERT)
-	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
-.endif
 
 .cc.So .C.So .cpp.So .cxx.So:
 	${CXX} ${PICFLAG} -DPIC ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}
-.if defined(CTFCONVERT)
-	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
-.endif
 
 .f.po:
 	${FC} -pg ${FFLAGS} -o ${.TARGET} -c ${.IMPSRC}

==== //depot/projects/dtrace/src/share/mk/sys.mk#19 (text+ko) ====

@@ -230,15 +230,9 @@
 
 .cc .cpp .cxx .C:
 	${CXX} ${CXXFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET}
-.if defined(CTFCONVERT)
-	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
-.endif
 
 .cc.o .cpp.o .cxx.o .C.o:
 	${CXX} ${CXXFLAGS} -c ${.IMPSRC}
-.if defined(CTFCONVERT)
-	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
-.endif
 
 .m.o:
 	${OBJC} ${OBJCFLAGS} -c ${.IMPSRC}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200801090714.m097ETZT075506>