Changeset 93fe3154 for Jenkinsfile
- Timestamp:
- Dec 13, 2018, 4:29:37 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- ca0f5e34
- Parents:
- 95d0a5db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r95d0a5db r93fe3154 114 114 } 115 115 116 sh "${SrcDir}/configure CXX=${Settings.Compiler. cpp_cc} ${Settings.Architecture.flags} ${targets} --with-backend-compiler=${Settings.Compiler.cfa_cc} --quiet"116 sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} ${targets} --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 cc_name238 public String cpp_cc239 public String cfa_cc240 241 CC_Desc(String cc_name, String cpp_cc, String cfa_cc) {242 this. cc_name = cc_name243 this. cpp_cc = cpp_cc244 this. cfa_cc = cfa_cc237 public String name 238 public String CC 239 public String CXX 240 241 CC_Desc(String name, String CC, String CXX) { 242 this.name = name 243 this.CC = CC 244 this.CXX = CXX 245 245 } 246 246 } … … 309 309 310 310 def full = param.RunAllTests ? " (Full)" : "" 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})311 this.DescShort = "${ this.Compiler.name }:${ this.Architecture.name }${full}" 312 313 this.DescLong = """Compiler : ${ this.Compiler.name } (${ this.Compiler.CXX }/${ this.Compiler.CC }) 314 314 Architecture : ${ this.Architecture.name } 315 315 Arc Flags : ${ this.Architecture.flags }
Note: See TracChangeset
for help on using the changeset viewer.