This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Marc.Abramowitz
Recipients Garen, Marc.Abramowitz, belopolsky, benjamin.peterson, danchr, dhduvall, dmalcolm, eric.snow, fche, glyph, hazmat, jbaker, jcea, jmcp, laca, lasizoillo, loewis, mjw, movement, neologix, pitrou, rhettinger, robert.kern, ronaldoussoren, scox, serverhorror, sirg3, techtonik, twleung, wsanchez
Date 2012-02-27.22:27:40
SpamBayes Score 0.0004776206
Marked as misclassified No
Message-id <1330381661.08.0.427325025453.issue13405@psf.upfronthosting.co.za>
In-reply-to
Content
Re my comment in #154513, the following seems to fix that problem on FreeBSD 9.0:


[marca@freebsd9-0 ~/src/cpython-2011]$ hg diff Makefile.pre.in
diff -r 70dc1e48bd7f Makefile.pre.in
--- a/Makefile.pre.in	Mon Feb 27 22:43:17 2012 +0100
+++ b/Makefile.pre.in	Mon Feb 27 14:20:18 2012 -0800
@@ -632,7 +632,7 @@
 	else	touch $@ ; \
 	fi;
 
-Include/phelper_offsets.h: $(srcdir)/Include/phelper_offsets.c $(srcdir)/Python/ceval.o
+$(srcdir)/Include/phelper_offsets.h: $(srcdir)/Include/phelper_offsets.c $(srcdir)/Python/ceval.o
 	$(CC) $(PY_CFLAGS) -o $(srcdir)/Include/phelper_offsets \
 		$(srcdir)/Include/phelper_offsets.c
 	$(srcdir)/Include/phelper_offsets.sh $(DTRACE_NM) \

I'm now struggling with some other errors:

gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -DPy_BUILD_CORE  -c ./Modules/xxsubtype.c -o Modules/xxsubtype.o
if test "dtrace" != "" ; then  dtrace -o Python/dtrace.o -64  -C -G -s ./Include/pydtrace.d  Python/ceval.o Modules/gcmodule.o  Objects/classobject.o Objects/typeobject.o;  else    touch Python/dtrace.o ;  fi;
gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -DPy_BUILD_CORE -o ./Include/phelper_offsets  ./Include/phelper_offsets.c
./Include/phelper_offsets.sh OTHER  ./Python/ceval.o ./Include/phelper_offsets >  ./Include/phelper_offsets.h
if test "dtrace" != "" ; then  dtrace -o Python/phelper.o -DPHELPER -64  -I. -IInclude -I./Include -C -G -s ./Include/phelper.d ;  else	touch Python/phelper.o ;  fi;
dtrace: failed to compile script ./Include/phelper.d: line 3: useless declaration
*** Error code 1
History
Date User Action Args
2012-02-27 22:27:41Marc.Abramowitzsetrecipients: + Marc.Abramowitz, loewis, rhettinger, jcea, ronaldoussoren, belopolsky, pitrou, wsanchez, movement, techtonik, benjamin.peterson, serverhorror, glyph, laca, twleung, jbaker, robert.kern, sirg3, danchr, dhduvall, dmalcolm, mjw, Garen, neologix, lasizoillo, fche, hazmat, eric.snow, jmcp, scox
2012-02-27 22:27:41Marc.Abramowitzsetmessageid: <1330381661.08.0.427325025453.issue13405@psf.upfronthosting.co.za>
2012-02-27 22:27:40Marc.Abramowitzlinkissue13405 messages
2012-02-27 22:27:40Marc.Abramowitzcreate