summaryrefslogtreecommitdiffstats
path: root/test/Fortran/link-with-cxx.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Fortran/link-with-cxx.py')
-rw-r--r--test/Fortran/link-with-cxx.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Fortran/link-with-cxx.py b/test/Fortran/link-with-cxx.py
index a29558e..8d05c5c 100644
--- a/test/Fortran/link-with-cxx.py
+++ b/test/Fortran/link-with-cxx.py
@@ -70,7 +70,8 @@ def copier(target, source, env):
s = str(source[0])
t = str(target[0])
open(t, 'wb').write(open(s, 'rb').read())
-env = Environment(CXX = r'%(_python_)s test_linker.py',
+env = Environment(tools = ['gcc', 'gnulink', 'fortran'],
+ CXX = r'%(_python_)s test_linker.py',
CXXCOM = Action(copier),
SMARTLINK = SCons.Tool.link.smart_link,
LINK = r'$SMARTLINK',