From owner-freebsd-dtrace@FreeBSD.ORG Wed Jun 4 19:15:02 2014 Return-Path: Delivered-To: freebsd-dtrace@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5F5FE60 for ; Wed, 4 Jun 2014 19:15:02 +0000 (UTC) Received: from mail-oa0-x22e.google.com (mail-oa0-x22e.google.com [IPv6:2607:f8b0:4003:c02::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A253C25D9 for ; Wed, 4 Jun 2014 19:15:02 +0000 (UTC) Received: by mail-oa0-f46.google.com with SMTP id g18so8346939oah.19 for ; Wed, 04 Jun 2014 12:15:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=FNolzZIhx+pyRR9zrzcK+vkzyLPF/m4BCIQH3xbQ/Hc=; b=Oq8A3o+lNkaHyvhGKdH2SFVOsUdYxXSp3RvLnPZaPB1mDiLsvq8k74hUDuQeo06khD 7ocMDplHx+FWpA31YGWL7hdkS1FrIYuFsozDVNfyRsPEd1YQgwkHMVdygquPWB2RWMyv klwiaF0DYvszL6HRuEldXXm6lAaMcJIHXfC1Q5xlt2nZxYlMnNtIQ1FwnGz4uv9VuFvz H8sbBP0YRK+s4/XyAjm5I3rnngUbnen+2evCGp1MQ/ZpitDhfZGHRRx9HWqdlfTEvfaU kaXNwtGIQh4e/7DWOg7+5Q3KdN4xJG3xf+CKVrqE3geCFnFaGnMOTWaP6HfU1CAo0PAQ mYyQ== MIME-Version: 1.0 X-Received: by 10.182.231.197 with SMTP id ti5mr2347372obc.41.1401909301844; Wed, 04 Jun 2014 12:15:01 -0700 (PDT) Received: by 10.76.18.45 with HTTP; Wed, 4 Jun 2014 12:15:01 -0700 (PDT) In-Reply-To: References: Date: Wed, 4 Jun 2014 20:15:01 +0100 Message-ID: Subject: Re: DTrace probes for python 2.7.7 From: "Sevan / Venture37" To: "freebsd-dtrace@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-dtrace@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "A discussion list for developers working on DTrace in FreeBSD." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 19:15:02 -0000 I've merged the patch with lang/python27 port & now dealing with build issues with a little help from vg@ You can keep up on: https://bitbucket.org/sevan/python27-dtrace cc -DNDEBUG -L/usr/local/lib -pthread -o Include/pydtrace_offsets Include/pydtrace_offsets.c Include/pydtrace_offsets.sh OTHER Python/ceval.o Include/pydtrace_offsets > Include/pydtrace_offsets.h if test "/usr/sbin/dtrace" != "" ; then touch -r Python/ceval.o Python/ceval.o.ts_dtrace ; touch -r Modules/gcmodule.o Modules/gcmodule.o.ts_dtrace ; touch -r Objects/classobject.o Objects/classobject.o.ts_dtrace ; touch -r Objects/typeobject.o Objects/typeobject.o.ts_dtrace ; /usr/sbin/dtrace -o Python/pydtrace.o -DPYDTRACE_STACK_HELPER -I. -IInclude -I./../Include -I/usr/local/include -C -G -s Include/pydtrace.d Python/ceval.o Modules/gcmodule.o Objects/classobject.o Objects/typeobject.o ; touch -r Python/ceval.o.ts_dtrace Python/ceval.o ; touch -r Modules/gcmodule.o.ts_dtrace Modules/gcmodule.o ; touch -r Objects/classobject.o.ts_dtrace Objects/classobject.o ; touch -r Objects/typeobject.o.ts_dtrace Objects/typeobject.o ; rm Python/ceval.o.ts_dtrace ; rm Modules/gcmodule.o.ts_dtrace ; rm Objects/classobject.o.ts_dtrace ; rm Objects/typeobject.o.ts_dtrace ; else touch Python/pydtrace.o ; fi; dtrace: failed to compile script Include/pydtrace.d: line 26: typedef redeclared: __uint8_t Sevan / Venture37