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): class Cmake(ConanFile):
name = "cmake" name = "cmake"
version = get_version("cmake") version = get_version("cmake")
settings = "os", "arch", "build_type" settings = "os", "arch", "build_type", "compiler"
def source(self): def source(self):
get( get(

View File

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

View File

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