diff options
author | Anjan Nath <kaludios@gmail.com> | 2022-06-05 20:57:28 +0530 |
---|---|---|
committer | atanarjuat <atanarjuat@example.com> | 2022-07-28 02:03:12 -0400 |
commit | 96de18df48af86b301c1323f50312e46c6802505 (patch) | |
tree | 68700f070905a0731b4ef7920e77054b65f8e3e5 | |
parent | 9fd237c8803223d3671c35da584713dbeecc1ea8 (diff) |
disable CGO for building obfsvpn client
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ certs: build-client: go get ./... - go build -o obfsvpn-client ./cmd/client/ + CGO_ENABLED=0 go build -o obfsvpn-client ./cmd/client/ run-client: ./obfsvpn-client -c ${OBFS4_CERT} |