conan: bump clang to version 14
This commit is contained in:
parent
e4c14a09a4
commit
21a4de4c66
@ -3,7 +3,7 @@ os=Linux
|
|||||||
arch=x86_64
|
arch=x86_64
|
||||||
|
|
||||||
compiler=clang
|
compiler=clang
|
||||||
compiler.version=13
|
compiler.version=14
|
||||||
compiler.libcxx=libc++
|
compiler.libcxx=libc++
|
||||||
|
|
||||||
build_type=Debug
|
build_type=Debug
|
||||||
@ -13,5 +13,5 @@ build_type=Debug
|
|||||||
[build_requires]
|
[build_requires]
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
CC=clang-13
|
CC=clang-14
|
||||||
CXX=clang++-13
|
CXX=clang++-14
|
||||||
|
@ -3,7 +3,7 @@ os=Linux
|
|||||||
arch=x86_64
|
arch=x86_64
|
||||||
|
|
||||||
compiler=clang
|
compiler=clang
|
||||||
compiler.version=13
|
compiler.version=14
|
||||||
compiler.libcxx=libc++
|
compiler.libcxx=libc++
|
||||||
|
|
||||||
build_type=Release
|
build_type=Release
|
||||||
@ -13,5 +13,7 @@ build_type=Release
|
|||||||
[build_requires]
|
[build_requires]
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
CC=clang-13
|
CC=clang-14
|
||||||
CXX=clang++-13
|
CXX=clang++-14
|
||||||
|
CFLAGS="-flto"
|
||||||
|
CXXFLAGS="-flto"
|
||||||
|
9
init.py
9
init.py
@ -93,6 +93,7 @@ OPTIONS['sanitizer'] = Option(
|
|||||||
require=[
|
require=[
|
||||||
'release'
|
'release'
|
||||||
],
|
],
|
||||||
|
config='sanitizer',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -226,7 +227,13 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
accumulated = [f'"-D{key}={val}"' for key, val in accum.vars.items()] + accum.args
|
accumulated = [f'"-D{key}={val}"' for key, val in accum.vars.items()] + accum.args
|
||||||
|
|
||||||
conan_build_profile = 'x86_64-gcc-linux-release'
|
conan_build_profile = '-'.join([
|
||||||
|
'x86_64',
|
||||||
|
accum.compiler,
|
||||||
|
'linux',
|
||||||
|
accum.config
|
||||||
|
])
|
||||||
|
|
||||||
conan_host_profile = '-'.join([
|
conan_host_profile = '-'.join([
|
||||||
accum.arch,
|
accum.arch,
|
||||||
accum.compiler,
|
accum.compiler,
|
||||||
|
Loading…
Reference in New Issue
Block a user