/openbmc/openbmc/poky/meta/classes/ |
H A D | chrpath.bbclass | 26 # Throw away everything other than the rpath list 28 #bb.note("Current rpath for %s is %s" % (fpath, curr_rpath.strip())) 32 for rpath in rpaths: 33 # If rpath is already dynamic copy it to new_rpath and continue 34 if rpath.find("$ORIGIN") != -1: 35 new_rpaths.append(rpath) 37 rpath = os.path.normpath(rpath) 38 if baseprefix not in rpath and tmpdir not in rpath: 40 if rpath in ['/lib', '/usr/lib', '/lib64/', '/usr/lib64']: 41 bb.warn("Skipping RPATH %s as is a standard search path for %s" % (rpath, fpath)) [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/binutils/binutils/ |
H A D | 0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch | 6 for cases where -rpath isn't specified. debian (#151024) 21 && command_line.rpath == NULL) 31 rpath = command_line.rpath; 32 if (rpath == NULL) 33 rpath = (const char *) getenv ("LD_RUN_PATH"); 34 + if ((rpath) && (strlen (rpath) == 0)) 35 + rpath = NULL;
|
H A D | 0010-sync-with-OE-libtool-changes.patch | 10 fix-rpath.patch: 15 norm-rpath.patch: 38 + # We only want to hardcode in an rpath if it isn't in the 56 - func_append rpath " $flag" 57 + # We only want to hardcode in an rpath if it isn't in the 64 + rpath+=" $flag" 75 - func_append rpath " $flag" 76 + # We only want to hardcode in an rpath if it isn't in the 81 + func_append rpath " $flag"
|
H A D | 0009-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch | 4 Subject: [PATCH] Fix rpath in libtool when sysroot is enabled 26 test "$opt_mode" != relink && rpath="$compile_rpath$rpath" 27 for libdir in $rpath; do
|
/openbmc/openbmc/poky/meta/recipes-kernel/lttng/lttng-ust/ |
H A D | 0001-Fix-Build-examples-when-rpath-is-stripped-from-in-bu.patch | 4 Subject: [PATCH] Fix: Build examples when rpath is stripped from in-build-tree 20 …ed by ../../../src/lib/lttng-ust/.libs/liblttng-ust.so, not found (try using -rpath or -rpath-link) 21 …ed by ../../../src/lib/lttng-ust/.libs/liblttng-ust.so, not found (try using -rpath or -rpath-link) 63 link against depends on the shared objects having an rpath. 72 The current examples build with `-Wl,-rpath` for `liblttng-ust`, but 74 via it's own rpath). If the `rpath` is stripped from 75 `liblttng-ust.so`, or if the tool chain ignores `rpath` explicitly, 91 Explicitly add library search paths and set linker rpath-link are set 97 While the `rpath-link` for the second order library dependencies will 99 runtime even when using `rpath`. From `man ld.so`, the rpaths in an [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/nss/nss/ |
H A D | 0002-nss-no-rpath-for-cross-compiling.patch | 4 Subject: [PATCH] nss:no rpath for cross compiling 21 -EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib64:/opt/sun/private/lib64:$$ORIGIN/../lib' 22 +#EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib64:/opt/sun/private/lib64:$$ORIGIN/../lib' 24 -EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib:/opt/sun/private/lib' 25 +#EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib:/opt/sun/private/lib'
|
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/ |
H A D | 0002-android-tools-modifications-to-make-it-build-in-yoct.patch | 58 - -Wl,-rpath=/usr/lib/$(DEB_HOST_MULTIARCH)/android \ 59 + -Wl,-rpath='$$ORIGIN/../lib/android' \ 71 - -Wl,-rpath=/usr/lib/$(DEB_HOST_MULTIARCH)/android \ 72 + -Wl,-rpath='$$ORIGIN/../lib/android' \ 84 - -Wl,-rpath=/usr/lib/$(DEB_HOST_MULTIARCH)/android \ 85 + -Wl,-rpath='$$ORIGIN/../lib/android' \ 105 - -Wl,-rpath=/usr/lib/p7zip \ 106 - -Wl,-rpath=/usr/lib/$(DEB_HOST_MULTIARCH)/android \ 107 + -Wl,-rpath='$$ORIGIN' \ 136 - -Wl,-rpath=/usr/lib/$(DEB_HOST_MULTIARCH)/android \ [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/libtool/libtool/ |
H A D | 0002-ltmain.in-Don-t-encode-RATHS-which-match-default-lin.patch | 31 + # We only want to hardcode in an rpath if it isn't in the 49 - func_append rpath " $flag" 50 + # We only want to hardcode in an rpath if it isn't in the 57 + rpath+=" $flag" 68 - func_append rpath " $flag" 69 + # We only want to hardcode in an rpath if it isn't in the 74 + func_append rpath " $flag"
|
H A D | 0001-ltmain.sh-Fix-sysroot-paths-being-encoded-into-RPATH.patch | 22 test relink = "$opt_mode" || rpath=$compile_rpath$rpath 23 for libdir in $rpath; do
|
/openbmc/openbmc/poky/meta/recipes-devtools/chrpath/ |
H A D | chrpath_0.18.bb | 1 SUMMARY = "Tool to edit rpath in ELF binaries" 2 DESCRIPTION = "chrpath allows you to change the rpath (where the \ 4 (yet) allow you to add an rpath if there isn't one already."
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/trace-cmd/files/ |
H A D | 0001-Do-not-emit-useless-rpath.patch | 4 Subject: [PATCH] Do not emit useless rpath 6 rpath is pointing to standard libdir which is un-used and yocto build QA 27 - $(CC) $^ -rdynamic -Wl,-rpath=$(libdir) -o $@ $(LDFLAGS) $(CONFIG_LIBS) $(LIBS))
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/konkretcmpi/konkretcmpi/ |
H A D | 0001-drop-including-rpath-cmake-module.patch | 4 Subject: [PATCH] drop including rpath cmake module 25 -include(rpath) 34 -include (rpath)
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/nspr/nspr/ |
H A D | 0001-remove-rpath-from-tests.patch | 4 Subject: [PATCH] remove rpath from tests 6 Avoid QA warnings by removing hardcoded rpath from binaries. 28 - LDOPTS += -Xlinker -rpath $(ABSOLUTE_LIB_DIR)
|
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/ |
H A D | 0008-libtool.patch | 6 libstdc++ from gcc-runtime gets created with -rpath=/usr/lib/../lib for qemux86-64 29 func_warning "ignoring multiple \`-rpath's for a libtool library" 38 if test -z "$rpath"; then
|
/openbmc/phosphor-psu-code-mgmt/test/ |
H A D | meson.build | 13 rpath = ':'.join( variable 38 build_rpath: oe_sdk.allowed() ? rpath : '', 59 build_rpath: oe_sdk.allowed() ? rpath : '',
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/etcd/etcd/ |
H A D | 0001-test_lib.sh-remove-gobin-requirement-during-build.patch | 29 if [[ "${rpath}" != "." && "${rpath}" != "" ]]; then 30 repro="(cd ${rpath} && ${command[*]})"
|
/openbmc/phosphor-psu-code-mgmt/vendor-example/ |
H A D | meson.build | 13 rpath = ':'.join( variable 34 build_rpath: oe_sdk.allowed() ? rpath : '',
|
/openbmc/openbmc/poky/meta/recipes-devtools/gdb/ |
H A D | gdb_16.1.bb | 30 …--ldflags) echo "-Wl,-rpath-link,${STAGING_LIBDIR}/.. -Wl,-rpath,${libdir}/.. -lpthread -ldl -luti…
|
H A D | gdb-cross-canadian.inc | 30 …--ldflags) echo "-Wl,-rpath-link,${STAGING_LIBDIR}/.. -Wl,-rpath,${libdir}/.. -lpthread -ldl -luti…
|
/openbmc/openbmc/poky/meta/recipes-support/icu/icu/ |
H A D | 0001-Disable-LDFLAGSICUDT-for-Linux.patch | 17 @@ -23,7 +23,7 @@ LD_RPATH= -Wl,-zorigin,-rpath,'$$'ORIGIN 18 LD_RPATH_PRE = -Wl,-rpath,
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/mozjs/mozjs-128/ |
H A D | 0001-Cargo.toml-do-not-abort-on-panic.patch | 19 rpath = false 26 rpath = false
|
/openbmc/openbmc/poky/meta/recipes-devtools/pseudo/ |
H A D | pseudo.inc | 20 MAKEOPTS:class-native = "'RPATH=-Wl,--rpath=XORIGIN/../../../sqlite3-native/usr/lib/'" 36 …te=${STAGING_DIR_TARGET}${exec_prefix} --cflags="${CFLAGS}" --bits=${SITEINFO_BITS} --without-rpath 38 …te=${STAGING_DIR_TARGET}${exec_prefix} --cflags="${CFLAGS}" --bits=${SITEINFO_BITS} --without-rpath 93 …h-sqlite-lib=${baselib} --with-sqlite=${STAGING_DIR_TARGET}${exec_prefix} --bits=32 --without-rpath 108 …h-sqlite-lib=${baselib} --with-sqlite=${STAGING_DIR_TARGET}${exec_prefix} --bits=32 --without-rpath
|
/openbmc/openbmc/meta-security/recipes-scanners/clamav/files/ |
H A D | oe_cmake_fixup.patch | 1 Issue with rpath including /usr/lib and crosscompile checkes causing oe configure to fail 3 Use oe's cmake rpath framework and exclude some of the cmake checks that fail in our env
|
/openbmc/inarp/ |
H A D | configure.ac | 39 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" 40 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/udisks/ |
H A D | udisks2_2.10.1.bb | 36 # | configure.ac:656: error: required file 'build-aux/config.rpath' not found 38 touch ${S}/build-aux/config.rpath
|