Skip to content

Commit

Permalink
Fixed build constraints for CGO
Browse files Browse the repository at this point in the history
Signed-off-by: Anagh Kumar Baranwal <6824881+darthShadow@users.noreply.github.com>
  • Loading branch information
darthShadow committed Sep 16, 2022
1 parent 92816b5 commit 8ea7351
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ieproxy_darwin.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build darwin && cgo
// +build darwin,cgo

package ieproxy

/*
Expand Down
3 changes: 3 additions & 0 deletions ieproxy_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build windows && cgo
// +build windows,cgo

package ieproxy

import (
Expand Down
3 changes: 3 additions & 0 deletions pac_darwin.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build darwin && cgo
// +build darwin,cgo

package ieproxy

/*
Expand Down
3 changes: 3 additions & 0 deletions pac_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build windows && cgo
// +build windows,cgo

package ieproxy

import (
Expand Down

0 comments on commit 8ea7351

Please sign in to comment.