Skip to content

Commit db970a4

Browse files
committed
Merge branch 'master' of ssh://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools
2 parents e334748 + dd3a8b8 commit db970a4

File tree

206 files changed

+1743
-151
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+1743
-151
lines changed

autotools/org.eclipse.linuxtools.cdt.autotools-feature/feature.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
unpack="false"/>
6060

6161
<plugin
62-
id="org.eclipse.linuxtools.cdt.autotools_docs"
62+
id="org.eclipse.linuxtools.cdt.autotools.docs"
6363
download-size="0"
6464
install-size="0"
6565
version="0.0.0"/>

autotools/org.eclipse.linuxtools.cdt.autotools.core/ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2011-05-26 Jeff Johnston <[email protected]>
2+
3+
Resolves #343879
4+
* src/org/eclipse/linuxtools/internal/cdt/autotools/core/AutotoolsNewMakeGenerator.java (runScript):
5+
For Windows/Mac targets, do not pass PWD environment variable forward.
6+
17
2011-05-19 Jeff Johnston <[email protected]>
28

39
* src/org/eclipse/linuxtools/internal/cdt/autotools/core/ErrorParserManager.java (outputLine): Fix

autotools/org.eclipse.linuxtools.cdt.autotools.core/src/org/eclipse/linuxtools/internal/cdt/autotools/core/AutotoolsNewMakeGenerator.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -942,6 +942,7 @@ private int runScript(IPath commandPath, IPath runPath, String[] args,
942942
NullPointerException, IOException {
943943

944944
int rc = IStatus.OK;
945+
boolean removePWD = false;
945946

946947
removeAllMarkers(project);
947948

@@ -960,6 +961,7 @@ private int runScript(IPath commandPath, IPath runPath, String[] args,
960961
// Fix for bug #343731
961962
if (Platform.getOS().equals(Platform.OS_WIN32)
962963
|| Platform.getOS().equals(Platform.OS_MACOSX)) {
964+
removePWD = true;
963965
// Neither Mac or Windows support calling scripts directly.
964966
String command = null;
965967
for (String arg : configTargets) {
@@ -1023,8 +1025,12 @@ private int runScript(IPath commandPath, IPath runPath, String[] args,
10231025
ArrayList<String> envList = new ArrayList<String>();
10241026
if (variables != null) {
10251027
for (int i = 0; i < variables.length; i++) {
1026-
envList.add(variables[i].getName()
1027-
+ "=" + variables[i].getValue()); //$NON-NLS-1$
1028+
// For Windows/Mac, check for PWD environment variable being passed.
1029+
// Remove it for now as it is causing errors in configuration.
1030+
// Fix for bug #343879
1031+
if (!removePWD || !variables[i].getName().equals("PWD")) // $NON-NLS-1$
1032+
envList.add(variables[i].getName()
1033+
+ "=" + variables[i].getValue()); //$NON-NLS-1$
10281034
}
10291035
if (additionalEnvs != null)
10301036
envList.addAll(additionalEnvs); // add any additional environment variables specified ahead of script

autotools/org.eclipse.linuxtools.cdt.autotools-docs/.project autotools/org.eclipse.linuxtools.cdt.autotools.docs/.project

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>org.eclipse.linuxtools.cdt.autotools-docs</name>
3+
<name>org.eclipse.linuxtools.cdt.autotools.docs</name>
44
<comment></comment>
55
<projects>
66
</projects>

autotools/org.eclipse.linuxtools.cdt.autotools-docs/ChangeLog autotools/org.eclipse.linuxtools.cdt.autotools.docs/ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2011-06-01 Jeff Johnston <[email protected]>
2+
3+
Resolves: #347979
4+
* build.properties: Add images directory.
5+
* images/*.gif: New files.
6+
17
2011-03-22 Jeff Johnston <[email protected]>
28

39
* build.properties: Add tools.xml to bin list.

autotools/org.eclipse.linuxtools.cdt.autotools-docs/Linux_Tools_Project/Autotools/User_Guide/User-Guide.html autotools/org.eclipse.linuxtools.cdt.autotools.docs/Linux_Tools_Project/Autotools/User_Guide/User-Guide.html

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
<td style="width: 20%" align="right" valign="top">Supported Environments</td>
2626
</tr>
2727
</table><hr/>
28-
<p>{{#eclipseproject:technology.linux-distros}}</p>
2928
<h1 id="Introduction">Introduction</h1>
3029
<p>The Autotools plug-in for Eclipse extends the CDT (C/C++ Development Tools) to add support for maintaining and
3130
building C/C++ projects that use GNU Autotools.</p>

autotools/org.eclipse.linuxtools.cdt.autotools-docs/META-INF/MANIFEST.MF autotools/org.eclipse.linuxtools.cdt.autotools.docs/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %bundleName
4-
Bundle-SymbolicName: org.eclipse.linuxtools.cdt.autotools_docs;singleton:=true
4+
Bundle-SymbolicName: org.eclipse.linuxtools.cdt.autotools.docs;singleton:=true
55
Bundle-Version: 2.0.2.qualifier
66
Bundle-Vendor: %provider
77
Bundle-Localization: plugin

autotools/org.eclipse.linuxtools.cdt.autotools-docs/build.properties autotools/org.eclipse.linuxtools.cdt.autotools.docs/build.properties

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ bin.includes = META-INF/,\
66
plugin.properties,\
77
doc/,\
88
Linux_Tools_Project/,\
9-
tools.xml
9+
tools.xml,\
10+
images/
1011
jars.compile.order = .
1112

autotools/org.eclipse.linuxtools.cdt.autotools-docs/pom.xml autotools/org.eclipse.linuxtools.cdt.autotools.docs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<version>2.0.0-SNAPSHOT</version>
2323
</parent>
2424

25-
<artifactId>org.eclipse.linuxtools.cdt.autotools_docs</artifactId>
25+
<artifactId>org.eclipse.linuxtools.cdt.autotools.docs</artifactId>
2626
<version>2.0.2-SNAPSHOT</version>
2727
<packaging>eclipse-plugin</packaging>
2828

autotools/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<modules>
6464
<module>org.eclipse.linuxtools.cdt.autotools.core</module>
6565
<module>org.eclipse.linuxtools.cdt.autotools.ui</module>
66-
<module>org.eclipse.linuxtools.cdt.autotools-docs</module>
66+
<module>org.eclipse.linuxtools.cdt.autotools.docs</module>
6767
<module>org.eclipse.linuxtools.cdt.autotools-feature</module>
6868

6969
<module>org.eclipse.linuxtools.cdt.autotools.tests</module>

changelog/org.eclipse.linuxtools.changelog.core/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2011-05-31 Jeff Johnston <[email protected]>
2+
3+
* plugin.xml: Add back key bindings for CTRL+ALT+P in text editor and
4+
compare editor which reverts previous change.
5+
16
2011-04-01 Jeff Johnston <[email protected]>
27

38
Bug #341534

changelog/org.eclipse.linuxtools.changelog.core/plugin.xml

+10
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,16 @@
193193
contextId="org.eclipse.ui.contexts.window"
194194
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
195195
sequence="Ctrl+Alt+P"/>
196+
<key
197+
commandId="org.eclipse.linuxtools.changelog.core.preparechangelog2"
198+
contextId="org.eclipse.ui.textEditorScope"
199+
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
200+
sequence="Ctrl+Alt+P" />
201+
<key
202+
commandId="org.eclipse.linuxtools.changelog.core.preparechangelog2"
203+
contextId="org.eclipse.compare.compareEditorScope"
204+
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
205+
sequence="Ctrl+Alt+P"/>
196206
<key
197207
commandId="org.eclipse.linuxtools.changelog.core.prepareCommit"
198208
contextId="org.eclipse.ui.textEditorScope"

changelog/org.eclipse.linuxtools.changelog.doc/Linux_Tools_Project/ChangeLog/User_Guide/User-Guide.html

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
<td style="width: 20%" align="right" valign="top">ChangeLog Preferences</td>
2626
</tr>
2727
</table><hr/>
28-
<p>{{#eclipseproject:technology.linux-distros}}</p>
2928
<h1 id="Overview">Overview</h1>
3029
<p>The ChangeLog plug-in for Eclipse is a basic set of extensions to enable ChangeLog functionality for projects in Eclipse.</p>
3130
<p>Before using the plug-in, you should set the ChangeLog preferences. These preferences include the name and e-mail address you wish to use in a ChangeLog entry. </p>

gcov/org.eclipse.linuxtools.gcov-feature/feature.xml

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="org.eclipse.linuxtools.gcov"
44
label="%featureName"
5-
version="0.4.1.qualifier"
5+
version="0.5.0.qualifier"
66
provider-name="%featureProvider">
77

88
<description>
@@ -28,6 +28,13 @@
2828
version="0.0.0"
2929
unpack="false"/>
3030

31+
<plugin
32+
id="org.eclipse.linuxtools.gcov.docs"
33+
download-size="0"
34+
install-size="0"
35+
version="0.0.0"
36+
unpack="false"/>
37+
3138
<plugin
3239
id="org.eclipse.linuxtools.binutils"
3340
download-size="0"

gcov/org.eclipse.linuxtools.gcov-feature/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</parent>
1919

2020
<artifactId>org.eclipse.linuxtools.gcov-feature</artifactId>
21-
<version>0.4.1-SNAPSHOT</version>
21+
<version>0.5.0-SNAPSHOT</version>
2222
<packaging>eclipse-feature</packaging>
2323

2424
<name>Linux Tools GCov Feature</name>

libhover/org.eclipse.linuxtools.cdt.libhover.library-docs/.project gcov/org.eclipse.linuxtools.gcov.docs/.project

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>org.eclipse.linuxtools.cdt.libhover.library-docs</name>
3+
<name>org.eclipse.linuxtools.gcov.docs</name>
44
<comment></comment>
55
<projects>
66
</projects>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2011-06-03 Jeff Johnston <[email protected]>
2+
3+
Regenerate from updated wiki-page.
4+
* Linux_Tools_Project/GCov/User_Guide/Installation-and-Set-Up.html: Regenerated.
5+
* Linux_Tools_Project/GCov/User_Guide/Troubleshooting.html: Ditto.
6+
7+
2011-06-02 Jeff Johnston <[email protected]>
8+
9+
Regenerate from updated wiki-page.
10+
* Linux_Tools_Project/GCov/User_Guide/images/gcov-binary-file.png: Removed.
11+
* Linux_Tools_Project/GCov/User_Guide/images/Gcov-binary-file.png: Added.
12+
* Linux_Tools_Project/GCov/User_Guide/images/gcov-sort-per-folder.png: Removed.
13+
* Linux_Tools_Project/GCov/User_Guide/images/Gcov-sort-per-folder.png: Added.
14+
* Linux_Tools_Project/GCov/User_Guide/images/gcovAnnotatedSource.png: Removed.
15+
* Linux_Tools_Project/GCov/User_Guide/images/GcovAnnotatedSource.png: Added.
16+
* Linux_Tools_Project/GCov/User_Guide/images/gcovView.png: Removed.
17+
* Linux_Tools_Project/GCov/User_Guide/images/GcovView.png: Added.
18+
* Linux_Tools_Project/GCov/User_Guide/Gcov-main-view.html: Regenerated.
19+
* Linux_Tools_Project/GCov/User_Guide/Opening-gcov-result.html: Ditto.
20+
21+
2011-05-31 Jeff Johnston <[email protected]>
22+
23+
* META-INF/MANIFEST.MF: Add bundle localization plugin.
24+
25+
2011-05-31 Jeff Johnston <[email protected]>
26+
27+
* plugin.xml: New file.
28+
* toc.xml: Ditto.
29+
* META-INF/MANIFEST.MF: Ditto.
30+
* images/*.gif: Ditto.
31+
* Linux_Tools_Project/*: Ditto.
32+
* about.html: Ditto.
33+
* build-helper.xml: Ditto.
34+
* build.properties: Ditto.
35+
* extract-markup.xsl: Ditto.
36+
* pom.xml: Ditto.
37+
* toc.xml: Ditto.
38+
* plugin.properties: Ditto.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<?xml version='1.0' encoding='utf-8' ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
5+
<title>GCov Plug-in User Guide - Gcov main view</title>
6+
<link type="text/css" rel="stylesheet" href="../../../book.css"/>
7+
</head>
8+
<body>
9+
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
10+
<tr>
11+
<th style="width: 100%" align="center" colspan="3">Gcov main view</th>
12+
</tr>
13+
<tr>
14+
<td style="width: 20%" align="left">
15+
<a href="Opening-gcov-result.html" title="Opening gcov result">
16+
<img alt="Previous" border="0" src="../../../images/prev.gif"/>
17+
</a>
18+
</td>
19+
<td style="width: 60%" align="center"></td>
20+
<td style="width: 20%" align="right">
21+
<a href="Troubleshooting.html" title="Troubleshooting">
22+
<img alt="Next" border="0" src="../../../images/next.gif"/>
23+
</a>
24+
</td>
25+
</tr>
26+
<tr>
27+
<td style="width: 20%" align="left" valign="top">Opening gcov result</td>
28+
<td style="width: 60%" align="center"></td>
29+
<td style="width: 20%" align="right" valign="top">Troubleshooting</td>
30+
</tr>
31+
</table><hr/>
32+
<h1 id="Gcov_main_view">Gcov main view</h1>
33+
<p>The Gcov view displays an overview of coverage information for the whole project.</p>
34+
<p>
35+
<img border="0" src="images/GcovView.png"/>
36+
</p>
37+
<p>
38+
<br/> Several buttons are available in the toolbar.
39+
</p>
40+
<ul>
41+
<li>
42+
<img border="0" src="images/Gprof-export-to-csv.gif"/> : "Export to CSV" button allows you to export the gcov result as a CSV text file, suitable for any spreadsheet.
43+
</li>
44+
<li>
45+
<img border="0" src="images/Gcov-sort-per-folder.gif"/> : "Sort coverage per folder" button displays gcov result sorted by folder.
46+
</li>
47+
<li>
48+
<img border="0" src="images/Gprof-sort-per-file.gif"/> : "Sort coverage per file" button displays gcov result sorted by file.
49+
</li>
50+
<li>
51+
<img border="0" src="images/Gprof-sort-per-function.gif"/> : "Sort coverage per function" button displays gcov result sorted by function.
52+
</li>
53+
</ul>
54+
<ul>
55+
<li>
56+
<img border="0" src="images/Gprof-birt-chart.gif"/> : "Create Chart..." button allows you to create a BIRT chart, with the current lines selected in the gcov result view.
57+
</li>
58+
</ul>
59+
<p>Double-clicking on a item in the result view will open the corresponding source location, annotated with coverage informations.</p>
60+
<p>
61+
<img border="0" src="images/GcovAnnotatedSource.png"/>
62+
</p><hr/>
63+
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
64+
<tr>
65+
<td style="width: 20%" align="left">
66+
<a href="Opening-gcov-result.html" title="Opening gcov result">
67+
<img alt="Previous" border="0" src="../../../images/prev.gif"/>
68+
</a>
69+
</td>
70+
<td style="width: 60%" align="center">
71+
<a href="User-Guide.html" title="GCov Plug-in User Guide">
72+
<img alt="GCov Plug-in User Guide" border="0" src="../../../images/home.gif"/>
73+
</a>
74+
</td>
75+
<td style="width: 20%" align="right">
76+
<a href="Troubleshooting.html" title="Troubleshooting">
77+
<img alt="Next" border="0" src="../../../images/next.gif"/>
78+
</a>
79+
</td>
80+
</tr>
81+
<tr>
82+
<td style="width: 20%" align="left" valign="top">Opening gcov result</td>
83+
<td style="width: 60%" align="center"></td>
84+
<td style="width: 20%" align="right" valign="top">Troubleshooting</td>
85+
</tr>
86+
</table>
87+
</body>
88+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?xml version='1.0' encoding='utf-8' ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
5+
<title>GCov Plug-in User Guide - Installation and Set-Up</title>
6+
<link type="text/css" rel="stylesheet" href="../../../book.css"/>
7+
</head>
8+
<body>
9+
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
10+
<tr>
11+
<th style="width: 100%" align="center" colspan="3">Installation and Set-Up</th>
12+
</tr>
13+
<tr>
14+
<td style="width: 20%" align="left">
15+
<a href="User-Guide.html" title="GCov Plug-in User Guide">
16+
<img alt="Previous" border="0" src="../../../images/prev.gif"/>
17+
</a>
18+
</td>
19+
<td style="width: 60%" align="center"></td>
20+
<td style="width: 20%" align="right">
21+
<a href="Opening-gcov-result.html" title="Opening gcov result">
22+
<img alt="Next" border="0" src="../../../images/next.gif"/>
23+
</a>
24+
</td>
25+
</tr>
26+
<tr>
27+
<td style="width: 20%" align="left" valign="top">GCov Plug-in User Guide</td>
28+
<td style="width: 60%" align="center"></td>
29+
<td style="width: 20%" align="right" valign="top">Opening gcov result</td>
30+
</tr>
31+
</table><hr/>
32+
<h1 id="Installation_and_Set-Up">Installation and Set-Up</h1>
33+
<p>Gprof plugin depends on binutils (such as addr2line, c++filt and nm). Gprof can be used on any platform as soon as these binutils are in PATH. For example, you can use it on Windows with Cygwin.</p>
34+
<p>First of all, the user has to compile the C/C++ program with profiling enabled using "-ftest-coverage -fprofile-arcs" options prior to running the tool.</p><hr/>
35+
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
36+
<tr>
37+
<td style="width: 20%" align="left">
38+
<a href="User-Guide.html" title="GCov Plug-in User Guide">
39+
<img alt="Previous" border="0" src="../../../images/prev.gif"/>
40+
</a>
41+
</td>
42+
<td style="width: 60%" align="center">
43+
<a href="User-Guide.html" title="GCov Plug-in User Guide">
44+
<img alt="GCov Plug-in User Guide" border="0" src="../../../images/home.gif"/>
45+
</a>
46+
</td>
47+
<td style="width: 20%" align="right">
48+
<a href="Opening-gcov-result.html" title="Opening gcov result">
49+
<img alt="Next" border="0" src="../../../images/next.gif"/>
50+
</a>
51+
</td>
52+
</tr>
53+
<tr>
54+
<td style="width: 20%" align="left" valign="top">GCov Plug-in User Guide</td>
55+
<td style="width: 60%" align="center"></td>
56+
<td style="width: 20%" align="right" valign="top">Opening gcov result</td>
57+
</tr>
58+
</table>
59+
</body>
60+
</html>

0 commit comments

Comments
 (0)