File tree 1 file changed +6
-0
lines changed
pycheribuild/projects/cross
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 41
41
CheriBSDTargetInfo ,
42
42
CompilationTargets ,
43
43
FreeBSDTargetInfo ,
44
+ Sel4MorelloTargetInfo ,
45
+ Sel4TargetInfo ,
44
46
)
45
47
from ...config .target_info import AbstractProject , CompilerType , CrossCompileTarget
46
48
from ...processutils import CompilerInfo
@@ -547,6 +549,8 @@ def triple_prefixes_for_binaries(self) -> "Iterable[str]":
547
549
include_version = False ),
548
550
CheriBSDTargetInfo .triple_for_target (CompilationTargets .CHERIBSD_X86_64 , self .config ,
549
551
include_version = False ),
552
+ Sel4TargetInfo .triple_for_target (CompilationTargets .SEL4_RISCV64 , self .config ,
553
+ include_version = False ),
550
554
]
551
555
return [x + "-" for x in triples ]
552
556
@@ -576,6 +580,8 @@ def triple_prefixes_for_binaries(self) -> "Iterable[str]":
576
580
triples = [
577
581
CheriBSDMorelloTargetInfo .triple_for_target (CompilationTargets .CHERIBSD_MORELLO_PURECAP , self .config ,
578
582
include_version = False ),
583
+ Sel4MorelloTargetInfo .triple_for_target (CompilationTargets .SEL4_MORELLO_NO_CHERI , self .config ,
584
+ include_version = False ),
579
585
]
580
586
return [x + "-" for x in triples ]
581
587
You can’t perform that action at this time.
0 commit comments