You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Underlying `go build` commands can pass custom `CFLAGS` and `LDFLAGS` to
CGO invocations, which GoPy uses in order to pass some of its own
command-line arguments to builds.
However, there are cases where additional, build-specific parameters may
need to be used (e.g. in the case where we're linking against a static
library which itself links to other dynamic libraries, which aren't set
as options in the packages themselves); this commit respects any existing
uses of the `CGO_CFLAGS` and `CGO_LDFLAGS` environment variables, and
appends their values to ones used internally by GoPy if needed.
0 commit comments