1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 08:46:02 +02:00
Commit graph

74 commits

Author SHA1 Message Date
Jonah Graham
fd9382d8a9 Bug 562494: Update BREE to Java 11
Change-Id: I0c91aafc0cb1b179936acbd4c9df2d961899e3fa
2020-08-24 17:50:56 -04:00
jantje
2a62d58621 Bug 564123 Treat environment and build variable case sensitively
Remove all equalIgnoreCase and equal with uppercasing for environment
variables

Change-Id: Ic15974b5fb62413c7b1826ced544ff6d4a8eba2f
Signed-off-by: jantje <eclipse@baeyens.it>
2020-08-18 18:11:48 -04:00
Jonah Graham
a708a1dcc9 Bug 564123 Remove deprecated PathUtil that has a replacement
Change-Id: Ie2fd4ed201a2bc0c490df9b0deb43cb6d53b1876
2020-08-18 12:33:13 -04:00
Jonah Graham
d6818fbb03 Bug 549697: Define standard terminal colors with Eclipse preferences
New types TerminalColor and TerminalStyle replace StyleColor and Style
to separate the meta information about styles and colors from the
user currently selected colors.

The StyleMap maps the TerminalColor/Style to the concrete fonts and
colors used in the display.

Colors are now configurable via the terminal preference page using
the new TerminalColorsFieldEditor.

All preferences are now passed in to the VT100 control so that
different terminal consumers can have different preferences and
styles.

Remove dark theme contribution. The colors of the terminal are
now inherited from the editor settings (using SystemDefaultColors)
which come from the theme. If we were to invert colors
too when in Dark theme then the colors actually end up light
background.

Change-Id: I2cf5427ac0be9a189a7f0d3565cfc97ceedb8749
2020-08-03 17:28:59 -04:00
Alexander Fedorov
76497af249 Bug 565154 - Delete CDT Core Options API
Removed org.eclipse.cdt.core.options package
Removed org.eclipse.cdt.internal.core.options package
Removed corresponding tests
Updated documentation

Change-Id: Iac3ae1328e9eec3c8db0a633de68bde71573b736
Signed-off-by: Alexander Fedorov <alexander.fedorov@arsysop.ru>
2020-08-01 05:54:03 -04:00
Marc-Andre Laperle
97c1151f01 Bug 564949 - Remove support for CDT 3.X style projects (partial)
Remove some Wizard classes that are not referenced anywhere anymore.
This commit is just a first of probably several commits but is already
a start. I already had very large commits in progress in the past but
it became big and hard to push so I'd rather do it step by step this
time and at least have some of it done for the next release.

Also moved some messages to its own message bundle in managedbuilder.ui
because it's the only place they are used now.

Change-Id: Ib4258684c91f205dc4af3b17169609b5ebcff253
Signed-off-by: Marc-Andre Laperle <malaperle@gmail.com>
2020-07-07 22:26:01 -04:00
Torbjörn Svensson
1a4736c725 Bug 564553: Fetch the path to GDB from GdbLaunch
In order to present the same path to the binary as actually launched,
fetch the path from the GdbLaunch instance rather than reading the
attribute from the launch configuration.

Change-Id: I9f973a590136167d1c8d19b6af52378c95645e35
Signed-off-by: Torbjörn Svensson <azoff@svenskalinuxforeningen.se>
2020-06-24 14:39:36 -04:00
jantje
d99d06ceca Bug 564123: Remove deprecated method from EnvironmentReader
EnvironmentReader.getRawEnvVars has a better replacement,
EnvironmentReader.getEnvVars

Change-Id: I91b209f3f601b748dd5d635ff44a36765d519e49
Signed-off-by: jantje <eclipse@baeyens.it>
2020-06-13 18:01:08 -04:00
jantje
f5e029d19c Bug 564123 delete org.eclipse.cdt.utils.Platform
The class overrode org.eclipse.core.runtime.Platform to
workaround bugs in the platform that have since been fixed.
As 32-bit x86 and PPC support has been removed this
class is no longer needed as all the code is now
unreachable anyway.

Change-Id: I01bb00b9203aa02663ff25ce36c4c14f22dadee5
Signed-off-by: jantje <eclipse@baeyens.it>
2020-06-13 13:05:41 -04:00
Jonah Graham
da0d1d7df6 Bug 543122: Add additional baud rates for serial
Includes new API to allow, on platforms that support it, setting
and getting arbitrary rates.

Change-Id: I0b1134325f913bb09d1bf0cd902f89e968d80570
2020-05-15 14:32:47 -04:00
Jonah Graham
cf30fc4efd Fixup for Bug 561623: Correct title in HTML for planned API removal
Change-Id: I04a7bde8ae0ab5ceae5b4a21dec744d5f234f599
2020-05-12 13:11:28 -04:00
Jonah Graham
b45df9e9d5 Bug 558994: Remove LRParser, XLC and UPC
These old parsers have not been maintained in many years and do not
actually work anymore as is.

Change-Id: Ifc3223aa81718ffbfbbc2ea605eabba2807b80d9
2020-05-04 09:30:47 -04:00
Jonah Graham
6491efc5e9 Bug 562498: Remove Arduino plug-ins from CDT
The CDT Arduino plug-ins and features have been removed. Arduino can
still be used with CDT with manual maintenance of packages, etc. Or
a third-party add-on such as Sloeber can be used as a replacement.

Change-Id: I2f8c96e932ce87e1baed91d5eb78de05f3fb4bee
2020-04-27 01:48:29 -04:00
Jonah Graham
d2d1c00631 Bug 561623: Starting point for documenting future API removals.
This includes all the API changes already made for CDT 10.0

Change-Id: I3bd4c613af5e9ee3d1529afef7307da09efcbbdf
2020-04-26 12:06:40 -04:00
Jonah Graham
d26d4c3cae Bug 559647: [CDT doc.isv] Update links to be https://
As the pages are served in an https:// frame, modern browsers will
only successfully link content if link is also to https.

Change-Id: I51b31e8924988159d05a17092837bc59af0c0953
2020-01-30 13:44:15 -05:00
Jonah Graham
2cbf927a36 Bug 550076 - Use PE64 parser by default
Change-Id: I757c8ace43e79f1215ad0e817430e5ab90415401
2019-09-09 15:56:07 -04:00
Jonah Graham
f70a8b35c1 Bug 540371: Update to EPLv2 using releng/scripts/change_to_eplv2.sh
Change-Id: Ifbb1d5af2a00bd5634dea200320e8c4303ffca6c
2018-11-22 20:31:51 +00:00
Stefan Sprenger
dfe76debe3 Update DSF Intro Docs to current master
Updates:
- references from CVS to git
- Old version of SDK to more recent version
- many typos

Change-Id: Ibea3ec63ddf0ddf6a17ed976885ef0cf593ea3d8
Signed-off-by: Stefan Sprenger <stefan@sprenger.software>
2016-04-08 09:34:41 -04:00
Marc-Andre Laperle
98dee4063b Remove some unused images in documentation plugins
I used a simple script:

    for every file name of a given extension {
      grep for the file name usage
      if no result {
         delete it!
      }
    }

I only deleted things under the documentation plugins, to be safe.
This results in about 8MB of deleted images.

Change-Id: I566b8b1ff396b67689d273fc6e827dd3a02ad991
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2015-10-16 18:19:52 -04:00
Jonah Graham
406950d31f Bug 467023 - Minor updates to the DSF Programming Intro
- Add a note about turning pre-processor off so edits made as part of
  the tutorial are not overwritten
- Add missing ConfinedToDsfExecutor for Exercise 4
- Fix typo

