diff --git a/python/dune/generator/cmakebuilder.py b/python/dune/generator/cmakebuilder.py index d3fbb3914b02e816dc2522f08ed54ec784dcce72..fb025b4880b76e3aa2def107692949bd3dc24184 100644 --- a/python/dune/generator/cmakebuilder.py +++ b/python/dune/generator/cmakebuilder.py @@ -594,7 +594,10 @@ class MakefileBuilder(Builder): # forward errors so that compilation failure will be caught buildScript.write('set -e\n') # add launcher before compiler - buildScript.write(launcher + " " + compilerCmd+"\n") + buildScript.write('if [ "$DUNE_CXX_COMPILER_LAUNCHER" == "" ]; then\n') + buildScript.write(' DUNE_CXX_COMPILER_LAUNCHER='+launcher+'\n') + buildScript.write('fi\n') + buildScript.write("$DUNE_CXX_COMPILER_LAUNCHER " + compilerCmd+"\n") # write linker commands with open(linkerSourceName, "r") as linkerSource: linkerCmd = linkerSource.read()