Changeset 8110bc3 for Jenkinsfile


Ignore:
Timestamp:
Jun 21, 2021, 3:16:00 PM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
0ee224b
Parents:
1f3d212
Message:

FullBuild? now uses gcc-10 instead of gcc-5 and jenkins understands the existance of gcc-11

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r1f3d212 r8110bc3  
    305305        BuildSettings(java.util.Collections$UnmodifiableMap param, String branch) {
    306306                switch( param.Compiler ) {
     307                        case 'gcc-11':
     308                                this.Compiler = new CC_Desc('gcc-11', 'g++-11', 'gcc-11', '-flto=auto')
     309                        break
     310                        case 'gcc-10':
     311                                this.Compiler = new CC_Desc('gcc-10', 'g++-10', 'gcc-10', '-flto=auto')
     312                        break
    307313                        case 'gcc-9':
    308314                                this.Compiler = new CC_Desc('gcc-9', 'g++-9', 'gcc-9', '-flto=auto')
     
    324330                        break
    325331                        case 'clang':
    326                                 this.Compiler = new CC_Desc('clang', 'clang++-10', 'gcc-9', '-flto=thin -flto-jobs=0')
     332                                this.Compiler = new CC_Desc('clang', 'clang++-10', 'gcc-10', '-flto=thin -flto-jobs=0')
    327333                        break
    328334                        default :
Note: See TracChangeset for help on using the changeset viewer.