私はBugSenseのlibにバインドしようとしていますが、余分なビルド引数に-gcc_flags
を使用してフレームワークを組み込もうとしています。 BugSenseは静的な.a libではなく.frameworkを提供します。グーグルではフレームワークを自分のプロジェクトに正しくリンクする方法の解決には至りませんでした。私は私の参照設定]フォルダに.frameworkフォルダをコピーしたカスタム.frameworkへのバインド
-v -v -v -gcc_flags "-framework ${ProjectDir}/../References/BugSense-iOS.framework"
:
これまでのところ、私はこのようなものを持っています。このエラーのmTouchのプロジェクト成果の構築
:
Error 1: mtouch failed with the following message:
/var/folders/XV/XVCgAKTfGEmAUQGlxdGm9E+++TU/-Tmp-/tmp36ed5372.tmp/main.m: In function 'main':
/var/folders/XV/XVCgAKTfGEmAUQGlxdGm9E+++TU/-Tmp-/tmp36ed5372.tmp/main.m:1838: warning: implicit declaration of function 'monotouch_enable_debug_tracking'
/var/folders/XV/XVCgAKTfGEmAUQGlxdGm9E+++TU/-Tmp-/tmp36ed5372.tmp/main.m:1921: warning: implicit declaration of function 'mini_get_debug_options'
/var/folders/XV/XVCgAKTfGEmAUQGlxdGm9E+++TU/-Tmp-/tmp36ed5372.tmp/main.m:1925: warning: implicit declaration of function 'mono_debugger_agent_parse_options'
/var/folders/XV/XVCgAKTfGEmAUQGlxdGm9E+++TU/-Tmp-/tmp36ed5372.tmp/main.m:2059: warning: cast from pointer to integer of different size
/var/folders/XV/XVCgAKTfGEmAUQGlxdGm9E+++TU/-Tmp-/tmp36ed5372.tmp/main.m:2059: warning: initialization makes pointer from integer without a cast
ld: framework not found /Users/xxx/Projects/myProj/myProj/../References/BugSense-iOS.framework
collect2: ld returned 1 exit status
こんにちはアンドリュー。 BugSenseをMonotouchにバインドするのに成功したら、ソリューションを共有しますか?私は自分自身を試していますが、うまくいきません。ありがとうございました。おかげさまで – Casper