Changeset eb0938ca
- Timestamp:
- Aug 17, 2018, 1:06:50 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- c2cec21d
- Parents:
- 7e288c4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r7e288c4 reb0938ca 215 215 216 216 //Description of an architecture (Must be serializable since pipelines are persistent) 217 class CC_Desc implements Serializable {217 class Arch_Desc implements Serializable { 218 218 public String name 219 219 public String flags … … 228 228 switch( arch ) { 229 229 case 'x64': 230 return new CC_Desc('x64', '--host=x86_64')230 return new Arch_Desc('x64', '--host=x86_64') 231 231 break 232 232 case 'x86': 233 return new CC_Desc('x86', '--host=i386')233 return new Arch_Desc('x86', '--host=i386') 234 234 break 235 235 default :
Note: See TracChangeset
for help on using the changeset viewer.