Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
66 views

Performance differences between VALA vs AOT compilations?

I have been developing an image processing application in Java but I have been recently interested in VALA. The reason is because I believe I can increase the application performance (my concern is ...
3
votes
1answer
214 views

MonoTouch does not support OpenAsync method for opening a web service connection when running on the device (works on the simulator)

I am using MonoTouch 4.0.7 with MonoDevelop 2.8 Beta 2 and XCode 4 (by the way someone know how to get MonoTouch 4.2 version?). We are trying to call a .Net web service method through classes ...
3
votes
1answer
466 views

C# Mono aot with protobuf-net getting ExecutionEngineException

First a big thanks to Marc Gravell author of protobuf-net http://code.google.com/p/protobuf-net/ . It's a really great resource. Anyhow I am hoping that Marc or someone else can help me resolve this ...
3
votes
1answer
224 views

Is there a Native Java AOT For Mac OSX?

I wonder if there is a AOT complier(s) for the Mac to compile Java apps into native executables, therefore eliminating the need for a JRE? I have seen commercial examples for both Windows and Linux ...
3
votes
2answers
208 views

Make a compiled binary run at native speed flawlessly without recompiling from source on a another system?

I know that many people, at a first glance of the question, may immediately yell out "Java", but no, I know Java's qualities. Allow me to elaborate my question first. Normally, when we want our ...
2
votes
2answers
74 views

How Translate ByteCode to Machine Native Code

I am looking for a translator for translate Java ByteCode to Machine Native Code before execution to improve performance. I heard that OpenOffice is made with JAVA, but I can't see any jar file in ...
2
votes
2answers
87 views

Using mono aot / aot-full compilation: nothing appears to happen?

I've got a C# project that I need compiled to a native binary. I've read here: http://www.mono-project.com/AOT That Mono can precompile an assembly to one of two options: --aot : A precompiled ...
2
votes
2answers
188 views

Monotouch blows up on LINQ query when using device builds

Here's the error I get: | mscorlib | | Attempting to JIT compile method 'System.Linq.OrderedEnumerable`1:GetEnumerator ()' while running with --aot-only. From what I've read it looks like the ...
2
votes
2answers
158 views

What differences are there between running monotouch in simulator vs. on device?

Is there any documentation on the difference between the monotouch runtime used in (iPad) Simulator vs. running on an actual device? I've recently had to change some code that resulted in ...
2
votes
3answers
422 views

How to pass a typed collection from clojure to java?

I know the basics of clojure/java interop: calling java from clojure and vice versa. However, I was not able to return a typed collection from clojure to java. I am trying to see something of that ...
2
votes
3answers
142 views

Questions about possible java(or other memory managed language) optimizations

From what I have read java (usually) seems to compile java to not very (is at all?) optimised java bytecode, leaving it to the jit to optimise. Is this true? And if it is has there been any ...
2
votes
1answer
228 views

When aiming to AOT compile a ruby script with MacRuby is there any restriction on the language?

I am looking into using MacRuby and am interested in it's ability to AOT compile ruby code down to an executable. I am wondering though whether this places a restriction on the code in any way? Is ...
2
votes
1answer
476 views

Axapta: Find table by name in AOT

I would like to query the AOT to see if a table name exists using X++. Can anyone point me in the right direction or provide some sample code for doing that? If table exists with the name (str ...
1
vote
2answers
50 views

Monotouch JIT error on device with LINQ

I am trying to run our application on an iOS device through the Debug|iPhone option in MonoTouch. We run into a problem quite fast however. The application crashes with the following exception ...
1
vote
1answer
124 views

MonoTouch JIT Error in Release mode on Linq Method

I currently have some code as shown below that uses Linq to organize some IEnumerables for me. When executing this code on the device in release mode (iOS 5.0.1, MonoTouch 5.0.1, Mono 2.10.6.1) I get ...
1
vote
1answer
159 views

JIT compile error with protobuf-net on MonoTouch/iOS device (iPhone/iPad)

I am using protobuf-net v2 beta r450 (binary distribution) and building a serialization assembly ahead of time using the technique described here: ...
1
vote
1answer
127 views

MonoTouch 4.2 does not support System.ServiceModel.EndpointAddress() when running on the device (works on the simulator)

I am using MonoTouch 4.2.1 with MonoDevelop 2.8 Beta 2 and XCode 4. We are trying to call a .Net web service method through classes generated by the slsvcutil proxy generator. When testing the app on ...
1
vote
2answers
140 views

Monotouch crash dictionary FirstOrDefault() Type Initializer PredicateOf

after 2 Weeks of Developement i first tried my app on the iphone and it crashes at the following line (which works perfectly in the simulator): i have the following code: private readonly ...
1
vote
1answer
530 views

How can i minimize the AOT compilation in leiningen (Clojure)

When you create a Clojure project with leiningen all the *.clj-files are compiled AOT. Normally the AOT compilation is not necessary and I would like to minimize it. This is necessary for me to raise ...
1
vote
3answers
620 views

Can I use mono's AOT feature to natively “pre-compile” .NET DLLs/EXEs to make them harder to reverse engineer?

Can I use mono's AOT (Ahead of Time compilation) feature to natively "pre-compile" all or part of some of my own .NET DLLs (and or EXEs) to make them harder to reverse engineer? I'm using Windows (7 / ...
1
vote
3answers
515 views

Mono AOT Segmentation Fault - Strange Problem

I wanted to test Mono AOT, so I wrote a simple console application with MonoDevelop: using System; namespace abc { public class Program { public static void Main() { ...
1
vote
3answers
383 views

What's the difference between ahead of time compiled code and natively compiled code

i came across ahead-of-time (aot) compilation in some writing by Miguel de Icaza about producing applications for iphone using mono. It sounds like what results is native code. Is this so or what is ...
0
votes
1answer
99 views

how to AOT (ahead-of-time) compile a c++ program

I'm new to AOT compilation and I was wondering if someone could post a complete example of how to do a sample "Hello, world!" in c++ using LLVM and clang. I looked on the llvm.org website and cannot ...
0
votes
2answers
728 views

Free AOT Java compiler

Does anyone know some free AOT Java compiler? I have found just one - http://gcc.gnu.org/java/.
0
votes
1answer
391 views

Axapta: Is it possible to move AOT nodes programatically?

Is it possbile to move aotnode in axapta through code(I want to achive the same movement as done via alt-up, alt-down) Dynamics AX 2009 has AOTmove method, but when I try #AOT ProjectNode root; ...
0
votes
1answer
187 views

mono --aot with MinGW: unknown pseudo-op: `.local'

Can I user mono's AOT feature to natively "pre-compile" .NET DLLs (and or EXEs) to make them harder to reverse engineer? If so, how do I get mono/AOT working in Windows 7? (I'm running x64 but the ...
0
votes
2answers
1k views

mono AOT on Windows exe gives me an DLL

I'm on Windows and I'm trying ahead of time compilation on Main.exe that's been compiled with the Mono C# compiler gmcs (also tried mcs). >mono --aot Main.exe Mono Ahead of Time compiler - ...
-2
votes
0answers
25 views

mono aot not working

I tried to run my program using AOT, but it failed. It says native assembler is missing. Where can I get it? Mono Ahead of Time compiler - compiling assembly C:\Users\Mark\Desktop\Test. exe Code: ...
-2
votes
3answers
253 views

I am in quest of a less trivial example of java / clojure interop [closed]

Does anybody want to answer my question linked here how-to-pass-a-typed-collection-from-clojure-to-java , by providing a clear example, for the rest of us who are trying to sneak clojure in their ...