Displaying 4 results from an estimated 4 matches for "aotcompiler".
2017 Apr 27
0
Problem with using opus on iOS
...folders/dj/njldlc3s2hldwxtbgw26zwd80000gn/T/96371209-c2d0-41e1-866d-388b6d47c6e7/libadagio.anes.sip.a(bands.o), archive member 'bands.o' with length 84496 is not mach-o or llvm bitcode for architecture arm64
com.adobe.air.ipa.ProcessError: Unable to generate executable
at com.adobe.air.ipa.AOTCompiler.launchProcess(AOTCompiler.java:290)
at com.adobe.air.ipa.AOTCompiler.linkMachO(AOTCompiler.java:775)
at com.adobe.air.ipa.AOTCompiler.generateMachineBinaries(AOTCompiler.java:922)
at com.adobe.air.ipa.IPAOutputStream.createIosBinary(IPAOutputStream.java:504)
at com.adobe.air.ipa.IPAOutputStream...
2013 Apr 17
1
[LLVMdev] [vmkit]Problems when modifying J3
Hi Julien,
I found out what was missing for adding a field to JavaClass.
While precompiling Java code (JavaAOTCompiler) we create an equivalent
LLVM Constant object for each class.
So modifying the internal representation of a class means that you also
have to modify the AOTCompiler.
Here is a patch with a tiny example where an int is added to JavaClass.
If you want to add more complex structures, take a look at...
2013 Apr 16
0
[LLVMdev] [vmkit]Problems when modifying J3
Hi Julien,
I also tried to add a field and get the same error as you.
In theory, to add a field in JavaClass or JavaCommonClass you have to
put your field at the end of the declaration list (in order to minimize
index changes in J3Intrinsics)
in C++ code and in LLVMRuntime/runtime-single.ll
We are working on this issue to see what is going wrong.
The problem is the fact that the error is not
2013 Apr 15
2
[LLVMdev] [vmkit]Problems when modifying J3
Hi all,
I am currently working with vmkit (especially on J3) for a student project,
I want to made some experimentations on J3.
I see in the file lib/j3/VMCore/JavaClass.h that if I want to add some
attributes in the class JavaClass I must change a few thing in
LLVMRuntime/* and in JnjvmModule.cpp.
But JnjvmModule.cpp does not exist anymore. So my first question is : what
is the equivalent of