projects
/
platform
/
upstream
/
scons.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ed6116
)
refer to cxx SCons.Tool and not c++
author
William Deegan
<bill@baddogconsulting.com>
Mon, 7 Aug 2017 18:17:13 +0000
(11:17 -0700)
committer
William Deegan
<bill@baddogconsulting.com>
Mon, 7 Aug 2017 18:17:13 +0000
(11:17 -0700)
src/engine/SCons/Tool/gxx.py
patch
|
blob
|
history
diff --git
a/src/engine/SCons/Tool/gxx.py
b/src/engine/SCons/Tool/gxx.py
index c5eb57973e6caac968005057f4a829981adca222..5bca179fefe2da8a8db0d11a3d2bd0b5c85c1790 100644
(file)
--- a/
src/engine/SCons/Tool/gxx.py
+++ b/
src/engine/SCons/Tool/gxx.py
@@
-41,7
+41,7
@@
import SCons.Tool
import SCons.Util
from . import gcc
-cplusplus = __import__(__package__+'.c++', globals(), locals(), ['*'])
+import cxx
compilers = ['g++']
@@
-52,7
+52,7
@@
def generate(env):
if 'CXX' not in env:
env['CXX'] = env.Detect(compilers) or compilers[0]
- c
plusplus
.generate(env)
+ c
xx
.generate(env)
# platform specific settings
if env['PLATFORM'] == 'aix':