We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a97f709 commit 62145e4Copy full SHA for 62145e4
1 file changed
Makefile
@@ -24,15 +24,15 @@ run: build
24
25
build-linux:
26
@echo "Building for Linux (amd64)..."
27
- GOOS=linux GOARCH=amd64 go build -o nvidia-ai-chat-linux-amd64 .
+ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o nvidia-ai-chat-linux-amd64 .
28
29
build-windows:
30
@echo "Building for Windows (amd64)..."
31
- GOOS=windows GOARCH=amd64 go build -o nvidia-ai-chat-windows-amd64.exe .
+ CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o nvidia-ai-chat-windows-amd64.exe .
32
33
build-macos:
34
@echo "Building for macOS (amd64)..."
35
- GOOS=darwin GOARCH=amd64 go build -o nvidia-ai-chat-darwin-amd64 .
+ CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o nvidia-ai-chat-darwin-amd64 .
36
37
clean:
38
@echo "Cleaning up..."
0 commit comments