diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-02-15 00:58:14 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-02-15 00:58:14 +0900 |
| commit | f9c31df94d67e0bdabf297bfba74c8affd6cdb4e (patch) | |
| tree | 0966676dea992dd5e6fdca1b97fbdf8e9dbedf9d /internal | |
| parent | 4f570cc5c96192a40f210db6ea5f3210813095ad (diff) | |
internal/rosa: fixed-size toolchain enum
This fits in an inlined uint32 IR value.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/rosa/rosa.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/rosa/rosa.go b/internal/rosa/rosa.go index 1e02fac2..53442ce0 100644 --- a/internal/rosa/rosa.go +++ b/internal/rosa/rosa.go @@ -99,7 +99,7 @@ func earlyCXXFLAGS() string { } // Toolchain denotes the infrastructure to compile a [pkg.Artifact] on. -type Toolchain uintptr +type Toolchain uint32 const ( // _toolchainBusybox denotes a busybox installation from the busyboxBin |
