2024-07-22 10:44:49 -06:00
|
|
|
## Tools {#tools}
|
|
|
|
|
|
|
|
### Go command {#go-command}
|
|
|
|
|
|
|
|
### Cgo {#cgo}
|
|
|
|
|
2024-05-29 20:37:43 -06:00
|
|
|
Cgo currently refuses to compile calls to a C function which has multiple
|
|
|
|
incompatible declarations. For instance, if `f` is declared as both `void f(int)`
|
|
|
|
and `void f(double)`, cgo will report an error instead of possibly generating an
|
|
|
|
incorrect call sequence for `f(0)`. New in this release is a better detector for
|
|
|
|
this error condition when the incompatible declarations appear in different
|
2024-07-24 11:30:28 -06:00
|
|
|
files. See [#67699](/issue/67699).
|