2010-11-27 8 views
0

XNATouchおよびbtouchで生成されたMtouch生成の問題は、admobバインディングを生成しました。XNATouchおよびbtouchで生成されたMtouch生成の問題は、admobバインディングを生成しました。

iPhoneのAdMobライブラリ用のbtouchで生成されたC#バインディングを試しています。 MonoDevelop/Monotouchによって作成されたテストアプリケーションがあります。プロジェクトディレクトリにlibAdMobNoThumb.aとlibTouchJSON.aをコピーした後、私たちは余分なフラグを次のようにリンク:

-v -v -v -gcc_flags "-L${ProjectDir} -lAdMobNoThumb -lTouchJSON -force_load ${ProjectDir}/libAdMobNoThumb.a -force_load ${ProjectDir}/libTouchJSON.a" 

予想通り、この作品、AdMobのバナー広告の機能が動作しています。

次のステップとして、これをXNATouchプログラムで試してみたいです。 XNATouch_1_0ダウンロードパッケージで利用可能なBouncingBoxデモを使用します。それはエラーなしでコンパイルし、うまく動作します。我々は(デモプロジェクトディレクトリにLIBSをコピーした後)の上に余分なフラグを追加した場合でも、コンパイルが次のエラーメッセージで失敗します(これらは、私たちが「置き換え、オリジナルのメッセージが

Error 1: mtouch failed with the following message: 
main.m:9:26: error: mono/jit/jit.h: No such file or directory 
main.m:10:36: error: mono/metadata/assembly.h: No such file or directory 
main.m:11:39: error: mono/metadata/mono-config.h: No such file or directory 
main.m:12:38: error: mono/metadata/mono-debug.h: No such file or directory 
main.m:13:26: error: monotouch/gc.h: No such file or directory 
main.m:14:33: error: monotouch/monotouch.h: No such file or directory 
main.m: In function 'main': 
main.m:1811: error: 'MonoAssembly' undeclared (first use in this function) 
main.m:1811: error: (Each undeclared identifier is reported only once 
main.m:1811: error: for each function it appears in.) 
main.m:1811: error: 'assembly' undeclared (first use in this function) 
main.m:1813: error: 'MTSupport' undeclared (first use in this function) 
main.m:1813: error: 'gcd' undeclared (first use in this function) 
main.m:1838: warning: implicit declaration of function 'monotouch_enable_debug_tracking' 
main.m:1899: error: 'MonoDebugOptions' undeclared (first use in this function) 
main.m:1899: error: 'options' undeclared (first use in this function) 
main.m:1921: error: expected expression before ')' token 
main.m:1925: warning: implicit declaration of function 'mono_debugger_agent_parse_options' 
main.m:1926: warning: implicit declaration of function 'mono_debug_init' 
main.m:1926: error: 'MONO_DEBUG_FORMAT_MONO' undeclared (first use in this function) 
main.m:1957: warning: implicit declaration of function 'mono_register_config_for_assembly' 
main.m:1963: warning: implicit declaration of function 'mono_register_machine_config' 
main.m:1969: warning: implicit declaration of function 'mono_jit_init_version' 
main.m:1976: warning: implicit declaration of function 'monotouch_init' 
main.m:1990: error: 'gchar' undeclared (first use in this function) 
main.m:1990: error: 'tokens' undeclared (first use in this function) 
main.m:1990: warning: implicit declaration of function 'g_strsplit' 
main.m:1991: error: 'aname' undeclared (first use in this function) 
main.m:1992: error: 'basename' undeclared (first use in this function) 
main.m:2001: warning: implicit declaration of function 'g_strdup_printf' 
main.m:2003: warning: implicit declaration of function 'g_strfreev' 
main.m:2005: warning: implicit declaration of function 'monotouch_register' 
main.m:2005: warning: implicit declaration of function 'mono_assembly_open' 
main.m:2009: warning: implicit declaration of function 'g_free' 
main.m:2019: warning: implicit declaration of function 'monotouch_get_has_classmap' 
main.m:2020: warning: implicit declaration of function 'monotouch_map' 
main.m:2056: error: 'guint64' undeclared (first use in this function) 
main.m:2075: warning: implicit declaration of function 'mono_jit_exec' 
main.m:2075: warning: implicit declaration of function 'mono_domain_get' 
i686-apple-darwin10-gcc-4.2.1: main.o: No such file or directory 
(1) (XnaTouch.Samples.BouncingBox) 

あるの/ var /フォルダ/ [メインと 'のhF/hF42FIdhEUmY1y-pGRsu1k +++ TI/-Tmp-/tmp159b7497.tmp/main]

これはリンカオプションによってどのように引き起こされるのか誰かが説明できますか?最初のエラー行を取る:それはもはやヘッダファイルを見つけることはありません! MonoTouchでxnatouch iphoneのAdMobのC#の

答えて

0

これは非問題です:私たちは...

タグをこれを理解するための知識を欠いており、実際にいくつかの説明をいただければ幸いです。

サンプルの設定が原因です。彼らはまだ私のシステム上に存在しないsdk 4.0を参照しました。

申し訳ありません。

関連する問題