Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
1answer
262 views

Compiling ghc with -fPIC support

I'm trying to install GHC with -fPIC support in Fedora. I've grabbed a source tarball since it seems no binary one has this. In Build.mk i've changed the quick build type to ifeq "$(BuildFlavour)" ...
8
votes
2answers
189 views

Global variables, shared libraries and -fPIC effect

I made a piece of code which consists in a dynamic library (lib.c), and a main executable (main.c). In both files I define a global variable named: int global. Not very smart but it's not the ...
8
votes
1answer
738 views

What is the difference between `-fpic` and `-fPIC` gcc parameters?

I've already read the gcc manpage, but I still can't understand the difference between -fpic and -fPIC. Can someone explain it, in a very simple and clear way? (as a bonus, you might also compare ...
6
votes
2answers
174 views

Why is fPIC absolutely necessary on 64 and not on 32bit platforms?

I recently received a: ...relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC error while trying to compile a program as a shared ...
6
votes
2answers
3k views

compile with -fPIC option but the option it is already in the makefile

Hello I get this error whem I am trying to do the make: relocation R_X86_64_32 against `vtable for Torch::MemoryDataSet' can not be used when making a shared object; recompile with -fPIC It says ...
5
votes
3answers
556 views

GCC -fPIC option

I have read the link about GCC's Options for Code Generation Conventions, but could not understand what is "Generate position-independent code (PIC)". Please give an example to explain me what does it ...
4
votes
2answers
202 views

Is there a way to determine that a .a or .so library has been compiled as position indepenent code?

I am getting a linking error when compiling the numpy library against lapack indicating I need to compile lapack with -fPIC. I thought I had done just that. Is there a way to determine that the ...
3
votes
1answer
386 views

Generating %pc relative address of constant data

Is there a way to have gcc generate %pc relative addresses of constants? Even when the string appears in the text segment, arm-elf-gcc will generate a constant pointer to the data, load the address ...
2
votes
3answers
200 views

How to use relative position in c/assembly?

It's said Position Independent Code only uses relative position instead of absolute positions, how's this implemented in c and assembly respectively? Let's take char test[] = "string"; as an example, ...
2
votes
1answer
440 views

Mixing static libraries and shared libraries

I have a project where I have one static library libhelper.a and another with my actual shared object library, libtestlib.so. My goal is to link libhelper.a into libtestlib.so. Is that possible on ...
2
votes
2answers
581 views

Trying to load position independent code on cortex-m3

I have an embedded application which will have a bootloader which will decide to run 1 of two applications directly from internal flash. I am trying to make these apps position independent so that ...
2
votes
5answers
697 views

Shared libraries and .h files

I have some doubt about how do programs use shared library. When I build a shared library ( with -shared -fPIC switches) I make some functions available from an external program. Usually I do a ...
2
votes
1answer
434 views

What, if any, are the implications of compiling objects with gcc -fPIC flag if they get used in executables?

I am putting together a makefile for a project i am working on. I have an executable and a shared library in the project. Both use some of the same source files which get compiled separately into ...
1
vote
1answer
65 views

PIC on OSX's GCC

Why does the GCC on OSX 10.5 has the -fPIC option turned on by default? Afterall, doesn't it generate larger and slower code?
1
vote
1answer
392 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
2answers
2k views

Linking a shared library against a static library: must the static library be compiled differently than if an application were linking it?

At least on Linux and Solaris, static libraries are really just a bunch of compiled .o's tossed into one big compressed file. When compiling a static library, usually the -fpic flag is ommited, so the ...
0
votes
3answers
43 views

boost testing fpic linking error

I have been staring and googling this but I cannot see what I have done. I have a working project on a 32 bit machine. I have just pulled the repository to a 64 bit machine (which was the original ...
0
votes
0answers
23 views

segment fault after linking an artifact dynamic lib when execute?

I have made a dynamic lib by hand. when linking it to an executable and execute it, gcc complains segment fault. what is the most possible reason for that? when made the lib, I have had a few strange ...
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 ...
-1
votes
1answer
63 views

ROOT install errors: recompile with -fPIC

I'm now trying to install the ROOT package available from http://root.cern.ch/drupal/content/installing-root-source After ./configure, make; I got errors like below: /usr/bin/ld: ...