Sfoglia il codice sorgente

Correct list of supported platforms on cross compilation

tags/0.10
9seconds 7 anni fa
parent
commit
7a99a4ec32
2 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 1
    0
      .gitignore
  2. 1
    1
      Makefile

+ 1
- 0
.gitignore Vedi File

@@ -8,3 +8,4 @@
8 8
 mtg
9 9
 vendor/
10 10
 version.go
11
+ccbuilds/

+ 1
- 1
Makefile Vedi File

@@ -4,7 +4,7 @@ APP_NAME     := $(IMAGE_NAME)
4 4
 GOMETALINTER := gometalinter
5 5
 
6 6
 VENDOR_FILES := $(shell find "$(ROOT_DIR)/vendor" 2>/dev/null || echo -n "vendor")
7
-CC_BINARIES  := $(shell bash -c "echo -n $(APP_NAME)-{linux,windows,darwin,freebsd,openbsd}-{386,amd64} $(APP_NAME)-linux-{arm,arm64}")
7
+CC_BINARIES  := $(shell bash -c "echo -n $(APP_NAME)-{linux,freebsd,openbsd}-{386,amd64} $(APP_NAME)-linux-{arm,arm64}")
8 8
 APP_DEPS     := version.go $(VENDOR_FILES)
9 9
 
10 10
 COMMON_BUILD_FLAGS := -ldflags="-s -w"

Loading…
Annulla
Salva