-
Notifications
You must be signed in to change notification settings - Fork 201
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
Improve encapsulation within AbstractGnuToolPrefixMacro #371
Conversation
Hi, this commit seems to break my usage of cdt 11.2 |
The file is there on the branch - https://github.com/eclipse-cdt/cdt/blob/cdt_11_2/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/AbstractGnuToolPrefixMacro.java and tag https://github.com/eclipse-cdt/cdt/blob/CDT_11_2_0/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/AbstractGnuToolPrefixMacro.java However it seems that GitHub indexing isn't working because if I type AbstractGnuToolPrefixMacro in the search it says it is not there: I have filed a bug report with GitHub on this issue - but I think the link is private https://support.github.com/ticket/personal/0/2276662 |
Can you expand on how your usage is broken please? |
I have errors for projects which are using cdt. Log says [....]Caused by: java.lang.ClassNotFoundException: org.eclipse.cdt.managedbuilder.macros.AbstractGnuToolPrefixMacro cannot be found by org.eclipse.cdt.build.crossgcc_1.3.100.202304191745$ |
It looks like there is a mix and match of version here. AbstractGnuToolPrefixMacro is a new class in CDT 11.2 so I wonder if you have a partially updated CDT install (indicating a bug in the update process) or something else going on. We don't support mixing and matching bundles across CDT releases, but sometimes the auto update mechanism fails us. Can you please provide more details, e.g. how to reproduce this and maybe the full stack trace too. I see a potential problem in
The crossgcc has as a minimum version 9.2, but AbstractGnuToolPrefixMacro is in 9.6+. |
I will update the minimum version string. |
I downgraded cdt to version 11.1 to be able to use my eclipse projects. It was certainly a migration error... |
Thanks for trying again and for raising this issue. With what John plans for version constraints should mean future users aren't affected. |
Thanks for your help ! |
This has a probable fix sitting in #518 |
Part of #361