Cross-compilation attempts (not successful yet)
This commit is contained in:
+6
-1
@@ -1,11 +1,16 @@
|
||||
LDFLAGS = -s -w
|
||||
LDFLAGS_WIN = -H windowsgui -s -w
|
||||
GOFLAGS = -trimpath
|
||||
SOURCES = server.go twitch.go youtube.go
|
||||
BIN = streamgoose
|
||||
|
||||
all: $(SOURCES)
|
||||
unix:
|
||||
go mod tidy
|
||||
go build -o $(BIN) $(GOFLAGS) -ldflags "$(LDFLAGS)" $(SOURCES)
|
||||
|
||||
win64:
|
||||
go mod tidy
|
||||
GOOS=windows GOARCH=amd64 go build -o $(BIN).exe $(GOFLAGS) -ldflags "$(LDFLAGS_WIN)" $(SOURCES)
|
||||
|
||||
clean:
|
||||
rm $(BIN)
|
||||
|
||||
Reference in New Issue
Block a user