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.

classification
Title: ccpython.cc build failure in sep. tree
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: nascheme Nosy List: gvanrossum, nascheme
Priority: normal Keywords:

Created on 2001-04-04 14:50 by anonymous, last changed 2022-04-10 16:03 by admin. This issue is now closed.

Messages (3)
msg4170 - (view) Author: Nobody/Anonymous (nobody) Date: 2001-04-04 14:50
When building in a separate directory from the source 
tree, ccpython.cc cannot be built since the rule in 
Modules/Makefile.pre.in is currently:

ccpython.o: ccpython.cc
	$(CXX) $(CFLAGS) -c $*.cc

instead of

ccpython.o: ccpython.cc
	$(CXX) $(CFLAGS) -c $<

Thanks,

Guy.
msg4171 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2001-04-10 15:53
Logged In: YES 
user_id=6380

Assigned to Neil Schemenauer, the build expert.

Neil, this looks like a trivial fix.  If you agree, can you
check it in?
msg4172 - (view) Author: Neil Schemenauer (nascheme) * (Python committer) Date: 2001-04-10 16:05
Logged In: YES 
user_id=35752

This bug must be referring to an old version of Python. 
There
is no longer a Modules/Makefile.pre.in file.  Making
ccpython.o
using a separate build directory seems to work fine for me.
Setting status to "closed" and resolution to "fixed".  I
hope that's
the correct flags.
History
Date User Action Args
2022-04-10 16:03:55adminsetgithub: 34274
2001-04-04 14:50:54anonymouscreate