-
Notifications
You must be signed in to change notification settings - Fork 91
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
Support Java 11+ for SPF #47
Comments
Yes please
…Sent from my iPhone
On Mar 1, 2020, at 4:41 AM, wikumC ***@***.***> wrote:
I went through your GSOC project ideas page and found out that you are looking for a prospective student to add java 11+ support for jpf-symbc. I built jpf-core and jpf-symbc using java 8 and test run some of the examples given. Then I tried to build jpf-symbc using Java 11. First I build jpf-core with Java 11 as jpf-symbc requires to have jpf-core's class files on the classpath. But building jpf-symbc using Java 11, results in several build errors and deprecation warnings.
The main issue I faced is when compiling Java module classes such as Bufferedimage.java, which caused build errors like the following:
error: package exists in another module: java.desktop
[javac] package java.awt.image;
error: cannot find symbol
[javac] public BufferedImage(int width, int height, int imageType, IndexColorModel cm) {
[javac] ^
I was able to fix these split package errors and successfully build the project.
Will you be accepting PRs to add support for Java 11? If so I'd be happy to make a PR from my fork.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Hi Yes it would be great. |
It seems there is only the master branch in this repo. For the movement, I think it will better to create my PR against a new Java 11 specific branch like in jpf-core. Maybe we could merge that branch to the master once we fully support Java 11. Would you be able to create a new branch? |
Hi May I ask if you applied to GSoC? Please send me an email directly! Thanks. Corina |
I sent you an email. |
I did not receive |
I sent an email to |
Hi I want to contribute in Support of Java 11 for Spf I want to contact with a mentor for discussing further learnings and questions that have arisen during exploring these projects . |
Hi Yes I am mentoring for GSoC. Please send a message to [email protected] not to the NASA email. Thank you. |
@corinus |
Hi, is this issue still open? |
Looks like the issue is still open and GSOC 2024 has a call for this. I am wondering what is difference between https://github.com/SymbolicPathFinder/jpf-symbc and https://github.com/javapathfinder/jpf-symbc. And also which will be maintained in the future. |
Yes, I am too confirming that the issue is still open, and yes it is part of GSoC 2024 project ideas. |
Hi @Ao-senXiong @sohah, I was not aware of the fork on the javapathfinder account. Please focus on the https://github.com/SymbolicPathFinder/jpf-symbc. ... and yes, the issue is still open. Feel free to join our Discord server to discuss more: https://discord.gg/sX4YZUVHK7 |
I went through your GSOC project ideas page and found out that you are looking for a prospective student to add java 11+ support for jpf-symbc. I built jpf-core and jpf-symbc using java 8 and test run some of the examples given. Then I tried to build jpf-symbc using Java 11. First I build jpf-core with Java 11 as jpf-symbc requires to have jpf-core's class files on the classpath. But building jpf-symbc using Java 11, results in several build errors and deprecation warnings.
The main issue I faced is when compiling Java module classes such as Bufferedimage.java, which caused build errors like the following:
I was able to fix these split package errors and successfully build the project.
Will you be accepting PRs to add support for Java 11? If so I'd be happy to make a PR from my fork.
The text was updated successfully, but these errors were encountered: