1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

change the cygwin check to just check for gcc-core instead of the superpackage gcc. Bug 203619.

This commit is contained in:
Doug Schaefer 2007-09-17 16:59:57 +00:00
parent 30f802ec61
commit a76abebd0c

View file

@ -34,7 +34,7 @@ import org.eclipse.core.runtime.PluginVersionIdentifier;
public class IsGnuCygwinToolChainSupported implements
IManagedIsToolChainSupported {
static final String[] CHECKED_NAMES = {"gcc ", "binutils ", "make "}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
static final String[] CHECKED_NAMES = {"gcc-core ", "binutils ", "make "}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
static boolean suppChecked = false;
static boolean toolchainIsSupported = false;