golang: Enable loongarch64 for Go compiler and packages
[feed/packages.git] / lang / golang / golang-values.mk
1 #
2 # Copyright (C) 2018-2023 Jeffery To
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 ifeq ($(origin GO_INCLUDE_DIR),undefined)
9 GO_INCLUDE_DIR:=$(dir $(lastword $(MAKEFILE_LIST)))
10 endif
11
12
13 # Unset environment variables
14 # There are more magic variables to track down, but ain't nobody got time for that
15
16 # From https://pkg.go.dev/cmd/go#hdr-Environment_variables
17
18 # General-purpose environment variables:
19 unexport \
20 GO111MODULE \
21 GCCGO \
22 GOARCH \
23 GOBIN \
24 GOCACHE \
25 GOMODCACHE \
26 GODEBUG \
27 GOENV \
28 GOFLAGS \
29 GOOS \
30 GOPATH \
31 GOROOT \
32 GOTOOLCHAIN \
33 GOTMPDIR \
34 GOWORK
35 # Unmodified:
36 # GOINSECURE
37 # GOPRIVATE
38 # GOPROXY
39 # GONOPROXY
40 # GOSUMDB
41 # GONOSUMDB
42 # GOVCS
43
44 # Environment variables for use with cgo:
45 unexport \
46 AR \
47 CC \
48 CGO_ENABLED \
49 CGO_CFLAGS CGO_CFLAGS_ALLOW CGO_CFLAGS_DISALLOW \
50 CGO_CPPFLAGS CGO_CPPFLAGS_ALLOW CGO_CPPFLAGS_DISALLOW \
51 CGO_CXXFLAGS CGO_CXXFLAGS_ALLOW CGO_CXXFLAGS_DISALLOW \
52 CGO_FFLAGS CGO_FFLAGS_ALLOW CGO_FFLAGS_DISALLOW \
53 CGO_LDFLAGS CGO_LDFLAGS_ALLOW CGO_LDFLAGS_DISALLOW \
54 CXX \
55 FC
56 # Unmodified:
57 # PKG_CONFIG
58
59 # Architecture-specific environment variables:
60 unexport \
61 GOARM \
62 GO386 \
63 GOAMD64 \
64 GOMIPS \
65 GOMIPS64 \
66 GOPPC64 \
67 GOWASM
68
69 # Environment variables for use with code coverage:
70 unexport \
71 GOCOVERDIR
72
73 # Special-purpose environment variables:
74 unexport \
75 GCCGOTOOLDIR \
76 GOEXPERIMENT \
77 GOROOT_FINAL \
78 GO_EXTLINK_ENABLED
79 # Unmodified:
80 # GIT_ALLOW_PROTOCOL
81
82 # From https://pkg.go.dev/runtime#hdr-Environment_Variables
83 unexport \
84 GOGC \
85 GOMEMLIMIT \
86 GOMAXPROCS \
87 GORACE \
88 GOTRACEBACK
89
90 # From https://pkg.go.dev/cmd/cgo#hdr-Using_cgo_with_the_go_command
91 unexport \
92 CC_FOR_TARGET \
93 CXX_FOR_TARGET
94 # Todo:
95 # CC_FOR_${GOOS}_${GOARCH}
96 # CXX_FOR_${GOOS}_${GOARCH}
97
98 # From https://go.dev/doc/install/source#environment
99 unexport \
100 GOHOSTOS \
101 GOHOSTARCH
102
103 # From https://go.dev/src/make.bash
104 unexport \
105 GO_GCFLAGS \
106 GO_LDFLAGS \
107 GO_LDSO \
108 GO_DISTFLAGS \
109 GOBUILDTIMELOGFILE \
110 GOROOT_BOOTSTRAP
111
112 # From https://go.dev/doc/go1.9#parallel-compile
113 unexport \
114 GO19CONCURRENTCOMPILATION
115
116 # From https://go.dev/src/cmd/dist/build.go
117 unexport \
118 BOOT_GO_GCFLAGS \
119 BOOT_GO_LDFLAGS
120
121 # From https://go.dev/src/cmd/dist/buildtool.go
122 unexport \
123 GOBOOTSTRAP_TOOLEXEC
124
125
126 # GOOS / GOARCH
127
128 go_arch=$(subst \
129 aarch64,arm64,$(subst \
130 i386,386,$(subst \
131 loongarch64,loong64,$(subst \
132 mipsel,mipsle,$(subst \
133 mips64el,mips64le,$(subst \
134 powerpc64,ppc64,$(subst \
135 x86_64,amd64,$(1))))))))
136
137 GO_OS:=linux
138 GO_ARCH:=$(call go_arch,$(ARCH))
139 GO_OS_ARCH:=$(GO_OS)_$(GO_ARCH)
140
141 GO_HOST_OS:=$(call tolower,$(HOST_OS))
142 GO_HOST_ARCH:=$(call go_arch,$(subst \
143 armv6l,arm,$(subst \
144 armv7l,arm,$(subst \
145 i686,i386,$(HOST_ARCH)))))
146 GO_HOST_OS_ARCH:=$(GO_HOST_OS)_$(GO_HOST_ARCH)
147
148 ifeq ($(GO_OS_ARCH),$(GO_HOST_OS_ARCH))
149 GO_HOST_TARGET_SAME:=1
150 else
151 GO_HOST_TARGET_DIFFERENT:=1
152 endif
153
154 ifeq ($(GO_ARCH),386)
155 ifeq ($(CONFIG_TARGET_x86_geode)$(CONFIG_TARGET_x86_legacy),y)
156 GO_386:=softfloat
157 else
158 GO_386:=sse2
159 endif
160
161 # -fno-plt: causes "unexpected GOT reloc for non-dynamic symbol" errors
162 GO_CFLAGS_TO_REMOVE:=-fno-plt
163
164 else ifeq ($(GO_ARCH),amd64)
165 GO_AMD64:=v1
166
167 else ifeq ($(GO_ARCH),arm)
168 GO_TARGET_FPU:=$(word 2,$(subst +,$(space),$(call qstrip,$(CONFIG_CPU_TYPE))))
169
170 # FPU names from https://gcc.gnu.org/onlinedocs/gcc-8.4.0/gcc/ARM-Options.html#index-mfpu-1
171 # see also https://github.com/gcc-mirror/gcc/blob/releases/gcc-8.4.0/gcc/config/arm/arm-cpus.in
172
173 ifeq ($(GO_TARGET_FPU),)
174 GO_ARM:=5
175 else ifneq ($(filter $(GO_TARGET_FPU),vfp vfpv2),)
176 GO_ARM:=6
177 else
178 GO_ARM:=7
179 endif
180
181 else ifneq ($(filter $(GO_ARCH),mips mipsle),)
182 ifeq ($(CONFIG_HAS_FPU),y)
183 GO_MIPS:=hardfloat
184 else
185 GO_MIPS:=softfloat
186 endif
187
188 # -mips32r2: conflicts with -march=mips32 set by go
189 GO_CFLAGS_TO_REMOVE:=-mips32r2
190
191 else ifneq ($(filter $(GO_ARCH),mips64 mips64le),)
192 ifeq ($(CONFIG_HAS_FPU),y)
193 GO_MIPS64:=hardfloat
194 else
195 GO_MIPS64:=softfloat
196 endif
197
198 else ifeq ($(GO_ARCH),ppc64)
199 GO_PPC64:=power8
200
201 endif
202
203
204 # Target Go
205
206 GO_ARCH_DEPENDS:=@(aarch64||arm||i386||i686||loongarch64||mips||mips64||mips64el||mipsel||powerpc64||riscv64||x86_64)
207
208
209 # ASLR/PIE
210
211 # From https://go.dev/src/internal/platform/supported.go
212 GO_PIE_SUPPORTED_OS_ARCH:= \
213 android_386 android_amd64 android_arm android_arm64 \
214 linux_386 linux_amd64 linux_arm linux_arm64 \
215 windows_386 windows_amd64 windows_arm windows_arm64 \
216 \
217 darwin_amd64 darwin_arm64 \
218 ios_amd64 ios_arm64 \
219 \
220 freebsd_amd64 \
221 \
222 aix_ppc64 \
223 \
224 linux_loong64 linux_ppc64le linux_riscv64 linux_s390x
225
226 # From https://go.dev/src/cmd/go/internal/work/init.go
227 go_pie_install_suffix=$(if $(filter $(1),aix_ppc64 windows_386 windows_amd64 windows_arm windows_arm64),,shared)
228
229 ifneq ($(filter $(GO_HOST_OS_ARCH),$(GO_PIE_SUPPORTED_OS_ARCH)),)
230 GO_HOST_PIE_SUPPORTED:=1
231 GO_HOST_PIE_INSTALL_SUFFIX:=$(call go_pie_install_suffix,$(GO_HOST_OS_ARCH))
232 endif
233
234 ifneq ($(filter $(GO_OS_ARCH),$(GO_PIE_SUPPORTED_OS_ARCH)),)
235 GO_TARGET_PIE_SUPPORTED:=1
236 GO_TARGET_PIE_INSTALL_SUFFIX:=$(call go_pie_install_suffix,$(GO_OS_ARCH))
237 endif
238
239
240 # Spectre mitigations
241
242 GO_SPECTRE_SUPPORTED_ARCH:=amd64
243
244 ifneq ($(filter $(GO_HOST_ARCH),$(GO_SPECTRE_SUPPORTED_ARCH)),)
245 GO_HOST_SPECTRE_SUPPORTED:=1
246 endif
247
248 ifneq ($(filter $(GO_ARCH),$(GO_SPECTRE_SUPPORTED_ARCH)),)
249 GO_TARGET_SPECTRE_SUPPORTED:=1
250 endif
251
252
253 # General build info
254
255 GO_BUILD_CACHE_DIR:=$(or $(call qstrip,$(CONFIG_GOLANG_BUILD_CACHE_DIR)),$(TMP_DIR)/go-build)
256 GO_MOD_CACHE_DIR:=$(DL_DIR)/go-mod-cache
257
258 GO_MOD_ARGS= \
259 -modcacherw
260
261 GO_GENERAL_BUILD_CONFIG_VARS= \
262 CONFIG_GOLANG_MOD_CACHE_WORLD_READABLE="$(CONFIG_GOLANG_MOD_CACHE_WORLD_READABLE)" \
263 GO_BUILD_CACHE_DIR="$(GO_BUILD_CACHE_DIR)" \
264 GO_MOD_CACHE_DIR="$(GO_MOD_CACHE_DIR)" \
265 GO_MOD_ARGS="$(GO_MOD_ARGS)"
266
267 define Go/CacheCleanup
268 $(GO_GENERAL_BUILD_CONFIG_VARS) \
269 $(SHELL) $(GO_INCLUDE_DIR)/golang-build.sh cache_cleanup
270 endef