链接错误:"重定位R_X86_64_32 ...在制作共享对象时不能使用;用-fPIC"重新编译

时间:2016-11-16 21:47:17

标签: c++ gcc tox fpic

我正在尝试编译Tox(特别是toxcore)。当我尝试编译它时,遇到以下错误:

>make
make  all-recursive
make[1]: Entering directory '/root/Tox/toxcore'
Making all in build
make[2]: Entering directory '/root/Tox/toxcore/build'
  CCLD     libtoxav.la
/usr/bin/ld: /usr/local/lib/libvpx.a(vpx_codec.c.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC
/usr/local/lib/libvpx.a: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
Makefile:1385: recipe for target 'libtoxav.la' failed
make[2]: *** [libtoxav.la] Error 1
make[2]: Leaving directory '/root/Tox/toxcore/build'
Makefile:506: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/root/Tox/toxcore'
Makefile:410: recipe for target 'all' failed
make: *** [all] Error 2

在错误消息之后,我尝试通过导出C ++标志(fPIC),通过向export CXXFLAGS="$CXXFLAGS -fPIC"configure)添加参数并通过编辑来使用./configure --enable-shared Makefile(将CC = gcc更改为CC = gcc -fPIC),但这些尝试都没有奏效,我仍然遇到同样的错误。可能出现什么问题?

这是我现在采用的方法(在Ubuntu上):

sudo apt-get install pkg-config
sudo apt-get install build-essential
sudo apt-get install libtool
sudo apt-get install autotools-dev
sudo apt-get install automake
sudo apt-get install checkinstall
sudo apt-get install check
sudo apt-get install git
sudo apt-get install yasm

cd ~
mkdir Tox
cd Tox

git clone https://github.com/jedisct1/libsodium.git
cd libsodium
git checkout tags/1.0.3
./autogen.sh
./configure && make check
sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.0 --nodoc
sudo ldconfig
cd ..

git clone https://chromium.googlesource.com/webm/libvpx
cd libvpx
git checkout tags/v1.3.0
./configure
make
make install
cd ..

git clone https://github.com/irungentoo/toxcore.git
cd toxcore
autoreconf -i
./configure
make
sudo make install
cd ..

2 个答案:

答案 0 :(得分:0)

配置脚本中必定存在错误,不应该提出libvpx.a

但是不要担心,因为Ubuntu为libvpx-devlibsodium-dev提供了包,并且使用它们似乎工作正常,所以你应该这样做,除非有一些强有力的理由不要。

此外,除非您需要经典toxcore,否则似乎c-toxcore是继承者,所以您可能应该使用它。

答案 1 :(得分:0)

使用--enable-pic进行配置会添加必要的-fPIC选项,对我有用。