Created
March 5, 2025 03:25
-
-
Save jstangroome/c454bf6b6c72a4ddf4f6c01d28909dd6 to your computer and use it in GitHub Desktop.
Golang 1.24 cgo fails if the name of the C enum type is referenced
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
/* | |
typedef enum { | |
MY_ENUM_NONE, | |
MY_ENUM_ALPHA, | |
MY_ENUM_BETA | |
} my_enum_e; | |
*/ | |
import "C" | |
import "log" | |
func doit(e C.enum_my_enum_e) { | |
// remove this function and the call to it and the program runs | |
log.Printf("doit enum = %d", e) | |
} | |
func main() { | |
e := C.MY_ENUM_ALPHA | |
log.Printf("main enum = %d", e) | |
doit(e) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.24.1-bookworm | |
COPY cgoenum.go go.mod ./ | |
RUN go run ./ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cgo: ./cgoenum.go:15:13: unexpected: -1-byte enum type - enum my_enum_e {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module stangroome.com/cgoenum | |
go 1.23.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The error appears to directly correspond to dwarf.EnumType.Size being
-1
here:https://github.com/golang/go/blob/go1.24.1/src/cmd/cgo/gcc.go#L2522
It also seems to work fine if
my_enum_e
is declared as a enum directly*, instead of viatypedef
, suggesting the size detection issue is part of the dwarf.TypedefType handling here:https://github.com/golang/go/blob/go1.24.1/src/cmd/cgo/gcc.go#L2743
*Alternate enum definition: