Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2022-05-05Bug 577263: Eliminate unnecessary command line pattern attributesJohn Dallaway1-10/+4
We eliminate unnecessary command line pattern attributes that were overriding the default pattern provided by org.eclipse.cdt.managedbuilder.internal.core.Tool which now includes ${EXTRA_FLAGS}. Change-Id: I8c4e8e613599e71e31e390f56319bacfd0329ab2
2022-04-20[releng] Make CDT Clean-up profile match Editor on save actionsJonah Graham1-0/+80
The CDT Cleanup profile had a bunch of extra cleanups applied to it, this prevents running the CDT cleanup profile manually to simulate running the save actions on all Java files Change-Id: Iad491e1258a4ba90d81d1457ea0f6779e3663e38
2022-04-13[releng] Update all legal files with update_legal_files.shJonah Graham1-6/+8
The about.html was changed as per https://gitlab.eclipse.org/eclipsefdn/it/websites/eclipse.org/-/issues/90 Change-Id: Ied879279460a8fc610630fc26794ab3df9eae39f
2022-04-13[releng] Prepare for 10.7.0 with version bumpsJonah Graham1-1/+1
All the about.html files are updated, so every bundle that hasn't already had a bump in 10.7 needs one now Change-Id: I6143d2fbe77a58a3a6d2f4a226d96087117f9ac1
2021-10-18Bug 505882: Fork the GnuMakefileGenerator into non-APIJonah Graham2-2/+2
The GnuMakefileGenerator is a huge file that needs lots of fixes. However most of the time to implement the fixes are taken up trying to not break API. Most extenders of CDT provide their own implementation of GnuMakefileGenerator by copying the CDT one and modifying it. Therefore CDT is going to take that same approach internally and leave the existing GnuMakefileGenerator in its unmodifiable state. Change-Id: I12fafb5e347112648a02d4593267bd88a47b5c88
2021-06-24Bug 574448: Fix spelling of GCC -fsanitize command line optionsJonah Graham2-3/+3
Change-Id: I9d02cc9937dc88ca3b180bb194edd80a6c904899
2020-08-31Bug 566511: [releng] Add missing UTF-8 encoding for all CDT projectsJonah Graham1-0/+2
Includes updates to code cleanliness script Change-Id: Ic495124285e3e002993f34dc12be5ad7337fe13b
2020-08-24Bug 562494: Update BREE to Java 11Jonah Graham3-12/+34
Change-Id: I0c91aafc0cb1b179936acbd4c9df2d961899e3fa
2020-08-18Bug 564123 Treat environment and build variable case sensitivelyjantje1-2/+2
Remove all equalIgnoreCase and equal with uppercasing for environment variables Change-Id: Ic15974b5fb62413c7b1826ced544ff6d4a8eba2f Signed-off-by: jantje <eclipse@baeyens.it>
2020-07-04Fixed NLS and null warningsTorbjörn Svensson1-1/+1
Signed-off-by: Torbjörn Svensson <azoff@svenskalinuxforeningen.se> Change-Id: I6e40038e99c37a4efc25f64d8d186b00c6f55f8c
2020-06-13Bug 564272: Increment major version of org.eclipse.cdt.core to 7.0.0Jonah Graham1-2/+2
Change-Id: I9124dd406c5981435a72ff4aaa7033f1c3d1979b
2020-01-02Bug 266305 - Add common warning options to GCC(ClangMarco Stornelli2-0/+395
Add common warning options usually not included in -Wall. (GCC/Clang) Added hardening options and address randomization under misc section (GCC) Added sanitize options under debug section. (GCC/Clang) Change-Id: I885d8f49192018e50fcc5d28ee5e60d8785aa947 Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
2019-12-31Bug 527143 - C++ dialect refactorMarco Stornelli3-4/+16
Renamed c++0x to c++11, c++1y to c++14. Added c++17 and c++20 aka c++2a. Change-Id: I3939cb56bf887e193bffe7484c6568cf45bd315d Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
2019-09-09Bug 550076 - Use PE64 parser by defaultCDT_9_9_0Jonah Graham2-3/+3
Change-Id: I757c8ace43e79f1215ad0e817430e5ab90415401
2018-11-24Bug 540373: Update the compiler warnings/ignoresJonah Graham1-1/+1
The previous alignment of all the warnings/ignores led to too many warnings that weren't there before. This commit relaxes them a bit. The core/org.eclipse.cdt.core/.settings/org.eclipse.jdt.core.prefs is still the "master" copy, with releng/scripts/check_code_cleanliness.sh containing the exceptions that apply to test plug-ins. Change-Id: Ibd4e31ade0b42b31e7cbe5a94f06c6fc15183a56
2018-11-23Bug 540373: Cleanup: Remove trailing whitespace in properties filesJonah Graham5-5/+5
Command used: # Remove space at eol in comments find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^(#.*)[ \t]+$/\1/' {} + # Remove space at eol in blank lines find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^[ \t]+$//' {} + # Replace escaped spaces at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\ $/\1\\u0020/' {} + # Replace unescaped spaces at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\]) $/\1\\u0020/' {} + # Replace escaped tabs at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\\t$/\1\\u0009/' {} + # Replace unescaped tabs at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\t$/\1\\u0009/' {} + # Stage all changes git add -A . # trim any remaining whitespace and then identify and fixup # manually # Only dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/MessagesForDebugVM.properties # needed this due to missing newline at end of the file find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/[ \t]+$//' {} + Change-Id: I858f16891fe001f4f7e62d5a4f904146e891cd39
2018-11-22Bug 540373: Cleanup: Remove redundant type argumentsJonah Graham2-2/+2
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: Organize ImportsJonah Graham1-1/+3
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Organize Imports and completing the wizard Change-Id: Ia7b305a4c967d0e6f4e8fb8c1041e7028b24006c
2018-11-22Bug 540373: Cleanup: Format & Remove trailing whitespaceJonah Graham6-75/+88
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 540373: Standard .settings auto appliedJonah Graham5-20/+308
The releng/scripts/apply_jdt_prefs_to_all_projects.sh was run to copy standard settings to all other projects. Change-Id: I4436c947d7f0142f56b709e661379c3eb54f666b
2018-11-22Bug 540371: Update to EPLv2 using releng/scripts/change_to_eplv2.shJonah Graham21-72/+132
Change-Id: Ifbb1d5af2a00bd5634dea200320e8c4303ffca6c
2018-11-22Bug 540371: normalize files before applying EPLv2Jonah Graham2-2/+2
Change-Id: I8bfd427bba1df18579d6d5e58ad1e5d704485050
2018-10-30Bug 540610 - Add Automatic-Module-Name headerKarsten Thoms1-0/+1
Change-Id: Ia990b24469751050dd9ec8f9b5550804816308b3 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-10-23Bug 540367 - Increment version numbersWilliam Riley1-1/+1
Change-Id: I4a355170a7075f0a98ba3c1a5131c235c89b07d2
2018-02-08Remove useless imports.Alexander Kurtakov1-2/+1
Change-Id: Ie59d3942ea1df97440bd84e46a24753ed6ed429b Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-01-15Bug 529448 : Allows build debug level setting to be restored to propercartu38 opendev1-4/+4
value Change-Id: I64182e241e91007fb1c1570c6c0b5231632533d4 Signed-off-by: cartu38 opendev <cartu38.opendev@gmail.com>
2017-03-19Bug 513860 - build: Change id of pthread optionSimon Marchi1-3/+3
There is a collision in the ids of the pthread options, "cdt.managedbuild.tool.gnu.c.pthread" is there twice. Change the ids to be more in line with the other options. Change-Id: Ice9d003b82b3740df6420811e90a2b157375c243 Signed-off-by: Simon Marchi <simon.marchi@polymtl.ca>
2017-03-17Bug 464916 - Add a -pthread checkbox in the GCC C/C++ Linker settingsSimon Marchi2-2/+41
Change-Id: Ib06482847e88a327b3e3dccf1522d5f8dab1a72b Signed-off-by: Simon Marchi <simon.marchi@polymtl.ca> Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2017-02-14releng: Make use of Tycho POM-less functionalityMarc-Andre Laperle1-17/+0
This removes a lot of pom.xml from the source tree. This is using the "POM-less" Tycho functionality. See https://wiki.eclipse.org/Tycho/Release_Notes/0.24#POM-less_Tycho_builds One advantage of this is that you do not need to update the version in the pom.xml when you change it in the MANIFEST.MF because the pom.xml is automatically generated. This also reduces a lot of the duplicated information and pom.xml repetition. - Maven 3.3 and up is required. - Only eclipse-plugins and eclipse-features can be pom-less. Repositories, target and others still have pom.xml. - New parent poms are added because a parent is necessary directly one level above the plug-in/feature that will have its pom generated - Some test plug-ins had to be renamed .test -> .tests because it's required so that it detects that it's a test plug-in - Some suites were renamed so that they all use the same consistent name "AutomatedIntegrationSuite" - Profiles were added for the more common test configurations. They are activated by the presence of simple .properties files that only serve to activate the correct profile. The profiles: - One for UI tests (UI present and start in UI thread) - One for SWTBot tests (UI present and do not start in UI thread) Other test plug-ins that are too different are kept intact and still have a pom.xml - Fragments are kept intact since they all have different target platform configurations Change-Id: I9d73380eb766f547830c552daf08053a30b1845c Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2016-11-16Update version to 9.3.0Marc Khouzam1-1/+1
Change-Id: Ic953ccc5d38ff3661ca44de21ed8c4b7dad5b246
2016-11-15Update version to 9.2.0Marc Khouzam1-1/+1
Change-Id: I36ad4218b20b8ea70584c89f5be45c757bf4c714
2016-08-17Update version to 9.1.0Marc Khouzam1-1/+1
This commit used the script releng/scripts/ChangeFeaturesVersion.sh Change-Id: I8274a6e8dd5c0f1e450f07952e138b265a441a62
2016-06-30Remove old .cvsignore filesMarc Khouzam1-1/+0
Change-Id: Ia66de47055a15d94c0aa45d1198f0a9e78d82ad0
2016-06-22Move the rest of the CDT plugins to java 8Marc Khouzam3-5/+5
This change was generated using the script: releng/scripts/ChangeJavaVersion.sh Change-Id: I2ad96dc682a5acb8529c3edec40de279c331b5a4
2016-05-12Add MSYS2 support for managed build. A few Qt cleanups on Windows.Doug Schaefer1-35/+2
Change-Id: I07ed0cb4a83996de194559570fedf9fb1b21b42d
2016-04-21Bug 492200 - Replace StringBuffer with StringBuilderAlex Blewitt1-2/+2
There are many opportunities for replacing `StringBuffer` with `StringBuilder` provided that the type isn't visible from the public API and is used only in internal methods. Replace these where appropriate. Change-Id: I769ceb6eaee18d183fb0e00fa0d730651f8a7edb Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-04-14Tighter integration of new build system with cdt.core.Doug Schaefer2-3/+5
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
2016-02-17Incremented version of org.eclipse.cdt.core to 6.0.Sergey Prigogin1-1/+1
Change-Id: I059e7eba9eff7f24c84e08a1cbf658381aaaf19d
2016-01-18Incremented CDT features version to 9.0.0Marc Khouzam1-1/+1
This includes bumping the standalone debugger to 9.0.0 Change-Id: I55fae1cec995b5f6865a5b174c004ed1b76e9bea
2016-01-04Fix copyright of all CDT plugins using the copyright tool from platform.Marc Khouzam2-2/+2
This commit does not add missing copyrights, just updates the date on the existing ones. Change-Id: I646f5afd533a1fcc539bdf2e0686b22f406ecf65
2015-11-09Bug 481621 - Linux GCC toolchain should use Gnu Elf binary parser by defaultMarc-Andre Laperle1-1/+1
-Projects with default settings for binary parser will see their binary parser changed to Gnu Elf automatically. -New projects will have Gnu Elf binary parser enabled. -Projects overriding the settings will not change Change-Id: Ie5db969e68da20d16f565923ecb0ec1edf8b79f3 Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2015-09-29Remove reference to java environment in build.propertiesMarc Khouzam1-4/+1
Change-Id: I053158a23d2783879248320a84a9549e28cfb4d1
2015-09-22Bug 465461 - Merge "Symbols" and "Preprocessor" in GCC C compiler settingsSimon Marchi1-7/+2
...so that it matches the way the GCC C++ compiler is. Change-Id: I9e32dc3888cfec2c0c01196f44f2e730e2bbc574 Signed-off-by: Simon Marchi <simon.marchi@polymtl.ca>
2015-06-10Incremented CDT feature version to 8.8.0Marc Khouzam1-1/+1
Change-Id: Ib1189a08a5f0225fd676b682dc8a10477ad3acc5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-05-05Incremented CDT feature version to 8.7.0Marc Khouzam1-1/+1
Change-Id: Ife0feaaa9263d2b7797e31d628250bd26caff1b5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-01-07Incremented CDT feature version to 8.6.0.Sergey Prigogin1-1/+1
Change-Id: Ic90c8e6a68d21e5b90ec3fac997da6a95a29bedf Signed-off-by: Sergey Prigogin <eclipse.sprigogin@gmail.com> Reviewed-on: https://git.eclipse.org/r/39066 Tested-by: Hudson CI
2014-07-22Inremented branding plugin version to 8.5Sergey Prigogin1-1/+1
2014-07-16Bug 408545 - Increased version of o.e.c.mangedbuilder.gnu.ui from 8.2.1Thomas Corbat3-2/+5
to 8.3.0. Signed-off-by: Thomas Corbat <tcorbat@hsr.ch>
2014-07-15Bug 408545 - Added single checkbox to enable gcov. (edit commit msg)Leo Ufimtsev3-0/+58
I added a checkbox to enable gCov via a single checkbox to enable gcov in the compiler. It then uses the applicability calculator to automatically enable the linker if the compiler option is set. Signed-off-by: Leo Ufimtsev <lufimtse@redhat.com> Change-Id: I561d7263d578a7807e890fce5518e6fc2ebb2bb2 Reviewed-on: https://git.eclipse.org/r/29403 Reviewed-by: Elena Laskavaia <elaskavaia.cdt@gmail.com> Tested-by: Elena Laskavaia <elaskavaia.cdt@gmail.com>
2014-05-09added missing gnu file types (as defined inLukas Felber1-2/+2
http://gcc.gnu.org/onlinedocs/gcc-4.8.2/gcc/Overall-Options.html#index-file-name-suffix-71) Change-Id: If0903113d74439a9bf96022e1e3c636a0ffaebbf Signed-off-by: Lukas Felber <l.felber@gmx.ch> Reviewed-on: https://git.eclipse.org/r/24846 Reviewed-by: Sergey Prigogin <eclipse.sprigogin@gmail.com> Tested-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>

Back to the top