创建pjsip module 的python 版本时遇到的错误: error: ld returned 1 exit status error: ommand ‘x86_64-linux-gnu-gcc’failed
解决办法如下:
(1)执行configure 时先执行 export CFLAGS=”$CFLAGS -fPIC” 命令。所以就是说把 ./configure &&make dep &&make 替换为 export CFLAGS="$CFLAGS -fPIC" && ./configure &&make dep &&make 然后再执行下一步。
(2)如果此过程仍然报错,且错误是“fatal error : alsa/asoundlib.h: No such file or directory ”的话,为了修复这个错误需要先下载一个 libasound2-dev的包。下载此包的命令为apt-get install libasound2-dev.