From b20d814a24d303376088fa83dd15f0256bac6790 Mon Sep 17 00:00:00 2001 From: Anton Mitrokhin Date: Tue, 23 Jun 2015 17:09:07 +0300 Subject: [PATCH] fix unitialized default compiler_exe --- alloy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/alloy.py b/alloy.py index 627d6460..e1f5211b 100755 --- a/alloy.py +++ b/alloy.py @@ -631,7 +631,9 @@ def validation_run(only, only_targets, reference_branch, number, notify, update, print_debug("Warning: target " + stability.target + " is not supported in LLVM " + LLVM[i] + "\n", False, stability_log) continue + # *always* specify default values for global variables on each loop iteration stability.wrapexe = "" + stability.compiler_exe = "" # choosing right compiler for a given target # sometimes clang++ is not avaluable. if --ispc-build-compiler = gcc we will pass in g++ compiler if options.ispc_build_compiler == "gcc":