Skip to content

Instantly share code, notes, and snippets.

@jstangroome
Created March 5, 2025 03:25
Show Gist options
  • Save jstangroome/c454bf6b6c72a4ddf4f6c01d28909dd6 to your computer and use it in GitHub Desktop.
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
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)
}
FROM golang:1.24.1-bookworm
COPY cgoenum.go go.mod ./
RUN go run ./
cgo: ./cgoenum.go:15:13: unexpected: -1-byte enum type - enum my_enum_e {}
module stangroome.com/cgoenum
go 1.23.1
@jstangroome
Copy link
Author

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 via typedef, 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:

enum my_enum_e {
	MY_ENUM_NONE,
	MY_ENUM_ALPHA,
	MY_ENUM_BETA
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment