About 50 results
Open links in new tab
  1. What is a relocatable program? - Stack Overflow

    Apr 11, 2017 · What are relocatable programs and what makes a program relocatable? From the OS memory management context, why programs (processes) need to be relocatable?

  2. What is Relocatable and Absolute Machine Code? - Stack Overflow

    Apr 6, 2014 · The downside of this type of code is that once it is relocated and fixed up, it almost becomes absolute in nature and fixed at its address. What gives relocatable code its major …

  3. virtualenv relocatable -- does it really work - Stack Overflow

    As stated in the documentation --relocatable is an experimental option, so it's not surprising you are having difficulties with it. That said, did you remember to re-run --relocatable after installing new …

  4. linux - Why does the -r option (relocatable) make ld not find any ...

    Jul 7, 2011 · Generate relocatable output---i.e., generate an output file that can in turn serve as input to ld. This is often called partial linking. As a side effect, in environments that support standard Unix …

  5. What is the difference between executable and relocatable in elf …

    Jul 9, 2014 · What is the difference between executable and relocatable in elf format? Asked 11 years, 9 months ago Modified 8 years, 1 month ago Viewed 22k times

  6. Can we detect "trivial relocatability" in C++17? - Stack Overflow

    Dec 20, 2019 · Also, currently the standard mandate that every uninitialized chunk of memory must pass through a constructor in order to be considered a valid C++ object. even if we can somehow figure …

  7. Difference between static library and relocatable object file?

    Mar 16, 2012 · What is the difference between static library and relocatable object file? Or between dynamic library and shared object file. And if it's not equal things, what have dynamic library, that …

  8. java - How To make relocatable rpm? - Stack Overflow

    Mar 30, 2016 · Chapter 15. Making a Relocatable Package A relocatable package is a package that is standard in every way, save one. The difference lies in the prefix tag. When this tag is added to a …

  9. Why are polymorphic objects not trivially relocatable?

    Mar 3, 2025 · Polymorphic objects can be “trivially” relocatable only if you forget about the “trivially” part. Which is what P2786 did. As for being relocatable generally, polymorphic objects are no different …

  10. Does trivially copyable imply trivially relocatable? - Stack Overflow

    Jun 23, 2025 · C++26 will introduce std::is_trivially_relocatable_v, and the proposal author states: Trivially copyable implies trivially relocatable. However, I think the statement might not always be …