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.
Created on 2014年11月06日 21:12 by WanderingLogic, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg230765 - (view) | Author: Matt Frank (WanderingLogic) * | Date: 2014年11月06日 21:12 | |
changeset 92496:c2a53aa27cad (issue22359) broke cross builds. (Now "make touch; make" always tries to rebuild Include/graminit.h and Python/graminit.c by running "pgen". But "pgen" is a host executable and won't run on the build machine during a cross-build.) I think the problem is here, around Makefile.pre.in line 750. The dependency was on PGENSRCS and is now on PGEN. Will changing it back to PGENSRCS break something else? @@ -745,15 +746,13 @@ $(IO_OBJS): $(IO_H) -$(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGENSRCS) +$(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGEN) |
|||
| msg230767 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2014年11月06日 21:37 | |
Duplicate of #22625. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:09 | admin | set | github: 66998 |
| 2014年11月06日 21:37:12 | georg.brandl | set | status: open -> closed nosy: + georg.brandl messages: + msg230767 superseder: When cross-compiling, don’t try to execute binaries resolution: duplicate |
| 2014年11月06日 21:12:58 | WanderingLogic | create | |