Add latest clang, gcc, vs, and xcode toolsets available in cloud CI.

This commit is contained in:
Rene Rivera
2017-05-21 22:40:44 -05:00
parent e7b3f811d8
commit 08a5e5888b

View File

@@ -63,6 +63,14 @@ toolset_info = {
'toolset' : 'clang',
'version' : ''
},
'clang-4.0' : {
'deb' : ["http://apt.llvm.org/trusty/","llvm-toolchain-trusty-4.0","main"],
'apt-key' : ['http://apt.llvm.org/llvm-snapshot.gpg.key'],
'package' : 'clang-4.0',
'command' : 'clang++-4.0',
'toolset' : 'clang',
'version' : ''
},
'gcc-4.7' : {
'ppa' : ["ppa:ubuntu-toolchain-r/test"],
'package' : 'g++-4.7',
@@ -106,6 +114,13 @@ toolset_info = {
'toolset' : 'gcc',
'version' : ''
},
'gcc-7' : {
'ppa' : ["ppa:ubuntu-toolchain-r/test"],
'package' : 'g++-7',
'command' : 'g++-7',
'toolset' : 'gcc',
'version' : ''
},
'vs-2008' : {
'toolset' : 'msvc',
'command' : '',
@@ -131,6 +146,11 @@ toolset_info = {
'command' : '',
'version' : '14.0'
},
'vs-2017' : {
'toolset' : 'msvc',
'command' : '',
'version' : '14.1'
},
'xcode-6.1' : {
'command' : 'clang++',
'toolset' : 'clang',
@@ -176,6 +196,21 @@ toolset_info = {
'toolset' : 'clang',
'version' : ''
},
'xcode-8.1' : {
'command' : 'clang++',
'toolset' : 'clang',
'version' : ''
},
'xcode-8.2' : {
'command' : 'clang++',
'toolset' : 'clang',
'version' : ''
},
'xcode-8.3' : {
'command' : 'clang++',
'toolset' : 'clang',
'version' : ''
},
}
class SystemCallError(Exception):