1
votes

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 when making a shared object; recompile with -fPIC /usr/local/lib/liblua.a: could not read symbols: Bad value

2
Try ./configure CFLAGS=-fPIC; make instead.user529758
still getting same errorBilal
still not having enough contextuser529758
I tried this ./configure CFLAGS=-fPIC but getting same error as aboveBilal

2 Answers

3
votes

I resolved the problem. I was compiling on 64 bit platform, but /usr/local/lib/liblua.a is 32 bit. so I just disable it make menuselect.

0
votes

your problem seems to be the lua library. if you're on centos, try

yum install lua lua-devel

and then rerun your ./configure on asterisk.