| Summary: | [1.9] JDT's ant adapter should not rely on attributes unsupported in Jigsaw | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Jay Arthanareeswaran <jarthana> |
| Component: | Core | Assignee: | Jay Arthanareeswaran <jarthana> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 4.5.1 | ||
| Target Milestone: | BETA J9 | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | stalebug | ||
|
Description
Jay Arthanareeswaran
I can confirm that with Javc the following testcase fails:
<?xml version="1.0" encoding="UTF-8"?>
<project name="Eclipse Batch Compiler" default="init" basedir="..">
<target name="init">
<property name="srcdir" value="${user.dir}/src" />
<property name="dest" value="${user.dir}/dest" />
<javac target="1.9" source="1.9" srcdir="${srcdir}" destdir="${dest}" >
<compilerarg value="-Xbootclasspath/p:${boot.path}"/>
</javac>
</target>
</project>
Error reported:
[javac] javac: option -Xbootclasspath/p: not allowed with target 1.9
As of now, ECJ doesn't report any error.
(In reply to Jay Arthanareeswaran from comment #1) > [javac] javac: option -Xbootclasspath/p: not allowed with target 1.9 > > As of now, ECJ doesn't report any error. With a fix for bug 499961, the error is reported for bootclasspath and extdirs. ECJ doesn't appear to do anything with -Xbootclasspath, in which case, not reporting the error seems fine to me. This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. -- The automated Eclipse Genie. |