Skip to content

Commit

Permalink
Merge pull request #614 from mirokuratczyk/master
Browse files Browse the repository at this point in the history
Fix: ensure build disables modules
  • Loading branch information
rod-hynes authored Jul 29, 2022
2 parents bcc9be8 + eef5176 commit 6623cf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ClientLibrary/example/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ main.o: main.c
gcc -I.. -c main.c

libpsiphontunnel.so: ../PsiphonTunnel.go
go build -buildmode=c-shared -o libpsiphontunnel.so ../PsiphonTunnel.go
# At this time, we don't support modules
GO111MODULE=off go build -buildmode=c-shared -o libpsiphontunnel.so ../PsiphonTunnel.go

clean:
rm libpsiphontunnel.so libpsiphontunnel.h main main.o
Expand Down

0 comments on commit 6623cf4

Please sign in to comment.