2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 16:32:16 +00:00

*** empty log message ***

[SVN r28478]
This commit is contained in:
Bruno da Silva de Oliveira
2005-04-25 23:49:04 +00:00
parent c492551111
commit 2bbff71109

View File

@@ -16,7 +16,7 @@ import time
if sys.platform == 'win32':
includes = '-ID:/programming/libraries/boost-cvs/boost -ID:/Bin/Python/include'
build_pyste_cmd = 'python ../src/Pyste/pyste.py --cache-dir=cache %s ' % includes
build_pyste_cmd = 'python ../src/Pyste/pyste.py --pyste-ns=pyste --cache-dir=cache %s ' % includes
compile_single_cmd = 'cl /nologo /GR /GX -c %s -I. ' % includes
link_single_cmd = 'link /nologo /DLL '\
'/libpath:D:/programming/libraries/boost-cvs/lib /libpath:D:/Bin/Python/libs '\
@@ -29,7 +29,7 @@ if sys.platform == 'win32':
elif sys.platform == 'linux2':
build_pyste_cmd = 'python ../src/Pyste/pyste.py -I. '
compile_single_cmd = 'g++ -shared -c -I. -I/usr/include/python2.2 '
compile_single_cmd = 'g++ -shared -c -I. -I/usr/include/python2.4 '
link_single_cmd = 'g++ -shared -o _%s.so -lboost_python '
obj_ext = 'o'