Skip to content

Commit cc39b44

Browse files
author
mgricken
committed
Added Eclipse compiler version 3.6M6, without bugfix.
git-svn-id: file:///tmp/test-svn/trunk@5207 fe72c1cf-3628-48e9-8b72-1c46755d3cff
1 parent 924f4a5 commit cc39b44

File tree

433 files changed

+156080
-0
lines changed

Some content is hidden

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

433 files changed

+156080
-0
lines changed
1.61 MB
Binary file not shown.
1.25 MB
Binary file not shown.

misc/eclipse-compiler/eclipse.drjava

Lines changed: 1571 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Manifest-Version: 1.0
2+
Bundle-ManifestVersion: 2
3+
Bundle-Name: Source of Eclipse Compiler for Java(TM)
4+
Bundle-SymbolicName: org.eclipse.jdt.core.compiler.batch.source
5+
Bundle-Version: 3.6.0.I20100312-1448
6+
Bundle-Vendor: Eclipse.org
7+
Eclipse-SourceBundle: org.eclipse.jdt.core.compiler.batch;version="3.6.0.I20100312-1448";roots:="."
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jarprocessor.exclude.sign=true
2+
jarprocessor.exclude.children=true
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.eclipse.jdt.internal.compiler.tool.EclipseCompiler #Eclipse compiler
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
6+
<title>About</title>
7+
</head>
8+
<body lang="EN-US">
9+
<h2>About This Content</h2>
10+
11+
<p>June 2, 2006</p>
12+
<h3>License</h3>
13+
14+
<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;). Unless otherwise
15+
indicated below, the Content is provided to you under the terms and conditions of the
16+
Eclipse Public License Version 1.0 (&quot;EPL&quot;). A copy of the EPL is available
17+
at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
18+
For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
19+
20+
<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
21+
being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
22+
apply to your use of any object code in the Content. Check the Redistributor's license that was
23+
provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
24+
indicated below, the terms and conditions of the EPL still apply to any source code in the Content
25+
and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
26+
27+
</body>
28+
</html>

misc/eclipse-compiler/src/build.xml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?xml version="1.0" encoding="UTF-8"?><!--
2+
Copyright (c) 2007, 2009 IBM Corporation and others.
3+
All rights reserved. This program and the accompanying materials
4+
are made available under the terms of the Eclipse Public License v1.0
5+
which accompanies this distribution, and is available at
6+
http://www.eclipse.org/legal/epl-v10.html
7+
8+
Contributors:
9+
IBM Corporation - initial API and implementation
10+
-->
11+
12+
<project name="export-executable" default="build" basedir=".">
13+
14+
<property name="output" value="bin" />
15+
<property name="jar_file" value="ecj.jar" />
16+
17+
<target name="build">
18+
<delete file="${basedir}/${jar_file}" failonerror="no" />
19+
<delete dir="${output}" failonerror="no" />
20+
<mkdir dir="${output}" />
21+
22+
<javac srcdir="${basedir}" destdir="${output}"
23+
debuglevel="lines,source"
24+
source="1.3"
25+
target="1.2"
26+
excludes="org/eclipse/jdt/internal/compiler/tool/*,**/apt/**">
27+
<compilerarg line="-Xlint:none"/>
28+
</javac>
29+
30+
<javac destdir="${output}"
31+
debuglevel="lines,source"
32+
source="1.6"
33+
target="1.6"
34+
includes="org/eclipse/jdt/internal/compiler/tool/*">
35+
<src path="${basedir}"/>
36+
<include name="org/eclipse/jdt/internal/compiler/tool/*"/>
37+
<include name="**/apt/**"/>
38+
<compilerarg line="-Xlint:none"/>
39+
</javac>
40+
41+
<zip destfile="${basedir}/${jar_file}">
42+
<fileset dir="${output}" />
43+
<fileset dir="${basedir}">
44+
<include name="about.html"/>
45+
<include name="**/*.rsc"/>
46+
<include name="META-INF/**"/>
47+
<include name="**/*.properties"/>
48+
<exclude name="META-INF/eclipse.inf"/>
49+
</fileset>
50+
</zip>
51+
<delete dir="${output}" />
52+
</target>
53+
</project>

misc/eclipse-compiler/src/ecj.jar

1.08 MB
Binary file not shown.

0 commit comments

Comments
 (0)