updated setup.py to use msvc 9.0 (2008)
This commit is contained in:
parent
fd5f1bf80b
commit
0800513b2d
|
@ -40,6 +40,7 @@
|
||||||
incoming connection
|
incoming connection
|
||||||
* added more detailed instrumentation of the disk I/O thread
|
* added more detailed instrumentation of the disk I/O thread
|
||||||
|
|
||||||
|
* updated compiler to msvc 2008 for python binding
|
||||||
* restored default fail_limit to unlimited on all trackers
|
* restored default fail_limit to unlimited on all trackers
|
||||||
* fixed rate limit bug for DHT
|
* fixed rate limit bug for DHT
|
||||||
* fixed SOCKS5 bug for routing UDP packets
|
* fixed SOCKS5 bug for routing UDP packets
|
||||||
|
|
|
@ -30,7 +30,9 @@ def arch():
|
||||||
if platform.system() == 'Windows':
|
if platform.system() == 'Windows':
|
||||||
# on windows, build using bjam and build an installer
|
# on windows, build using bjam and build an installer
|
||||||
import shutil
|
import shutil
|
||||||
if os.system('bjam boost=source link=static geoip=static boost-link=static release msvc-7.1 optimization=space') != 0:
|
# msvc 9.0 (2008) is the official windows compiler for python 2.6
|
||||||
|
# http://docs.python.org/whatsnew/2.6.html#build-and-c-api-changes
|
||||||
|
if os.system('bjam boost=source link=static geoip=static boost-link=static release msvc-9.0 optimization=space') != 0:
|
||||||
print 'build failed'
|
print 'build failed'
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
try: os.mkdir(r'build')
|
try: os.mkdir(r'build')
|
||||||
|
|
Loading…
Reference in New Issue