How to compile Linphone for iPhone ? Couldn't find libmediastreamer_base.a libmediastreamer_voip.a

前端 未结 3 746
时光说笑
时光说笑 2021-01-25 09:02

I am trying to compile linphone source code. I\'ve downloaded the code from Here. When I started the xcode all the libraries are missing. I have installed all ports specified in

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-25 09:30

    Have you build libraries? Go to linphone source folder and enter commands:

    $ cd submodules/build
    $ make all 
    

    or if you don't want make your project GPL compliant enter this commands instead:

    $ cd submodules/build
    $ make all enable_gpl_third_parties=no
    

    This is all written in the README file. I also downloaded linphone source for the same link and I just followed README file. It all worked. Hope this helps.

提交回复
热议问题