Tagged Questions

Relocation is the adaptation of a piece of code assembled on a certain address in memory to another address It is a typical task of dynamic linkers and program loaders, and thus last step in a standard development toolchain.

learn more… | top users | synonyms

10
votes
4answers
5k views

How to modify repository settings in Redmine?

It might sound like a dumb question but I can't for the life of me find the answer to this one. We have a project set up in Redmine, linked to a SVN repository. Everything is working fine, but we ...
10
votes
7answers
855 views

How can a software developer become location independent?

I have been playing with the idea of working from wherever I happen and want to be. Every now and then there is a need to change the scenery. So far I have done that simply by finding a job and ...
7
votes
3answers
692 views

Dynamic relocation of code section

Just out of curiosity I wonder if it is possible to relocate a piece of code during the execution of a program. For instance, I have a function and this function should be replaced in memory each time ...
6
votes
8answers
435 views

Why is a function executed from the same memory address each time?

I'm disassembling an executable: (gdb) disas main Dump of assembler code for function main: 0x004012d0 <main+0>: push %ebp 0x004012d1 <main+1>: mov %esp,%ebp ... Each time ...
5
votes
3answers
5k views

SVN Switch Relocate - is not the root of the repository

I'm trying to move a working copy folder from it's old dedicated svn server, to a new svn server where it is contained within a sub-folder. Using the following relocate command: svn switch --relocate ...
4
votes
1answer
200 views

How to write dynamic loader for bare-metal arm-application

I'm working on a project based on arm9 processor. We use only bare-metal without any operating system, so unfortunately we have no support for shared libraries / dynamic loader yet. I would like to ...
3
votes
1answer
94 views

with RIP-addressing, why x86-64 still need relocations?

So x86-64 has the RIP-relative addressings which makes PIC codes easy to write and relocations needed much less. Why is relocations still needed then on x86-64? For what features? I can try to explore ...
3
votes
2answers
98 views

relocation entries in a shared lib

I'm investigating relocation of shared libraries, and ran into something strange. Consider this code: int myglob; int ml_util_func(int p) { return p + 2; } int ml_func2(int a, int b) { int ...
3
votes
2answers
245 views

What does R_X86_64_32S relocation mean?

Got the following error when i tried to compile a C application in 64-bit FreeBSD. *relocation R_X86_64_32S can not be used when making a shared object; recompile with -fPIC* What is R_X86_64_32S ...
3
votes
1answer
57 views

Migrating a website to a new domain, and associated google index problem

We currently have a website at "somedomain.net/codefest". We do not own this server (or this domain name). Due to capacity problems, we are now moving to a new server. Since we do not own the old ...
2
votes
2answers
124 views

C++ How to control Image Base of LoadLibrary API

After Rebasing the main program very high up in it's own imagebase. How do I guarantee that the dll that gets loaded will load in 0x400000 dllImageBase = LoadLibrary("test.dll"); printf("imagebase = ...
2
votes
2answers
242 views

Why does the -r option (relocatable) make ld not find any libraries?

Running Debian/Linux x86_64 with GNU ld 2.21. Quite simply, if I link with ld -o main main.o /usr/lib/crti.o /usr/lib/crt1.o /usr/lib/crtn.o -lc -lm It works, but when I link with ld -r -o ...
2
votes
1answer
217 views

What is meant by statically relocated or static relocation of a segment

The elf format executable contains various segments like code, data, bss, stack etc. If we say that the segment xyz is statically relocated what does that mean? The elf format binary contains ...
2
votes
2answers
455 views

Howto extend SomeActivity to relocate e.g. onCreateOptionsMenu?

I know this should be fairly simple but I don't get it anyhow. I've got an Activity (let's call it XyActivity) which has gotten pretty long. Therefore, I'd like to relocate some overriden methods to a ...
2
votes
4answers
214 views

What is ActivePerl doing when it “relocates” files during installation?

Given some unix program which I've compiled, what might I need to do to relocate it to a different directory and have it continue running correctly. I'm thinking of Perl, but would be interested in ...
2
votes
2answers
184 views

How prevent from dynamic relocation (rela.dyn)?

I am trying to run a simple program on an powerpc embedded system without any operating system. I am using GNU compiler-linker tools and PSIM as simulator. I've written my own very simple Linker ...
2
votes
2answers
441 views

Is there a way to change the preferred base address of a dll once it's compiled?

I'd like to modify the base address of a few compiled dlls I'm using to move them out of the middle of the virtual space and help with big allocations. Anybody knows of a tool to do that? If it's ...
1
vote
1answer
64 views

What's the difference between R_386_PC32 and R_X86_64_PC32 in link(GNU ld) relocation process

When reading the book Computer System: A Programmer's Perspective Section 7.7.1 Relocation Entries: the brief content of this section is how a linker relocate reference in a different object file. ...
1
vote
0answers
455 views

Relocation truncated to fit error when compiling using g++

I am trying to compile a piece of cpp code under linux, and got the following error: /tmp/ccIeh7Ta.o: In function `model::MulPLSA::EStep()': mul_plsa.cpp:(.text+0xb12): relocation truncated to fit: ...
1
vote
1answer
180 views

relocation error & Linux sw distributing

This is my goal: I developed software in Linux and I need to distribute it without source code. The idea is to create a zip file that contains all the necessary items to run the executable. The user ...
1
vote
1answer
390 views

Problems with static local varaiables with relocatable code

I am buiding a project which has relocatable code on bare metal cortex m3 embedded applicaiton. I do not have a dynamic linker and have implemented all the relocations in my startup code. Mostly it ...
1
vote
1answer
139 views

what's the ELF object file size limitation on 64bit platform?

Assume the x86 64 and linux platform. If you look into the ELF header, the offset are all 64bit. So it's easy to create an object file larger than 4G with relocatoin R_X86_64_64. This means a static ...
1
vote
2answers
487 views

How to apply DOP and keep a nice user interface?

Currently I want to optimize my 3d engine for consoles a bit. More precisely I want to be more cache friendly and align my structures more data oriented, but also want to keep my nice user interface. ...
1
vote
1answer
81 views

ELF and processor specific aspects of dynamic linking

I am trying to understand the process of dynamic linking, in detail. For the purpose, I tried digging into .got section of ELF. q.1 : I read in ELF Standard 1.2(Appendix) that Global offset table's ...
1
vote
1answer
656 views

Eclipse: Relocating a git repo from project to workspace

I've been working on an Eclipse plug-in project for a while now, and I've run into a situation where I need to split the project up to seperate the test cases from the plug-in package. I'm using git ...
0
votes
0answers
14 views

Thepgcgroup recruitment company

Recently I have been contacted on LinkedIn by a company called thepgcgroup.com.. They supposedly help clients from Australia relocate to the US. I'm just wondering if anyone has any experience with ...
0
votes
1answer
88 views

Avoiding linking against static libraries when using libtool

I am trying to cross compile ImageMagick on a linux machine. The libstdc++.a that comes with the toolchain is not compiled with fPIC. I would like to use the so file instead. However libtool keeps ...
0
votes
0answers
92 views

relocation truncated to fit error

I am trying to compile a piece of code with g++. If I user: g++ -o out -mcmodel=large a.cpp b.cpp c.cpp the code can be successfully compiled(Using mcmodel=large option because there are much ...
0
votes
0answers
99 views

Force veneer generation with arm gcc

(All my message is about GCC/LD on arm processors, the toolchain is arm-none-eabi) Hi, I have an elf file in which are defined symbol such as function1 -> 0x03000000. I'd like those symbol addresses ...
0
votes
1answer
144 views

So most of the binary is composed of reloc table?

I just used objdump -x ... to check the sections of a PE file. There's about 90,000 lines of reloc entries: reloc 92 offset bc0 [524bc0] HIGHLOW reloc 93 offset bc4 [524bc4] HIGHLOW .... ...
0
votes
1answer
891 views

Subversion SVN: Repository has been moved Repository moved permanently to XXX please relocate

I dont understand SVN right now. When I change a file and try to update, it gives me the following error: Repository has been moved Repository moved permanently to 'http://myIpAdress/svn/'; please ...
0
votes
2answers
251 views

How is it that main function is always loaded at the same address whereas variables have different address most of the time?

Hey guys! I wrote this small program today and I was blown away by the results. Here is the program int main(int argc, char **argv) { int a; printf("\n\tMain is located at: %p and the variable a ...
0
votes
3answers
401 views

Problem in linking an nasm code

I'm using a computer with an Intel Core 2 CPU and 2GB of RAM. The SO is Ubuntu 9.04. When I try to compile this code: ;programma per la simulazione di un terminale su PC, ottenuto utilizzando l'8250 ...
0
votes
2answers
101 views

relocation task

Is there any difference between the address space relocation and the relocation task done by the linker??As far as I know ,relocation task done by the linker includes process of connecting the ...
0
votes
5answers
959 views

Typical Internship Relocation Package

As someone who was recently offered an internship at a large international company, I'm wondering what the typical benefits package for a relocating intern is? Are relocation packages typically even ...