Changes in Jenkinsfile [93fe3154:7428ad9]
- File:
-
- 1 edited
-
Jenkinsfile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r93fe3154 r7428ad9 114 114 } 115 115 116 sh "${SrcDir}/configure CXX=${Settings.Compiler. CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} ${targets} --quiet"116 sh "${SrcDir}/configure CXX=${Settings.Compiler.cpp_cc} ${Settings.Architecture.flags} ${targets} --with-backend-compiler=${Settings.Compiler.cfa_cc} --quiet" 117 117 118 118 //Compile the project … … 235 235 //Description of a compiler (Must be serializable since pipelines are persistent) 236 236 class CC_Desc implements Serializable { 237 public String name238 public String CC239 public String CXX240 241 CC_Desc(String name, String CC, String CXX) {242 this. name =name243 this. CC = CC244 this. CXX = CXX237 public String cc_name 238 public String cpp_cc 239 public String cfa_cc 240 241 CC_Desc(String cc_name, String cpp_cc, String cfa_cc) { 242 this.cc_name = cc_name 243 this.cpp_cc = cpp_cc 244 this.cfa_cc = cfa_cc 245 245 } 246 246 } … … 309 309 310 310 def full = param.RunAllTests ? " (Full)" : "" 311 this.DescShort = "${ this.Compiler. name }:${ this.Architecture.name }${full}"312 313 this.DescLong = """Compiler : ${ this.Compiler. name } (${ this.Compiler.CXX }/${ this.Compiler.CC})311 this.DescShort = "${ this.Compiler.cc_name }:${ this.Architecture.name }${full}" 312 313 this.DescLong = """Compiler : ${ this.Compiler.cc_name } (${ this.Compiler.cpp_cc }/${ this.Compiler.cfa_cc }) 314 314 Architecture : ${ this.Architecture.name } 315 315 Arc Flags : ${ this.Architecture.flags }
Note:
See TracChangeset
for help on using the changeset viewer.