2016-06-22 6 views
0

gitからlinphoneのオープンソースのVoIPプロジェクトをダウンロードしました。 1は、SDKにシミュレータにlinphoneライブラリの問題をコンパイルするxcode 7.3 MAC OSのエルキャピタンv10.11.4

リンクのホスト文字列をステップに linkに与えられた手順に従いますが、私は立ち往生している

$ sudo ln -s /usr/bin/strings /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/strings 

- 私は 「は/ usr/binに/文字列」パスの下にチェックしている>と'文字列'が見つからず、別のパスが動作しないことが判明しました '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/strings'

- >それ以下の理由で失敗する時間

ln: failed to create symbolic link '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/strings': No such file or directory 

- >オンビルド以下の出力を受け取りました。私が言及しているリンクの下に

******************************************************************************* 
This makefile is deprecated. Please see README.md for compilation instructions. Here are some equivalents: 
Equivalent of make is: cd ../../ && ./prepare.py && make 
Equivalent of make enable_gpl_third_parties=no is: cd ../../ && ./prepare.py -DENABLE_GPL_THIRD_PARTIES=NO && make 
Equivalent of make enable_debug=yes is: cd ../../ && ./prepare.py -d && make 
Equivalent of make enable_i386=yes is: cd ../../ && ./prepare.py all && make 
Equivalent of make enable_zrpt=yes enable_opus=yes enable_ffmpeg is: cd ../../ && ./prepare.py -DENABLE_ZRTP=YES -DENABLE_OPUS=YES -DENABLE_FFMPEG=YES && make 
******************************************************************************* 

1)https://libraries.io/github/mfrager/linphone-iphone

2) https://github.com/BelledonneCommunications/linphone/blob/master/README.macos.md

3)https://ohthehugemanatee.org/blog/2015/10/01/how-i-got-el-capitain-working-with-my-developer-tools/

答えて

0

- >私はパスの下にチェックしている「は/ usr/bin/strings "を見つけ、 'strings'が見つかりませんでした。また別のパスはworではありませんk

まず、このパスにstringsファイルを生成する必要があります。その後 は、アプリケーションでのあなたのXcodeがXcode.appまたはXcode7.3.appこのエラーの


This makefile is deprecated. Please see README.md for compilation instructions. 

として名を持っているかどうか、あなたが代わりにしてみてください。このコマンド

$ make all 

をしようとしているため、それが発生する可能性があることを確認してくださいこれは:

./prepare.py && make 

など家庭ビールに関する詳細は、については、(あなたがそれ以下のyou'rを述べたように)正しくは、次のとおりです。 building linphone-sdk

また、すべての権限(のrwxrwxrwxに)からLinphone-SDKをするためのディレクトリとすべての他の関連を与えますファイル

iOSプロジェクトでこれを実行しました。
これがあなたを助けてくれることを願っています!ダブルチェックに

醸造更新、その後 醸造ドクター

:自作用

0

は必ず実行してください。http://www.successmonkey.co.nz/blog/building-linphone-for-ios

依存関係がインストールされたら、./prepare.pyを実行してすべてをコンパイルして(サブモジュール/ linphone/mediastreamer2/src/basemsfactory.csで簡単に修正できます)、Xcodeを使用して最終アプリケーションをビルドします。

関連する問題