Skip to content

Commit 27ee3a9

Browse files
committed
Remove CGO
1 parent d4c774f commit 27ee3a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ install:
77
curl -sL https://lib.chdb.io | bash
88

99
test:
10-
CGO_ENABLED=1 go test -v -coverprofile=coverage.out ./...
10+
go test -v -coverprofile=coverage.out ./...
1111

1212
run:
13-
CGO_ENABLED=1 go run main.go
13+
go run main.go
1414

1515
build:
16-
CGO_ENABLED=1 go build -ldflags '-extldflags "-Wl,-rpath,/usr/local/lib"' -o chdb-go main.go
16+
go build -o chdb-go main.go

0 commit comments

Comments
 (0)