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 christian.heimes
Recipients christian.heimes
Date 2007-12-13.17:52:30
SpamBayes Score 0.0032839335
Marked as misclassified No
Message-id <1197568351.3.0.317308643317.issue1613@psf.upfronthosting.co.za>
In-reply-to
Content
Makefile has a feature called VPATH that is often used for cross
platform compilation or the creation of a different flavor.

Example:

$ cd py3k
$ mkdir debug
$ cd debug
$ ../configure --with-pydebug
$ make
...
gcc -pthread -c -fno-strict-aliasing -g -Wall -Wstrict-prototypes  -I.
-IInclude -I../Include   -DPy_BUILD_CORE -o Python/mysnprintf.o
../Python/mysnprintf.c
gcc -pthread -g -Wall -Wstrict-prototypes   Parser/acceler.o
Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o
Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o
Parser/firstsets.o Parser/grammar.o Parser/pgen.o Objects/obmalloc.o
Python/mysnprintf.o Parser/tokenizer_pgen.o Parser/printgrammar.o
Parser/pgenmain.o -lpthread -ldl  -lutil -o Parser/pgen
gcc: Parser/tokenizer_pgen.o: No such file or directory
gcc: Parser/printgrammar.o: No such file or directory
gcc: Parser/pgenmain.o: No such file or directory
History
Date User Action Args
2007-12-13 17:52:31christian.heimessetspambayes_score: 0.00328393 -> 0.0032839335
recipients: + christian.heimes
2007-12-13 17:52:31christian.heimessetspambayes_score: 0.00328393 -> 0.00328393
messageid: <1197568351.3.0.317308643317.issue1613@psf.upfronthosting.co.za>
2007-12-13 17:52:31christian.heimeslinkissue1613 messages
2007-12-13 17:52:30christian.heimescreate