I am working on an embedded Linux target, gcc 9.2. If I link with -rpath=/usr/local/lib, the readelf utility shows me the RPATH entry, as expected. If I link with -rpath=$ORIGIN, readelf shows no RAPTH, and nothing involving ORIGIN. The link command appears to be correct: x86_64-poky-linux-g++ ... -Xlinker -rpath=$ORIGIN .... Any ideas?
Link with -rpath=/usr/local/lib works, -rapth=$ORIGIN does not
835 Views Asked by Phillip At
1
There are 1 best solutions below
Related Questions in LINUX
- Is there some way to use printf to print a horizontal list of decrementing hex digits in NASM assembly on Linux
- Why does Hugo generate different taxonomy-related HTML on different OS's?
- Writes in io_uring do not advance the file offset
- Why `set -o pipefail` gives different output even though the pipe is not failing
- what really controls the permissions: UID or eUID?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Docker container unable to make HTTPS requests to external API
- Whow to use callback_query_handler in Python 3.10
- Create kea runtime directory at startup in Yocto image
- Problem on CPU scheduling algorithms in OS
- How to copy files into the singularity sandbox?
- Android kernel error: undefined reference to `get_hw_version_platform'
- Is there a need for BPF Linux namespace?
- Error when trying to execute a binary compiled in a Kali Linux machine on an Ubuntu system
- Issue with launching application after updating ElectronJs to version 28.0.0 on Windows and Linux
Related Questions in LD
- ELF binary has inconsistency detected by ld.so: dl-call-libc-early-init.c: 37: Assertion `sym != NULL' failed
- Use gcc to compile multiple c files, ml (masm) to compile multiple assembly files and link with extern linker: Undefined reference to '__main'
- Assembly x86 - status code not shown as defined
- Same versions of Linux, CC, LD have different link order rules
- How do you get the SBCL foreign function interface example from the SBCL User Manual to work?
- Make : make[2]: *** No rule to make target '<path/to/.so>', needed by '<target>'. Stop
- Linker can't find shared library compiled by g++
- Assembly segmentation fault in example code
- LD won't move .rodata section with -Trodata OFFSET
- MacOS dlopen search path does not add .dylib extension using gcc/ld
- GCC/LD position-independent code with instruction-relative data access
- Linker error: error adding symbols: bad value with GNU ARM toolchain
- ld: undefined reference to object I can see in objdump
- PT_LOAD issue when trying to call ld
- How to fix, cannot find -lfaiss_c: No such file or directory
Related Questions in GCC9
- Why gcc 9.5.0 treates x>x+1 as tautology?
- using coverity 2019.03
- Overriding gcc's linker using binutil's ld
- coredump when calling virtual method of a dynamic allocated object
- c++ unorderd_map insert fails for value_type with atomic<bool> member
- Build gcc-9.1.0 error with libgfortran.so
- Why is GCC complaining with Wstringop-overflow?
- Link with -rpath=/usr/local/lib works, -rapth=$ORIGIN does not
- Do ubuntu, gcc later version cover older versions?
- Print a #define macro using std::cout
- Can this incomplete type be improved to work with this C++ concept?
- warning: taking address of packed member of 'struct details' may result in an unaligned pointer value [-Waddress-of-packed-member]
- Is there no gcc warning when a literal declared as long is assigned to an int in c?
- CMake Release and Debug running different std::for_each single thread / multi thread c++17
- Segfault when giving a function a struct pointer
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Simply typing
$ORIGNwas causing your shell to expand the variable before the value was passed to the linker. Since you likely had noORIGINenvironment variable, you were getting nothing.You need to prevent shell expansion so that
$ORIGINliterally is passed to the linker - to do that, one uses single quotes. Double quotes won't work because variables are interpolated in double quotes.