diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-10 14:35:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-12 15:27:17 +0100 |
commit | fd1517e2b51a170f2427122c6b95396db251d827 (patch) | |
tree | dabfe3e631339c2fc99a9ee7febb0f9c128e325e /meta/classes-recipe/rust-common.bbclass | |
parent | 10317912ee319ccf7f83605d438b5cbf9663f296 (diff) | |
download | poky-fd1517e2b51a170f2427122c6b95396db251d827.tar.gz |
classes: Update classes to match new bitbake class scope functionality
Move classes to classes-global or classes-recipe as appropriate to take
advantage of new bitbake functionality to check class scope/usage.
(From OE-Core rev: f5c128008365e141082c129417eb72d2751e8045)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/rust-common.bbclass')
-rw-r--r-- | meta/classes-recipe/rust-common.bbclass | 177 |
1 files changed, 177 insertions, 0 deletions
diff --git a/meta/classes-recipe/rust-common.bbclass b/meta/classes-recipe/rust-common.bbclass new file mode 100644 index 0000000000..93bf6c8be6 --- /dev/null +++ b/meta/classes-recipe/rust-common.bbclass | |||
@@ -0,0 +1,177 @@ | |||
1 | # | ||
2 | # Copyright OpenEmbedded Contributors | ||
3 | # | ||
4 | # SPDX-License-Identifier: MIT | ||
5 | # | ||
6 | |||
7 | inherit python3native | ||
8 | inherit rust-target-config | ||
9 | |||
10 | # Common variables used by all Rust builds | ||
11 | export rustlibdir = "${libdir}/rustlib/${RUST_HOST_SYS}/lib" | ||
12 | FILES:${PN} += "${rustlibdir}/*.so" | ||
13 | FILES:${PN}-dev += "${rustlibdir}/*.rlib ${rustlibdir}/*.rmeta" | ||
14 | FILES:${PN}-dbg += "${rustlibdir}/.debug" | ||
15 | |||
16 | RUSTLIB = "-L ${STAGING_DIR_HOST}${rustlibdir}" | ||
17 | RUST_DEBUG_REMAP = "--remap-path-prefix=${WORKDIR}=/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}" | ||
18 | RUSTFLAGS += "${RUSTLIB} ${RUST_DEBUG_REMAP}" | ||
19 | RUSTLIB_DEP ?= "libstd-rs" | ||
20 | RUST_PANIC_STRATEGY ?= "unwind" | ||
21 | |||
22 | def target_is_armv7(d): | ||
23 | '''Determine if target is armv7''' | ||
24 | # TUNE_FEATURES may include arm* even if the target is not arm | ||
25 | # in the case of *-native packages | ||
26 | if d.getVar('TARGET_ARCH') != 'arm': | ||
27 | return False | ||
28 | |||
29 | feat = d.getVar('TUNE_FEATURES') | ||
30 | feat = frozenset(feat.split()) | ||
31 | mach_overrides = d.getVar('MACHINEOVERRIDES') | ||
32 | mach_overrides = frozenset(mach_overrides.split(':')) | ||
33 | |||
34 | v7=frozenset(['armv7a', 'armv7r', 'armv7m', 'armv7ve']) | ||
35 | if mach_overrides.isdisjoint(v7) and feat.isdisjoint(v7): | ||
36 | return False | ||
37 | else: | ||
38 | return True | ||
39 | target_is_armv7[vardepvalue] = "${@target_is_armv7(d)}" | ||
40 | |||
41 | # Responsible for taking Yocto triples and converting it to Rust triples | ||
42 | def rust_base_triple(d, thing): | ||
43 | ''' | ||
44 | Mangle bitbake's *_SYS into something that rust might support (see | ||
45 | rust/mk/cfg/* for a list) | ||
46 | |||
47 | Note that os is assumed to be some linux form | ||
48 | ''' | ||
49 | |||
50 | # The llvm-target for armv7 is armv7-unknown-linux-gnueabihf | ||
51 | if d.getVar('{}_ARCH'.format(thing)) == d.getVar('TARGET_ARCH') and target_is_armv7(d): | ||
52 | arch = "armv7" | ||
53 | else: | ||
54 | arch = oe.rust.arch_to_rust_arch(d.getVar('{}_ARCH'.format(thing))) | ||
55 | |||
56 | # When bootstrapping rust-native, BUILD must be the same as upstream snapshot tarballs | ||
57 | bpn = d.getVar('BPN') | ||
58 | if thing == "BUILD" and bpn in ["rust"]: | ||
59 | return arch + "-unknown-linux-gnu" | ||
60 | |||
61 | vendor = d.getVar('{}_VENDOR'.format(thing)) | ||
62 | |||
63 | # Default to glibc | ||
64 | libc = "-gnu" | ||
65 | os = d.getVar('{}_OS'.format(thing)) | ||
66 | # This catches ARM targets and appends the necessary hard float bits | ||
67 | if os == "linux-gnueabi" or os == "linux-musleabi": | ||
68 | libc = bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'hf', '', d) | ||
69 | elif "musl" in os: | ||
70 | libc = "-musl" | ||
71 | os = "linux" | ||
72 | |||
73 | return arch + vendor + '-' + os + libc | ||
74 | |||
75 | |||
76 | # In some cases uname and the toolchain differ on their idea of the arch name | ||
77 | RUST_BUILD_ARCH = "${@oe.rust.arch_to_rust_arch(d.getVar('BUILD_ARCH'))}" | ||
78 | |||
79 | # Naming explanation | ||
80 | # Yocto | ||
81 | # - BUILD_SYS - Yocto triple of the build environment | ||
82 | # - HOST_SYS - What we're building for in Yocto | ||
83 | # - TARGET_SYS - What we're building for in Yocto | ||
84 | # | ||
85 | # So when building '-native' packages BUILD_SYS == HOST_SYS == TARGET_SYS | ||
86 | # When building packages for the image HOST_SYS == TARGET_SYS | ||
87 | # This is a gross over simplification as there are other modes but | ||
88 | # currently this is all that's supported. | ||
89 | # | ||
90 | # Rust | ||
91 | # - TARGET - the system where the binary will run | ||
92 | # - HOST - the system where the binary is being built | ||
93 | # | ||
94 | # Rust additionally will use two additional cases: | ||
95 | # - undecorated (e.g. CC) - equivalent to TARGET | ||
96 | # - triple suffix (e.g. CC:x86_64_unknown_linux_gnu) - both | ||
97 | # see: https://github.com/alexcrichton/gcc-rs | ||
98 | # The way that Rust's internal triples and Yocto triples are mapped together | ||
99 | # its likely best to not use the triple suffix due to potential confusion. | ||
100 | |||
101 | RUST_BUILD_SYS = "${@rust_base_triple(d, 'BUILD')}" | ||
102 | RUST_BUILD_SYS[vardepvalue] = "${RUST_BUILD_SYS}" | ||
103 | RUST_HOST_SYS = "${@rust_base_triple(d, 'HOST')}" | ||
104 | RUST_HOST_SYS[vardepvalue] = "${RUST_HOST_SYS}" | ||
105 | RUST_TARGET_SYS = "${@rust_base_triple(d, 'TARGET')}" | ||
106 | RUST_TARGET_SYS[vardepvalue] = "${RUST_TARGET_SYS}" | ||
107 | |||
108 | # wrappers to get around the fact that Rust needs a single | ||
109 | # binary but Yocto's compiler and linker commands have | ||
110 | # arguments. Technically the archiver is always one command but | ||
111 | # this is necessary for builds that determine the prefix and then | ||
112 | # use those commands based on the prefix. | ||
113 | WRAPPER_DIR = "${WORKDIR}/wrapper" | ||
114 | RUST_BUILD_CC = "${WRAPPER_DIR}/build-rust-cc" | ||
115 | RUST_BUILD_CXX = "${WRAPPER_DIR}/build-rust-cxx" | ||
116 | RUST_BUILD_CCLD = "${WRAPPER_DIR}/build-rust-ccld" | ||
117 | RUST_BUILD_AR = "${WRAPPER_DIR}/build-rust-ar" | ||
118 | RUST_TARGET_CC = "${WRAPPER_DIR}/target-rust-cc" | ||
119 | RUST_TARGET_CXX = "${WRAPPER_DIR}/target-rust-cxx" | ||
120 | RUST_TARGET_CCLD = "${WRAPPER_DIR}/target-rust-ccld" | ||
121 | RUST_TARGET_AR = "${WRAPPER_DIR}/target-rust-ar" | ||
122 | |||
123 | create_wrapper_rust () { | ||
124 | file="$1" | ||
125 | shift | ||
126 | extras="$1" | ||
127 | shift | ||
128 | |||
129 | cat <<- EOF > "${file}" | ||
130 | #!/usr/bin/env python3 | ||
131 | import os, sys | ||
132 | orig_binary = "$@" | ||
133 | extras = "${extras}" | ||
134 | binary = orig_binary.split()[0] | ||
135 | args = orig_binary.split() + sys.argv[1:] | ||
136 | if extras: | ||
137 | args.append(extras) | ||
138 | os.execvp(binary, args) | ||
139 | EOF | ||
140 | chmod +x "${file}" | ||
141 | } | ||
142 | |||
143 | WRAPPER_TARGET_CC = "${CC}" | ||
144 | WRAPPER_TARGET_CXX = "${CXX}" | ||
145 | WRAPPER_TARGET_CCLD = "${CCLD}" | ||
146 | WRAPPER_TARGET_LDFLAGS = "${LDFLAGS}" | ||
147 | WRAPPER_TARGET_EXTRALD = "" | ||
148 | WRAPPER_TARGET_AR = "${AR}" | ||
149 | |||
150 | # compiler is used by gcc-rs | ||
151 | # linker is used by rustc/cargo | ||
152 | # archiver is used by the build of libstd-rs | ||
153 | do_rust_create_wrappers () { | ||
154 | mkdir -p "${WRAPPER_DIR}" | ||
155 | |||
156 | # Yocto Build / Rust Host C compiler | ||
157 | create_wrapper_rust "${RUST_BUILD_CC}" "" "${BUILD_CC}" | ||
158 | # Yocto Build / Rust Host C++ compiler | ||
159 | create_wrapper_rust "${RUST_BUILD_CXX}" "" "${BUILD_CXX}" | ||
160 | # Yocto Build / Rust Host linker | ||
161 | create_wrapper_rust "${RUST_BUILD_CCLD}" "" "${BUILD_CCLD}" "${BUILD_LDFLAGS}" | ||
162 | # Yocto Build / Rust Host archiver | ||
163 | create_wrapper_rust "${RUST_BUILD_AR}" "" "${BUILD_AR}" | ||
164 | |||
165 | # Yocto Target / Rust Target C compiler | ||
166 | create_wrapper_rust "${RUST_TARGET_CC}" "${WRAPPER_TARGET_EXTRALD}" "${WRAPPER_TARGET_CC}" "${WRAPPER_TARGET_LDFLAGS}" | ||
167 | # Yocto Target / Rust Target C++ compiler | ||
168 | create_wrapper_rust "${RUST_TARGET_CXX}" "${WRAPPER_TARGET_EXTRALD}" "${WRAPPER_TARGET_CXX}" "${CXXFLAGS}" | ||
169 | # Yocto Target / Rust Target linker | ||
170 | create_wrapper_rust "${RUST_TARGET_CCLD}" "${WRAPPER_TARGET_EXTRALD}" "${WRAPPER_TARGET_CCLD}" "${WRAPPER_TARGET_LDFLAGS}" | ||
171 | # Yocto Target / Rust Target archiver | ||
172 | create_wrapper_rust "${RUST_TARGET_AR}" "" "${WRAPPER_TARGET_AR}" | ||
173 | |||
174 | } | ||
175 | |||
176 | addtask rust_create_wrappers before do_configure after do_patch do_prepare_recipe_sysroot | ||
177 | do_rust_create_wrappers[dirs] += "${WRAPPER_DIR}" | ||