Changeset eb0938ca


Ignore:
Timestamp:
Aug 17, 2018, 1:06:50 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
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
Message:

Fixed typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r7e288c4 reb0938ca  
    215215
    216216//Description of an architecture (Must be serializable since pipelines are persistent)
    217 class CC_Desc implements Serializable {
     217class Arch_Desc implements Serializable {
    218218        public String name
    219219        public String flags
     
    228228        switch( arch ) {
    229229                case 'x64':
    230                         return new CC_Desc('x64', '--host=x86_64')
     230                        return new Arch_Desc('x64', '--host=x86_64')
    231231                break
    232232                case 'x86':
    233                         return new CC_Desc('x86', '--host=i386')
     233                        return new Arch_Desc('x86', '--host=i386')
    234234                break
    235235                default :
Note: See TracChangeset for help on using the changeset viewer.