Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e26b6a9

Browse files
committed
Merge branch 'hotfix/0.5.3.5'
2 parents 824c702 + 37d5bf2 commit e26b6a9

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
nuitka (0.5.3.5+ds-1) unstable; urgency=medium
2+
3+
* New upstream hotfix release.
4+
5+
-- Kay Hayen <[email protected]> Fri, 18 Jul 2014 07:28:17 +0200
6+
17
nuitka (0.5.3.4+ds-1) unstable; urgency=medium
28

39
* New upstream hotfix release.

nuitka/Options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
""" Options module """
1919

2020
version_string = """\
21-
Nuitka V0.5.3.4
21+
Nuitka V0.5.3.5
2222
Copyright (C) 2014 Kay Hayen."""
2323

2424
import logging

nuitka/build/SingleExe.scons

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -387,10 +387,6 @@ if os.name != "nt" and env["CXX"] is None:
387387
The g++ compiler '%s' (version %s) doesn't have the sufficient \
388388
version (>= 4.4).""" % ( orig_cxx, orig_cxx_version ) )
389389

390-
if show_scons_mode:
391-
print "Scons compiler: Using",
392-
print getExecutablePath( env[ "CXX" ], initial = False )
393-
394390
if env["CXX"] is None or \
395391
getExecutablePath( env[ "CXX" ], initial = False ) is None:
396392
if os.name == "nt":
@@ -410,6 +406,10 @@ b) Install MinGW to 'C:\\MinGW' then it is automatically picked up.
410406
else:
411407
sys.exit("Error, cannot locate suitable C++ compiler.")
412408

409+
if show_scons_mode:
410+
print "Scons compiler: Using",
411+
print getExecutablePath( env[ "CXX" ], initial = False )
412+
413413
gcc_mode = "g++" in env[ "CXX" ] or "clang" in env[ "CXX" ]
414414
msvc_mode = win_target and not gcc_mode
415415

tests/CPython26

Submodule CPython26 updated from 6122a12 to 621201b

tests/CPython27

Submodule CPython27 updated from 639a34c to 247c587

tests/CPython32

Submodule CPython32 updated from 1885daf to b63256e

0 commit comments

Comments
 (0)