You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.6 KiB

  1. #
  2. # Copyright (C) 2018 Jeffery To
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. ifeq ($(origin GO_INCLUDE_DIR),undefined)
  8. GO_INCLUDE_DIR:=$(dir $(lastword $(MAKEFILE_LIST)))
  9. endif
  10. include $(GO_INCLUDE_DIR)/golang-version.mk
  11. unexport \
  12. GOARCH GOBIN GOCACHE GOFLAGS GOHOSTARCH GOOS GOPATH GORACE GOROOT GOTMPDIR GCCGO \
  13. GOGC GODEBUG GOMAXPROCS GOTRACEBACK \
  14. CGO_ENABLED \
  15. CGO_CFLAGS CGO_CFLAGS_ALLOW CGO_CFLAGS_DISALLOW \
  16. CGO_CPPFLAGS CGO_CPPFLAGS_ALLOW CGO_CPPFLAGS_DISALLOW \
  17. CGO_CXXFLAGS CGO_CXXFLAGS_ALLOW CGO_CXXFLAGS_DISALLOW \
  18. CGO_FFLAGS CGO_FFLAGS_ALLOW CGO_FFLAGS_DISALLOW \
  19. CGO_LDFLAGS CGO_LDFLAGS_ALLOW CGO_LDFLAGS_DISALLOW \
  20. GOARM GO386 GOMIPS GOMIPS64 \
  21. GO111MODULE \
  22. GOROOT_FINAL GO_EXTLINK_ENABLED GIT_ALLOW_PROTOCOL \
  23. CC_FOR_TARGET CXX_FOR_TARGET GO_DISTFLAGS GO_GCFLAGS GO_LDFLAGS GOBUILDTIMELOGFILE GOROOT_BOOTSTRAP \
  24. BOOT_GO_GCFLAGS GOEXPERIMENT GOBOOTSTRAP_TOOLEXEC
  25. # there are more magic environment variables to track down, but ain't nobody got time for that
  26. # deliberately left untouched: GOPROXY GONOPROXY GOSUMDB GONOSUMDB GOPRIVATE
  27. go_arch=$(subst \
  28. aarch64,arm64,$(subst \
  29. i386,386,$(subst \
  30. mipsel,mipsle,$(subst \
  31. mips64el,mips64le,$(subst \
  32. powerpc64,ppc64,$(subst \
  33. x86_64,amd64,$(1)))))))
  34. GO_OS:=linux
  35. GO_ARCH:=$(call go_arch,$(ARCH))
  36. GO_OS_ARCH:=$(GO_OS)_$(GO_ARCH)
  37. GO_HOST_OS:=$(call tolower,$(HOST_OS))
  38. GO_HOST_ARCH:=$(call go_arch,$(subst \
  39. armv6l,arm,$(subst \
  40. armv7l,arm,$(subst \
  41. i486,i386,$(subst \
  42. i586,i386,$(subst \
  43. i686,i386,$(HOST_ARCH)))))))
  44. GO_HOST_OS_ARCH:=$(GO_HOST_OS)_$(GO_HOST_ARCH)
  45. GO_HOST_TARGET_SAME:=$(if $(and $(findstring $(GO_OS_ARCH),$(GO_HOST_OS_ARCH)),$(findstring $(GO_HOST_OS_ARCH),$(GO_OS_ARCH))),1)
  46. GO_HOST_TARGET_DIFFERENT:=$(if $(GO_HOST_TARGET_SAME),,1)
  47. # ensure binaries can run on older CPUs
  48. GO_386:=387
  49. GO_ARM:=$(if $(CONFIG_arm_v7),7,$(if $(CONFIG_arm_v6),6,$(if $(findstring $(GO_ARCH),arm),5,)))
  50. GO_MIPS:=$(if $(filter $(GO_ARCH),mips mipsle),$(if $(CONFIG_HAS_FPU),hardfloat,softfloat),)
  51. GO_MIPS64:=$(if $(filter $(GO_ARCH),mips64 mips64le),$(if $(CONFIG_HAS_FPU),hardfloat,softfloat),)
  52. # -fno-plt: causes "unexpected GOT reloc for non-dynamic symbol" errors
  53. # -mips32r2: conflicts with -march=mips32 set by go
  54. GO_CFLAGS_TO_REMOVE:=$(if \
  55. $(filter $(GO_ARCH),386),-fno-plt,$(if \
  56. $(filter $(GO_ARCH),mips mipsle),-mips32r2,))
  57. GO_ARCH_DEPENDS:=@(aarch64||arm||i386||i686||mips||mips64||mips64el||mipsel||powerpc64||x86_64)
  58. GO_TARGET_PREFIX:=/usr
  59. GO_TARGET_VERSION_ID:=$(GO_VERSION_MAJOR_MINOR)
  60. GO_TARGET_ROOT:=$(GO_TARGET_PREFIX)/lib/go-$(GO_TARGET_VERSION_ID)