Change-Id: I790fc2e3f640510a665a9a29a04f20502af7c710
Signed-off-by: Jonah Graham <jonah@kichwacoders.com>
2015-05-11 19:00:33 +01:00
Andrew Gvozdev
fbcf246a20 bug 222817: Updated Managed Build System Extensibility Document
Patch from Miwako Tokugawa
2011-04-25 18:27:06 +00:00
Vivian Kong
d8c47d612a Bug 307593 - [Accessibility] CDT documentation has accessibility issues 2010-03-31 01:34:27 +00:00
Pawel Piech
c904ce76a5 [302175] - [doc] Add DSF Tutorial to CDT ISV documentation. 2010-02-08 18:05:51 +00:00
Vivian Kong
ab6a54d8ac minor doc fixes 2009-05-07 15:28:26 +00:00
Vivian Kong
6c04054d66 Bug 269416 – [Accessibility] The ALT attribute should be defined for images 2009-05-05 21:08:42 +00:00
Vivian Kong
e850c5811b bug 269421 - [Accessibility] The value of the LANG attribute must be set to one of the ISO 639 language codes 2009-04-28 16:04:39 +00:00
Vivian Kong
71c7ccbcf5 bug 269428 - [Accessibility] Include a document type declaration at the beginning of a document that refers to a published DTD 2009-03-19 18:08:46 +00:00
Vivian Kong
96fd14ca0c Bug 240756 2008-07-24 17:12:25 +00:00
Vivian Kong
68ee7032fa Bug 240757, 240758 2008-07-24 17:09:11 +00:00
Vivian Kong
e6c237afdc Bug 240756 2008-07-24 17:08:50 +00:00
Vivian Kong
c1bec93d4e bug 240820 2008-07-15 21:57:45 +00:00
Vivian Kong
5de9ec3531 bug 240755 2008-07-15 21:50:54 +00:00
Vivian Kong
c0e8896c10 bug 240754 2008-07-15 21:49:18 +00:00
Andrew Ferguson
60a92333da fix copyright header 2008-06-09 13:43:11 +00:00
Andrew Ferguson
7c22f386b8 188926: update template documentation 2008-03-19 12:02:05 +00:00
Andrew Ferguson
fd23b527a9 214596: apply fix 2008-03-18 18:01:29 +00:00
Andrew Ferguson
b75b0925fe 222954: apply fix 2008-03-18 15:26:50 +00:00
Andrew Ferguson
d96259e1bc 201087: apply contributions from James Blackburn 2008-02-22 17:34:43 +00:00
Andrew Ferguson
e96881fb2c 199379: update docs and tidy code 2007-10-25 11:02:57 +00:00
Andrew Ferguson
35a0e61d1f 203553: fix typo 2007-09-17 15:11:43 +00:00
Andrew Ferguson
06e6beb259 203553: Update process fqns 2007-09-17 14:43:50 +00:00
Andrew Ferguson
4d57809f9b 203553: Apply patch on behalf on Beth Tibbitts 2007-09-17 14:28:27 +00:00
Andrew Ferguson
90b276e9c0 203553: Apply patch plus additional docs improvements on behalf on Beth Tibbitts. Remove unused usageDescription attribute. 2007-09-17 14:17:15 +00:00
Andrew Ferguson
f73314ecbe 196338: apply fix 2007-09-03 14:06:18 +00:00
Andrew Ferguson
60f62aafa8 179709: move document to ISV doc plugin 2007-08-23 11:02:00 +00:00
Mikhail Sennikovsky
c4352070c0 Added a link to "what's new in CDT Build System doc" 2007-06-22 19:25:00 +00:00
Mikhail Sennikovsky
1cd77be0d6 additional documentation fixes 2007-06-22 19:07:22 +00:00
Mikhail Sennikovsky
103eaadb1c Schema and documentation updates 2007-06-22 18:58:25 +00:00
Mikhail Sennikovsky
4f8a7032f8 Additional Doc updates 2007-06-22 17:30:43 +00:00
Mikhail Sennikovsky
0e737ee0ba Doc updates 2007-06-22 15:57:30 +00:00