Changeset 24eecab
- Timestamp:
- Jul 11, 2016, 1:53:50 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- deefdc1
- Parents:
- c84396a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rc84396a r24eecab 181 181 [$class: 'ChoiceParameterDefinition', \ 182 182 choices: '64-bit\n32-bit', \ 183 defaultValue: '64-bit', \ 183 184 description: 'The architecture to use for compilation', \ 184 185 name: 'buildArchitecture' \ … … 187 188 188 189 doPromoteBuild2DoLang = promoteBuild2DoLang == 'true' 189 190 191 echo "FULL BUILD = ${doPromoteBuild2DoLang}"192 echo buildArchitecture.getClass().toString()193 echo buildArchitecture.toString()194 195 190 architectureFlag = buildArchitecture == '64-bit' ? '-m64' : (buildArchitecture == '32-bit' ? '-m32' : 'ERROR') 196 echo "Architecture = ${buildArchitecture} (flag ${architectureFlag})" 197 echo 191 192 echo "FULL BUILD = ${doPromoteBuild2DoLang}\nArchitecture = ${buildArchitecture} (flag ${architectureFlag})\n\n" 198 193 199 194 //Compile using gcc-4.9
Note: See TracChangeset
for help on using the changeset viewer.