29 Mar 2019
|
bro-gen
ios12
binding
iOS 12.2
iOS 12.2 has arrived as PR363.
It reflects changes apple did. Beside updating API robovm-cocoatouch received following updates:
- fixed broken structs in AudioToolBox;
- added IntentsUI framework;
- added UserNotificationsUI framework;
What’s new in bro-gen
18 Mar 2019
|
llvm7
llvm8
llvm
Update#3
Still waiting for official LLVM8 release but it was already tagged.
Meanwhile code was migrate to LLVM8 and commited to dkimitsa/robovm/llvm_80. Following was adapted:
- bindings;
- native code;
- patches.
Code under LLVM8 branch can compile and produce runnable code.
Also both LLVM7/8 has been merged with debugger_local_resolution branch;
Next steps:
- resurect and run RoboVm tests;
- evaluate performance and size footprint of LLVM7 produced code;
Previous updates:
06 Mar 2019
|
llvm7
llvm
Update#2
As per today code from dkimitsa/robovm/llvm_70 is able compile and start application in simulator/device. It gets alive status. What had been done:
- RoboVm compiler infrastructure was updated to produce llvm 7 compatible IR code;
- DebugInformationPlugin was reworked to produce llvm7 debug information;
- Bunch of code was changed as it was broken as per llvm7 vision and produced crashes on asserts inside LLVM.
Next steps:
- merge with debugger_local_resolution branch;
- resurect and run RoboVm tests;
- evaluate performance and size footprint of LLVM7 produced code;
- migrate to LLVM 8 – yep it has to be released this month.
Previous updates:
21 Feb 2019
|
hacking
fix
This post continues tutorial for proper initialization of crash reporters t. Today it focus around issue 350:Crashlytics: Caught exceptions are being reported as crashes.
Root case
Signals.installSignals()
preserves signals handlers and allows RoboVM to handle NPE. But Crashlytics also uses mach exception handler to get crash Apple way. These have priority over signals and this allows Crashlytics to see null pointer exception (EXC_BAD_ACCESS) before RoboVM detects it and report.
The fix
14 Feb 2019
|
debugger
kotlin
jvm
This post continues series of debugger rework, refer to previous post. Today changes are focused around #220 Exception in Lambda transformation using modified soot:
11 Feb 2019
|
bro-gen
tutorial
binding
A struct in the C is a composite data type placed under one name in a block of memory, allowing the different variables to be accessed via a single pointer wiki.
The Bro Java to Native Bridge supports structs data type. And there are several scenarios how they are used:
26 Jan 2019
|
llvm7
llvm
Experiment with LLVM7 had been started. Current version of LLVM used is 3.6. Version 7 itself will not introduce any significant improvement for RoboVM compiler so far. Goal for this activity is to refresh dependencies code base.
Source code of all changes is stored in separate branch dkimitsa/robovm/llvm_70.
Update#1
Very brief: LLVM library code compiles but nothing was running yet.
What has been done so far:
- LLVM and Clang mirror repos are used as source base;
- CMake build files updated to compile version 7;
- Swig files for java bindings were cleaned up initially to produce clean results without need of post-work-arounds;
- LLMV Extra code – set of helpers and wrappers used by RoboVM were updated to work with new LLVM;
- Swift files for bindings were updated to produce v7 wrappers;
- RoboVM compiler’s code were updated as LLVM API was changed and lot of functionality was deprecated.
All these changes brought LLVM 7 code into project and now its possible to compile RoboVM compiler code.
Things to do(high level overview):
- RoboVm has to produce LLVM7 IR code as 3.6 is not compatible anymore;
- Debugger DWARF IR information is also not compatible with 7.0 and has to be reworked;
- bugs-bugs-bugs
21 Jan 2019
|
fix
swift
UPDATE:
As result of testing rules_apple was wrong and Apple reject such binaries.
In general it would be enough just tp fix issue introduced in PR340 but bitcode strip and SwiftSupport/iphoneos/
will also stay as part of this PR.
Starting from Xcode 10 ARM64E arch has to be stripped from included framworks as this caused Invalid Swift Support
at Apple side. There was a fix for it but sadly there was no feedback and another was introduced during the fix. As result investigation continue with Eric Nondahl report and fix is ongoing (not confirmed yet).
To fix this issue PR346 is created and it introduces following changes:
- fixes issue introduced in PR340: copy of swift libraries in
SwiftSupport/
was stripped from ARM64E arch but shell not be touched at all;
- swift libraries are now being copied into
SwiftSupport/iphoneos/
same as XCode does;
added code that strips all not used architectures from dynamic binaries (check rules_apple for reference). Probably it is extra as it is enough to remove simulator archs and ARM64E but it is quick win as reduces IPA size. So if it is not breaking anything lets keeping it;
- added code that strips bitcode from dynamic binaries. Same as Xcode does. Reduces final IPA a lot;
- as now all extra architectures are being stripped there is no need for
stripArchs
configuration option that was introduced in PR340. It was removed.
Solution is in progress, please report to gitter channel for any issue found.
08 Jan 2019
|
bro-gen
binding
robopods
altpods
AltPods were update to v1.1.0-SNAPSHOTS. Changes include:
These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots
maven repo under 1.1.0-SNAPSHOTS
version.
Source code @github
Updates are not tested yet, please open issue if bug found.
NB: AltPods – are robopods kept at my personal standalone repo. This is done to prevent main robopods repo from turning into code graveyard. As these pods have low interest of community and low chances to be updated.