-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Fake.class to support OpenJ9 Field Layout #2437
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Currently lombok crashes when building with OpenJ9 JDK as described in projectlombok#2414 It is due to the `override` field offset from Fake.class doesn't match actual offset value for AccessibleObject.class in OpenJ9 This change is to support the OpenJ9 Field layout algorithm.
Any updates on this? |
No, but neither of the maintainers has been very active of late. Roel
doesn't show up a lot, usually it's Reinier, but since Reinier has a day
job in healthcare apparently he has been so swamped in work that lombok has
fallen by the wayside a bit.
There was some activity yesterday though, so I'm guessing it's just a
matter of time and therefore, patience.
…On Mon, May 11, 2020 at 11:17 PM Thiago Henrique Hüpner < ***@***.***> wrote:
Any updates on this?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#2437 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABIERMX26T6OCJWHCQ34X3RRBTORANCNFSM4MOSFQBA>
.
--
"Don't only practice your art, but force your way into it's secrets, for it
and knowledge can raise men to the divine."
-- Ludwig von Beethoven
|
Good find. Thanks! |
@rspilker, do you know, when 1.18.13 with fix is going to be released? |
spring boot 2.3.3 + lombok 1.18.20 and edge-SNAPSHOT cant running with openj9-0.21.0. Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'dsMasterSqlSessionFactory' threw exception; nested exception is java.lang.ClassFormatError: JVMCFRE149 类文件中存在未知常量标记 19;类=module-info,偏移量=68
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)
... 57 common frames omitted
Caused by: java.lang.ClassFormatError: JVMCFRE149 类文件中存在未知常量标记 19;类=module-info,偏移量=68 |
This was referenced Mar 13, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently lombok crashes when building with OpenJ9 JDK as described in #2414
It is due to the
override
field offset from Fake.class doesn't match actual offset value for AccessibleObject.class in OpenJ9This change is to support the OpenJ9 Field layout algorithm.