28 Mar 2023
|
bro-gen
binding
robopods
altpods
AltPods were updated to v1.30.0-SNAPSHOT to sync with recent releases.
Updated pods
These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots
maven repo under 1.30.0-SNAPSHOTS
version.
Source code @github
Updates are not fully tested, please open issue if bug found.
08 Mar 2023
|
idea
DevKit is legacy tool to develop Intellij Idea plugins. It is being used for development of RoboVM compiler and Idea plugin as have benefits of seamless debugging and code hotswap.
Sadly starting from Idea 2022.3 it stopped to Run/Debug projects with following message:
Error: Could not find or load main class com.intellij.idea.Main
17 Feb 2023
|
bro-gen
binding
robopods
altpods
AltPods were updated to v1.29.0-SNAPSHOT to sync with recent releases.
Updated pods
These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots
maven repo under 1.29.0-SNAPSHOTS
version.
Source code @github
Updates are not fully tested, please open issue if bug found.
19 Dec 2022
|
technote
compiler
XCFramework is a distributable binary package that contains variants of binary framework or library built for different platforms/cpu architectures. Introduced in Xcode11.
Also, it solves problem packaging Arm64 and Arm64-simulator binaries into Fat framework/library.
RoboVM had workaround for two year already to framework path for different architectures. But it requires manual preparation.copying for each framework and a bit annoying.
PR694 introduced two options to improve the usability:
1. Direct reference in <xcFrameworks>
18 Dec 2022
|
bro-gen
binding
robopods
altpods
AltPods were updated to v1.28.0-SNAPSHOT to sync with recent releases.
Updated pods
These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots
maven repo under 1.28.0-SNAPSHOTS
version.
Source code @github
Updates are not fully tested, please open issue if bug found.
14 Nov 2022
|
bro-gen
binding
robopods
altpods
AltPods were updated to v1.27.0-SNAPSHOT to sync with recent releases.
Updated pods
These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots
maven repo under 1.27.0-SNAPSHOTS
version.
Source code @github
Updates are not fully tested, please open issue if bug found.
12 Oct 2022
|
bro-gen
binding
robopods
altpods
AltPods were updated to v1.26.0-SNAPSHOT to sync with recent releases.
Updated pods
New pod
These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots
maven repo under 1.26.0-SNAPSHOTS
version.
Source code @github
Updates are not fully tested, please open issue if bug found.
12 Aug 2022
|
bro-gen
binding
robopods
altpods
AltPods were updated to v1.25.0-SNAPSHOT to sync with recent releases.
Updated pods
These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots
maven repo under 1.25.0-SNAPSHOTS
version.
Source code @github
Updates are not fully tested, please open issue if bug found.
13 Jul 2022
|
bro-gen
binding
robopods
altpods
AltPods were updated to v1.24.0-SNAPSHOT to sync with recent releases.
Updated pods
These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots
maven repo under 1.24.0-SNAPSHOTS
version.
Source code @github
Updates are not fully tested, please open issue if bug found.
06 Jul 2022
|
compiler
jep
java18
Just in 1h after release first reports arrived. It resulted in failure to link with messages like:
Undefined symbols for architecture arm64: “_[j]java.lang.Object.notifyAll()V[lookup]”,
Moment here: Object.notifyAll
is final method and doesn’t require [lookup]
trampoline but quick look shows that its being invoked now with invokeinterface
JVM instruction instead of invokevirtual
as it was before.
Long story short: this happen due Java18 was used for compilation on build machine. And even if we target Java8 when compiling runtime different byte code was generated due applied JDK-8272564.
In short term – planned 2.3.18 release using Java 15 on host.
Also we have to support method lookup for Object methods when these invoked on interfaces as it described in jvms-5.4.3.4 item 3.