fix the stage0 profile

This commit is contained in:
Sameer Rahmani 2023-04-21 13:13:50 +01:00
parent 731116026f
commit 2f691fbc8d
Signed by: lxsameer
GPG Key ID: B0A4AF28AB9FD90B
4 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@ from conf.utils import with_static_flags, get_version
class Cmake(ConanFile):
name = "cmake"
version = get_version("cmake")
settings = "os", "arch", "build_type"
settings = "os", "arch", "build_type", "compiler"
def source(self):
get(

View File

@ -122,7 +122,7 @@ CMAKE_OPTIONS = {
class LLVM(ConanFile):
name = "llvm"
settings = "os", "arch", "compiler", "build_type"
settings = "os", "arch", "build_type"
version = get_version("llvm")
def build_requirements(self):
@ -311,7 +311,7 @@ class LLVM(ConanFile):
cm.build(target="builtins")
cm.build(target="compiler-rt")
cm.build(target="install-distribution-stripped")
cm.build(target="install-distribution")
def package_info(self):
bindir = Path(os.path.join(self.package_folder, "bin"))

View File

@ -24,7 +24,7 @@ from conf.utils import with_static_flags, get_version
class Ninja(ConanFile):
name = "ninja"
settings = "os", "arch", "build_type"
settings = "os", "arch", "build_type", "compiler"
version = get_version("ninja")
def requirements(self):

View File

@ -6,7 +6,7 @@ arch=x86_64
build_type=RelWithDebInfo
compiler=clang
compiler.version=17
compiler.version=17-stage1
compiler.libcxx=libc++
clang-bootstrap/*:compiler=gcc