Skip to content

Commit

Permalink
Makefile: Disable Windows targets
Browse files Browse the repository at this point in the history
Windows builds currently fail with

    internal/daemon/instance/logstash/instance.go:94:45: unknown field
    'Setpgid' in struct literal of type syscall.SysProcAttr

and to be able to run "make release-tarballs" we disable the Windows
targets in the makefile. It remains to be decided whether we should fix
this error (probably by disabling daemon mode) or drop Windows support.
  • Loading branch information
magnusbaeck committed Aug 7, 2021
1 parent b6f8a80 commit 8473358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PROGRAM := logstash-filter-verifier
# List of all GOOS_GOARCH combinations that we should build release
# binaries for. See https://golang.org/doc/install/source#environment
# for all available combinations.
TARGETS := darwin_amd64 linux_386 linux_amd64 windows_386 windows_amd64
TARGETS := darwin_amd64 linux_386 linux_amd64

VERSION := $(shell git describe --tags --always)

Expand Down

0 comments on commit 8473358

Please sign in to comment.