build.sh 194 B

1234567891011
  1. #!/usr/bin/env bash
  2. export CGO_CFLAGS_ALLOW=".*"
  3. export CGO_LDFLAGS_ALLOW=".*"
  4. go build
  5. export CGO_CFLAGS_ALLOW=
  6. export CGO_LDFLAGS_ALLOW=
  7. unset -v CGO_CFLAGS_ALLOW
  8. unset -v CGO_LDFLAGS_ALLOW