Lines Matching +full:class +full:- +full:d
1 BUILD_GOOS = "${@go_map_os(d.getVar('BUILD_OS'), d)}"
2 BUILD_GOARCH = "${@go_map_arch(d.getVar('BUILD_ARCH'), d)}"
4 HOST_GOOS = "${@go_map_os(d.getVar('HOST_OS'), d)}"
5 HOST_GOARCH = "${@go_map_arch(d.getVar('HOST_ARCH'), d)}"
6 HOST_GOARM = "${@go_map_arm(d.getVar('HOST_ARCH'), d)}"
7 HOST_GO386 = "${@go_map_386(d.getVar('HOST_ARCH'), d.getVar('TUNE_FEATURES'), d)}"
8 HOST_GOMIPS = "${@go_map_mips(d.getVar('HOST_ARCH'), d.getVar('TUNE_FEATURES'), d)}"
9 HOST_GOARM:class-native = "7"
10 HOST_GO386:class-native = "sse2"
11 HOST_GOMIPS:class-native = "hardfloat"
13 TARGET_GOOS = "${@go_map_os(d.getVar('TARGET_OS'), d)}"
14 TARGET_GOARCH = "${@go_map_arch(d.getVar('TARGET_ARCH'), d)}"
15 TARGET_GOARM = "${@go_map_arm(d.getVar('TARGET_ARCH'), d)}"
16 TARGET_GO386 = "${@go_map_386(d.getVar('TARGET_ARCH'), d.getVar('TUNE_FEATURES'), d)}"
17 TARGET_GOMIPS = "${@go_map_mips(d.getVar('TARGET_ARCH'), d.getVar('TUNE_FEATURES'), d)}"
18 TARGET_GOARM:class-native = "7"
19 TARGET_GO386:class-native = "sse2"
20 TARGET_GOMIPS:class-native = "hardfloat"
22 GO_BUILD_BINDIR = "${@['bin/${HOST_GOTUPLE}','bin'][d.getVar('BUILD_GOTUPLE') == d.getVar('HOST_GOT…
38 GO_DYNLINK:x86-64 ?= "1"
41 GO_DYNLINK:class-native ?= ""
42 GO_DYNLINK:class-nativesdk = ""
44 # define here because everybody inherits this class
46 COMPATIBLE_HOST:linux-gnux32 = "null"
47 COMPATIBLE_HOST:linux-muslx32 = "null"
56 TUNE_CCARGS:remove = "-march=mips32r2"
63 def go_map_arch(a, d):
90 def go_map_arm(a, d):
92 return d.getVar('BASE_GOARM')
95 def go_map_386(a, f, d):
104 def go_map_mips(a, f, d):
107 if 'fpu-hard' in f:
113 def go_map_os(o, d):