Skip to content

Commit

Permalink
Added comment
Browse files Browse the repository at this point in the history
  • Loading branch information
myleshorton committed Nov 27, 2023
1 parent f796569 commit 7d4ee9e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ $(BUILD_DIR):
$(DIST_DIR):
mkdir -p $(DIST_DIR)

# Build with CGO_ENABLED=0 to ensure that we don't have any dependencies on glibc
# in particular, which can cause issues when running on some Linux versions.
$(BUILD_DIR)/http-proxy: $(SRCS) | $(BUILD_DIR)
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 GOPRIVATE="github.com/getlantern" go build -o $(BUILD_DIR) ./http-proxy

Expand Down

0 comments on commit 7d4ee9e

Please sign in to comment.