Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2020-07-04Fixed NLS and null warningsTorbjörn Svensson1-1/+1
Signed-off-by: Torbjörn Svensson <azoff@svenskalinuxforeningen.se> Change-Id: I6e40038e99c37a4efc25f64d8d186b00c6f55f8c
2018-11-22Bug 540373: Cleanup: Remove redundant type argumentsJonah Graham1-1/+1
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Remove redundant type arguments and completing the wizard Change-Id: Iaecc7010f097b4b1fabd29ccaa34ccb23a716fbf
2018-11-22Bug 540373: Cleanup: Format & Remove trailing whitespaceJonah Graham2-29/+36
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Format source code - Remove trailing white spaces on all lines and completing the wizard Change-Id: I63685372c6bcc67719bcf145123bcb72e5b00394
2018-11-22Bug 540371: Update to EPLv2 using releng/scripts/change_to_eplv2.shJonah Graham3-9/+18
Change-Id: Ifbb1d5af2a00bd5634dea200320e8c4303ffca6c
2016-04-14Tighter integration of new build system with cdt.core.Doug Schaefer1-1/+2
Move the new build system to cdt.core and remove the previous plugins. Hook the new system into scanner info and environment variable manager. Clean up API in preparation for Neon and API lockdown. Hook up Qt to the new APIs. Add discovery of MSYS2's toolchain and Qt and Qt's MinGW toolchain. Change-Id: I85b1a91da4a44e86f0e9da9310f8106c894623e0
2013-03-11bug 357442: A bit more of tidy EnvironmentVariableManagerToolChainAndrew Gvozdev1-15/+1
2013-03-10bug 357442: Tidy EnvironmentVariableManagerToolChainAndrew Gvozdev1-2/+17
2013-03-10bug 357442: Contribute $CYGWIN_HOME by ↵Andrew Gvozdev1-10/+8
GnuCygwinConfigurationEnvironmentSupplier only if it does not come from preferences
2013-02-01bug 357442: Added $CYGWIN_HOME to cygwin toolchain detection algorithmAndrew Gvozdev3-238/+170
2012-07-09bug 384520: New Project Wizard ignores $PATH from preferences, won't show ↵Andrew Gvozdev2-23/+40
toolchain
2012-07-08Cosmetics - JavaDoc and code formattingAndrew Gvozdev3-48/+35
2011-11-30bug 299376: Console/Problem view UTF-8 character encoding problem withAndrew Gvozdev1-15/+42
Cygwin 1.7
2011-11-17auto-clean: @Override annotations + organize imports + unnecessaryAndrew Gvozdev3-63/+67
casts/$NON-NLS + trailing white spaces
2010-09-29bug 308042: Spawner messages are too cryptic to be useful to a userAndrew Gvozdev1-14/+6
2010-07-08bug 318581: Use of deprecated ↵Andrew Gvozdev1-3/+5
org.eclipse.core.runtime.PluginVersionIdentifier discontinued. Patch from Petri Tuononen.
2010-03-08bug 213920: cygwin path resolver does not work for "locked" registry in windowsAndrew Gvozdev1-9/+9
2010-03-08bug 213920: cygwin path resolver does not work for "locked" registry in windowsAndrew Gvozdev1-13/+31
patch from Marc-Andre Laperle
2010-03-04bug 303900: Cygwin 1.7 is Not detected on the CDT system.Andrew Gvozdev2-78/+131
Patch from Marc-Andre Laperle
2010-02-08bug 301373: [API] add @noextend and @noimplementAndrew Gvozdev3-3/+0
Oops @noimplement was meant
2010-02-07bug 301373: [API] add @noextend and @noimplement tags - ↵Andrew Gvozdev3-6/+16
org.eclipse.cdt.managedbuilder.gnu.ui
2010-01-23cosmetics: NON-NLS warnings fixedAndrew Gvozdev1-6/+4
2008-06-10Fix for 233866: NPE on Fresh installed Windows/CDT, patch by Enrico Ehrich ↵Anton Leherbauer1-6/+11
<public@snipah.com>
2008-02-15Bug #218954 : replace "regedit" run with API call.Oleg Krasilnikov1-101/+85
2007-09-18Bug 203619 - make the cygwin check even looser.Doug Schaefer1-1/+1
2007-09-17change the cygwin check to just check for gcc-core instead of the ↵Doug Schaefer1-1/+1
superpackage gcc. Bug 203619.
2007-09-14"support checked" flag initialization moved to be after the "isSupport" ↵Mikhail Sennikovsky1-1/+3
initialization
2007-02-20New Project Model initial check-inMikhail Sennikovsky1-2/+3
2005-09-02Move setting of 'checked' to finally block so that other callers cannot use ↵Leo Treggiari1-27/+30
the results before they are ready.
2005-07-07fixed the bug with handling the case of executing the CygPathResolver on ↵Mikhail Sennikovsky1-2/+3
non-windows systems
2005-07-07CygwinPathResolver now detects whether mingw or cygwin version of gcc is ↵Mikhail Sennikovsky1-4/+33
used and treats include paths stored in CPATH, etc. env variables depending on that. For mingw env variable values are treated as the list of windows-style paths, while for cygwin values are treated as the list of cygwin-style paths
2005-06-20crecoskie June 20, 2005 - updating copyright and license info for EPL transitionChris Recoskie3-19/+19
2005-06-09Removed the "isToolChainSupported" for the Gnu cygwin tool-chains ↵Mikhail Sennikovsky1-0/+11
definitions in the manifest file, because currently the gnu cygwin tool-chains are intended to be used not only with Cygwin, but with MinGW also, and there is no correct way of determining whether the appropriate packages are installed for MinGW. For the future MBS/CDT versions we might create the separate tool-chain/configuration/project-type for the MinGW and define a set of converters using the tool-chain converter mechanism that MBS will provide, that would convert the CygWin to the MinGW projects/tool-chains, and vice a versa.
2005-06-09Fixed the bug in the CygwinPathResolver.resolveBuildPaths() methodMikhail Sennikovsky1-1/+1
2005-06-08Some modifications and fixes for the build Environment and Macros were addedMikhail Sennikovsky1-1/+1
2005-05-31Fixed the bug related to the incorrect exception handling that could cause a ↵Mikhail Sennikovsky2-27/+19
null pointer exception
2005-05-23Check-in of the Tool-chain installation support ( 87478) and the Managed ↵Mikhail Sennikovsky3-9/+245
Build Process Environment support ( 88497) implementation for the Gnu Cygwin tool-chain
2005-05-19Initial check-in for the build macros supportMikhail Sennikovsky3-0/+92

    Back to the top