本文介绍了跑出0型蹦床的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Monotouch为Iphone编写应用程序。当我在我的iphone上部署应用程序时,我在运行时得到错误Thu Mar 10 23:38:36未知UIKitApplication:com.xxx [0x57b4] [258]

I'm writing an app for the Iphone using Monotouch. When I deploy the application on my iphone I get the error at runtime Thu Mar 10 23:38:36 unknown UIKitApplication:com.xxx[0x57b4][258]

<Notice>: Ran out of trampolines of type 0 in
    '/private/var/mobile/Applications/6104C1ED-5D11-4871-B011-91C23C8D6C83/

过去我得到了同样的错误,但对于类型1和类型2.我能够通过以下方法解决该问题编译器中的参数。

In the past I got the same error but for type 1 and type 2. I was able to fix that problem with the following argument in the compiler.

-aot "nrgctx-trampolines=4048" -aot "nimt-trampolines=4048"

我想知道上面报告的类型0的等价物或者如何解决错误

I wanted to know what is the equivalent for the type 0 reported above or how to address error

推荐答案

类型0是方法蹦床。你想要的参数是

Type 0 are method trampolines. The parameter you want is

-aot "ntrampolines=4048"

单声道手册页:

ntrampolines = [number]
完全编译时模式,方法trampolines
必须在AOT图像中预先创建。您可以使用此参数添加
其他方法蹦床。
默认为1024。

ntrampolines=[number]When compiling in full aot mode, the method trampolinesmust be precreated in the AOT image. You can addadditional method trampolines with this argument.Defaults to 1024.

这篇关于跑出0型蹦床的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 09:05