Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision bd34bcf544405c60b796e8a62cf13d0f0385f331)
+++ Jenkinsfile	(revision 6802a5ff5107f1c2cfcc19d6724a0a0b922e9cca)
@@ -146,4 +146,12 @@
 	do_publish		= param_publish 	.toBoolean()
 
+	echo """Compiler 			: ${compiler.name} (${compiler.cpp_cc}/${compiler.cfa_cc})
+Architecture		: ${architecture}
+Run All Tests		: ${ param_allTests.toString() }
+Run Benchmark		: ${ param_benchmark.toString() }
+Build Documentation	: ${ param_doc.toString() }
+Publish			: ${ param_publish.toString() }
+"""
+
 	collect_git_info()
 }
@@ -172,10 +180,10 @@
 	public String cc_name
 	public String cpp_cc
-	public String cfa_backend_cc
-
-	CC_Desc(String cc_name, String cpp_cc, String cfa_backend_cc) {
+	public String cfa_cc
+
+	CC_Desc(String cc_name, String cpp_cc, String cfa_cc) {
 		this.cc_name = cc_name
 		this.cpp_cc = cpp_cc
-		this.cfa_backend_cc = cfa_backend_cc
+		this.cfa_cc = cfa_cc
 	}
 }
@@ -193,5 +201,5 @@
 		break
 		case 'clang':
-			return new CC_Desc('gcc-6', 'clang', 'gcc-6')
+			return new CC_Desc('clang', 'clang++', 'gcc-6')
 		break
 		default 
@@ -238,5 +246,5 @@
 		//escapes the sandbox
 		//Also specify the compiler by hand
-		sh "./configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_backend_cc} --prefix=${install_dir} --enable-silent-rules --quiet"
+		sh "./configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --prefix=${install_dir} --enable-silent-rules --quiet"
 
 		//Compile the project
