The fpic tag has no wiki summary.
0
votes
0answers
29 views
linking a static(.a) library with a shared (.so) library, getting error “relocation R_X86_64_32S against a local symbol; recompile with -fPIC”
Compiling with g++ 64 bit in redhat using eclipse.
Compile Error:
../lib-EL5-64bit/libskd3_clnt_30134500.a(skd_clnt.o): relocation R_X86_64_32S against `a local symbol' can not be used when making a ...
0
votes
0answers
61 views
elocation R_X86_64_32 against `.rodata' can not be used when making a shared object; recompile with -fPIC
My server is on ubuntu 12.04.
I'm trying to install the Levenshtein-MySQL-UDF available here : https://github.com/jmcejuela/Levenshtein-MySQL-UDF
I downloaded the .zip and locate the levenshtein.c ...
0
votes
0answers
12 views
How to install sharedhostffmpeg on a host running redhat linux while not being root?
The shared host is running on Red Hat 4.4.7-3.
All these packages have successfully installed:
- presetup.sh, autoconf.sh, automake.sh, libtool.sh, libiconv.sh, libpng.sh, libjpeg.sh, zlib.sh, ...
0
votes
0answers
98 views
-fPIC and shared library
If I build everything as -fPIC for a shared library, and if it has some not PIC code (that came from some asm). What's going to happen if i try to use this .so from multiple processes and both of them ...
-1
votes
2answers
109 views
getting error “recompile with -fPIC”
After ./configure asterisk in centos I type make command but getting the following error
/usr/bin/ld: /usr/local/lib/liblua.a(lapi.o): relocation R_X86_64_32 against `luaO_nilobject_' can not be used ...
0
votes
0answers
412 views
linker error “relocation R_X86_64_PC32 against undefined symbol” despite compilation with -fPIC
I'm compiling a c++ program using the command line
g++ -c prog.cc -std=c++11 -march=native -fPIC -fopenmp
and then try to make a shared object via
g++ prog.o -shared -fopenmp -o lib/libprog.so
...
0
votes
1answer
79 views
Giza++ installation, FORTRAN problems
I am trying to install Giza++ and Moses on Ubuntu 12.10 64bit. While make I keep on getting the same problem:
Finished building giza
cp ../lib/libgiza.a /usr/local/lib/
...
2
votes
0answers
170 views
How to know whether a shared library binary is built with -fPIC option
I am working on embedded Linux environment. I have a set of shared libraries in binary format (I don't have the source code and Makefile) and I want to check whether they have been compiled with -fPIC ...
1
vote
0answers
192 views
PIC compilation - error: relocation R_X86_64_32S against `vtable for hit' can not be used when making a shared object; recompile with -fPIC
I'm newbie with Linux and I'm having trouble with compiling a make file which works well in a 32-bit machine. I didn't write this program but I need it to work to use its functionalities. My machine ...
3
votes
3answers
674 views
how to recompile with -fPIC
I was trying to reinstall my ffmpeg like this guide on my ARM Ubuntu machine.
Unfortunatley, when I compile a programm which uses this lib I get the following failure:
/usr/bin/ld: ...
4
votes
1answer
212 views
Why doesn't g++ emit this constructor-related noexcept warning with `-fpic` enabled?
I have next code:
#include <exception>
#include <cstdlib>
void g() { throw 1; }
void (*p)() = g;
template <class T>
void f(T) noexcept (noexcept (T())) // warning 1
{
p();
}
...
0
votes
1answer
284 views
Shared library linked with static library: relocation error
I would like to create a shared library with gfortran, linking it with the static version of libgfortran for portability reasons. Unfortunately, I don't manage to link the different objects ...
0
votes
1answer
133 views
fPIC code in a static library: Why? What happens?
What happens when Position Independent Code is placed in a static library? (In particular, on x86-64)
That is to say: Several .o files are generated with PIC and placed in a .a file. This .a is ...
0
votes
1answer
74 views
Unable to compile sharable .o files with g++
When i compile with the following command:
g++ -fPIC -o obj/buffer.o buffer.cpp
I get the following error:
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/../../../x86_64-linux-gnu/crt1.o:
In function ...
0
votes
1answer
105 views
Apply either --enable-shared or -fPIC on in Code::Blocks
As the question states, I need to apply either of those compiler/linker settings. I am using Code::Blocks 10.05. I've looked through all the build settings screens. I cannot find where to apply these ...
2
votes
1answer
159 views
Storing all registers without scratching any
I am developing a program that will bootstrap another program, so as a result I need to preserve the registers being passed to my program so that i can restore them before jumping to the program that ...
3
votes
1answer
117 views
passing by value and by pointer using position independent code
I've been trying to figure out a few things to do with position independent code, specifically using gcc with -fpic.
I've written a function which measures the time taken to pass a pointer across the ...
1
vote
2answers
597 views
fail when creating shared library with libstdc++ statically linked
using gcc 4.5.1 in a 64bit x86 machine,I first create a.o as following:
g++ -fPIC -c a.cc -o a.o
then try to create liba.so as following:
g++ -static-libstdc++ -shared -W1,-soname,liba.so -o ...
0
votes
3answers
706 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 ...
-1
votes
1answer
1k 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: ...
18
votes
1answer
529 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)" ...
10
votes
2answers
2k 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 ...
15
votes
3answers
1k 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 ...
2
votes
1answer
238 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
241 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 ...
7
votes
1answer
299 views
PIC (Position Independedent Code)
Is there any way to check if an object file(.o file) is PIC-enabled?
3
votes
3answers
550 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, ...
3
votes
1answer
2k 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 ...
29
votes
3answers
7k 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 ...
2
votes
1answer
1k views
Problems with static local variables with relocatable code
I am building a project which has relocatable code on bare metal. It is a Cortex M3 embedded application. I do not have a dynamic linker and have implemented all the relocations in my startup code. ...
2
votes
2answers
1k 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 ...
20
votes
1answer
3k 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
818 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 ...
5
votes
1answer
881 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 ...
8
votes
3answers
5k 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 file. When compiling a static library, usually the -fpic flag is ommited, so the generated ...
17
votes
5answers
4k views
How can I tell, with something like objdump, if an object file has been built with -fPIC?
How can I tell, with something like objdump, if an object file has been built with -fPIC?
2
votes
5answers
2k 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 ...
7
votes
1answer
699 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 ...
22
votes
5answers
4k views
What does -fPIC mean when building a shared library?
I know the '-fPIC' option has something to do with resolving addresses and independence between individual modules, but I'm not sure what it really means. Can you explain?
9
votes
3answers
6k views
Recompile with -fPIC option, but the option is already in the makefile
I get this error when I 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 that I should ...
