Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

seL4: Add new compilation targets #368

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 47 additions & 1 deletion pycheribuild/config/compilation_targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -778,12 +778,53 @@ def localbase(self) -> Path:
def is_baremetal(cls):
return True

@classmethod
def triple_for_target(cls, target: "CrossCompileTarget", config: "CheriConfig", *, include_version: bool):
return target.cpu_architecture.value + "-none-elf"

@classmethod
def uses_softfloat_by_default(cls, xtarget: "CrossCompileTarget"):
# Note: RISC-V Baremetal/FreeRTOS currently only supports softfloat
return xtarget.is_riscv(include_purecap=True)


class Sel4TargetInfo(BaremetalClangTargetInfo):
shortname: str = "sel4"

@classmethod
def is_sel4(cls) -> bool:
return True

@property
def sysroot_dir(self):
return self.config.sysroot_output_root / self.config.default_cheri_sdk_directory_name / (
self.target.get_rootfs_target().generic_arch_suffix) / self.target_triple

@classmethod
def _get_compiler_project(cls) -> "type[BuildLLVMMonoRepoBase]":
from ..projects.cross.llvm import BuildCheriLLVM
return BuildCheriLLVM


class Sel4MorelloTargetInfo(BaremetalClangTargetInfo):
shortname: str = "sel4"
uses_morello_llvm: bool = True

@classmethod
def is_sel4(cls) -> bool:
return True

@property
def sysroot_dir(self):
return self.config.sysroot_output_root / self.config.default_morello_sdk_directory_name / (
self.target.get_rootfs_target().generic_arch_suffix) / self.target_triple

@classmethod
def _get_compiler_project(cls) -> "type[BuildLLVMMonoRepoBase]":
from ..projects.cross.llvm import BuildMorelloLLVM
return BuildMorelloLLVM


class NewlibBaremetalTargetInfo(BaremetalClangTargetInfo):
shortname = "Newlib"
os_prefix = "baremetal-newlib-"
Expand Down Expand Up @@ -1192,6 +1233,11 @@ class CompilationTargets(BasicCompilationTargets):
RTEMS_RISCV64 = CrossCompileTarget("riscv64", CPUArchitecture.RISCV64, RTEMSTargetInfo)
RTEMS_RISCV64_PURECAP = CrossCompileTarget("riscv64-purecap", CPUArchitecture.RISCV64, RTEMSTargetInfo,
is_cheri_purecap=True, non_cheri_target=RTEMS_RISCV64)
# seL4 targets
SEL4_RISCV64 = CrossCompileTarget("riscv64", CPUArchitecture.RISCV64, Sel4TargetInfo)
SEL4_MORELLO_NO_CHERI = CrossCompileTarget("morello-aarch64", CPUArchitecture.AARCH64,
Sel4MorelloTargetInfo)
ALL_SUPPORTED_SEL4_TARGETS = (SEL4_RISCV64, SEL4_MORELLO_NO_CHERI)

ALL_CHERIBSD_RISCV_TARGETS = (CHERIBSD_RISCV_PURECAP, CHERIBSD_RISCV_HYBRID, CHERIBSD_RISCV_NO_CHERI)
ALL_CHERIBSD_NON_MORELLO_TARGETS = (*ALL_CHERIBSD_RISCV_TARGETS, CHERIBSD_AARCH64, CHERIBSD_X86_64)
Expand Down Expand Up @@ -1222,7 +1268,7 @@ class CompilationTargets(BasicCompilationTargets):
ALL_SUPPORTED_CHERIBSD_AND_HOST_TARGETS = ALL_SUPPORTED_CHERIBSD_TARGETS + BasicCompilationTargets.ALL_NATIVE
ALL_FREEBSD_AND_CHERIBSD_TARGETS = ALL_SUPPORTED_CHERIBSD_TARGETS + ALL_SUPPORTED_FREEBSD_TARGETS

ALL_SUPPORTED_BAREMETAL_TARGETS = ALL_NEWLIB_TARGETS + ALL_PICOLIBC_TARGETS
ALL_SUPPORTED_BAREMETAL_TARGETS = ALL_NEWLIB_TARGETS + ALL_PICOLIBC_TARGETS + ALL_SUPPORTED_SEL4_TARGETS
ALL_SUPPORTED_RTEMS_TARGETS = (RTEMS_RISCV64, RTEMS_RISCV64_PURECAP)
ALL_SUPPORTED_CHERIBSD_AND_BAREMETAL_AND_HOST_TARGETS = \
ALL_SUPPORTED_CHERIBSD_AND_HOST_TARGETS + ALL_SUPPORTED_BAREMETAL_TARGETS
Expand Down
6 changes: 6 additions & 0 deletions pycheribuild/projects/cross/llvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
CheriBSDTargetInfo,
CompilationTargets,
FreeBSDTargetInfo,
Sel4MorelloTargetInfo,
Sel4TargetInfo,
)
from ...config.target_info import AbstractProject, CompilerType, CrossCompileTarget
from ...processutils import CompilerInfo
Expand Down Expand Up @@ -547,6 +549,8 @@ def triple_prefixes_for_binaries(self) -> "Iterable[str]":
include_version=False),
CheriBSDTargetInfo.triple_for_target(CompilationTargets.CHERIBSD_X86_64, self.config,
include_version=False),
Sel4TargetInfo.triple_for_target(CompilationTargets.SEL4_RISCV64, self.config,
include_version=False),
]
return [x + "-" for x in triples]

Expand Down Expand Up @@ -576,6 +580,8 @@ def triple_prefixes_for_binaries(self) -> "Iterable[str]":
triples = [
CheriBSDMorelloTargetInfo.triple_for_target(CompilationTargets.CHERIBSD_MORELLO_PURECAP, self.config,
include_version=False),
Sel4MorelloTargetInfo.triple_for_target(CompilationTargets.SEL4_MORELLO_NO_CHERI, self.config,
include_version=False),
]
return [x + "-" for x in triples]

Expand Down
Loading