diff options
Diffstat (limited to 'go')
-rw-r--r-- | go/ldflags-darwin.go | 15 | ||||
-rw-r--r-- | go/ldflags-lrt.go | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/go/ldflags-darwin.go b/go/ldflags-darwin.go new file mode 100644 index 00000000..77114ee4 --- /dev/null +++ b/go/ldflags-darwin.go @@ -0,0 +1,15 @@ +//go:build darwin +// +build darwin + +/* + * Copyright (C) Danielle De Leo + * Copyright (C) NGINX, Inc. + */ + +package unit + +/* +#cgo LDFLAGS: -L/opt/homebrew/lib +#cgo CFLAGS: -I/opt/homebrew/include +*/ +import "C" diff --git a/go/ldflags-lrt.go b/go/ldflags-lrt.go index f5a63508..68a29145 100644 --- a/go/ldflags-lrt.go +++ b/go/ldflags-lrt.go @@ -1,3 +1,4 @@ +//go:build linux || netbsd // +build linux netbsd /* |