summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/rust-common.bbclass5
-rw-r--r--meta/files/rust-ccld-wrapper.c29
2 files changed, 34 insertions, 0 deletions
diff --git a/meta/classes/rust-common.bbclass b/meta/classes/rust-common.bbclass
index e1bc0193c3..a8803d61b6 100644
--- a/meta/classes/rust-common.bbclass
+++ b/meta/classes/rust-common.bbclass
@@ -169,6 +169,11 @@ do_rust_create_wrappers () {
169 # Yocto Target / Rust Target archiver 169 # Yocto Target / Rust Target archiver
170 create_wrapper "${RUST_TARGET_AR}" "${WRAPPER_TARGET_AR}" 170 create_wrapper "${RUST_TARGET_AR}" "${WRAPPER_TARGET_AR}"
171 171
172 # Need to filter out LD_LIBRARY_PATH from the linker without using shell
173 mv ${RUST_BUILD_CCLD} ${RUST_BUILD_CCLD}.real
174 ${BUILD_CC} ${COREBASE}/meta/files/rust-ccld-wrapper.c -o ${RUST_BUILD_CCLD}
175 mv ${RUST_TARGET_CCLD} ${RUST_TARGET_CCLD}.real
176 ${BUILD_CC} ${COREBASE}/meta/files/rust-ccld-wrapper.c -o ${RUST_TARGET_CCLD}
172} 177}
173 178
174addtask rust_create_wrappers before do_configure after do_patch 179addtask rust_create_wrappers before do_configure after do_patch
diff --git a/meta/files/rust-ccld-wrapper.c b/meta/files/rust-ccld-wrapper.c
new file mode 100644
index 0000000000..6bc9958b90
--- /dev/null
+++ b/meta/files/rust-ccld-wrapper.c
@@ -0,0 +1,29 @@
1/*
2 * Copyright 2021 Richard Purdie
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 */
6
7#include <errno.h>
8#include <stdio.h>
9#include <stdlib.h>
10#include <string.h>
11#include <unistd.h>
12
13/*
14 * Run the original script (argv[0] + ".real") with LD_LIBRARY_PATH unset
15 * This avoids issues where cargo is running a wrapper script using /bin/sh from the host
16 * which links to something which has an incompatible version in in recipe-sysroot-native
17 * such as libtinfo on centos 7.
18 */
19
20int main(int argc, char* argv[]) {
21 char *real = malloc(strlen(argv[0] + 5));
22 strcpy(real, argv[0]);
23 strcpy(real + strlen(argv[0]), ".real");
24 putenv("LD_LIBRARY_PATH=");
25 if(execv(real, argv) == -1) {
26 printf("Wrapper failed to execute, error: %s\n", strerror(errno));
27 return -1;
28 }
29}