tinylib / msgp

A Go code generator for MessagePack / msgpack.org[Go]
MIT License
1.79k stars 190 forks source link

Support illumos. #343

Closed jperkin closed 6 months ago

jperkin commented 6 months ago

You may prefer to change this completely to instead be !windows, I didn't do this as I don't know your reasoning for having a static OS list, but it would avoid having to add other OS manually in the future.

I cross-compiled this on macOS:

$ GOOS=illumos GOARCH=amd64 go test -c

and ran the resulting msgp.test on an illumos host:

$ ./msgp.test 
PASS

to verify.

Thanks!