I'm new in eclipse and solaris. I'work perfectly in linux, but when i try to compile eclipse in solaris for x86 I receive this errors:
[javac] 1. ERROR in /export/home/ramoran/Desktop/eclipse_source/plugins/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FeatureWriter.java (at line 24)
[javac] public class FeatureWriter extends XMLWriter implements IPDEBuildConstants { [javac] ^^^^^^^^^^^^^ [javac] The return type is incompatible with Writer.append(CharSequence, int, int),
PrintWriter.append(CharSequence, int, int) [javac] ---------- [javac] 2. ERROR in /export/home/ramoran/Desktop/eclipse_source/plugins/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FeatureWriter.java (at line 24)
[javac] public class FeatureWriter extends XMLWriter implements IPDEBuildConstants { [javac] ^^^^^^^^^^^^^ [javac] The return type is incompatible with Writer.append(char), PrintWriter.append
(char) [javac] ---------- [javac] 3. ERROR in /export/home/ramoran/Desktop/eclipse_source/plugins/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FeatureWriter.java (at line 24) [javac] public class FeatureWriter extends XMLWriter implements IPDEBuildConstants {
[javac] ^^^^^^^^^^^^^ [javac] The return type is incompatible with Writer.append(CharSequence), PrintWriter.append(CharSequence) [javac] ---------- [javac] ---------- [javac] 4. WARNING in /export/home/ramoran/Desktop/eclipse_source/plugins/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FetchScriptGenerator.java (at line 23)
[javac] import org.eclipse.update.internal.core.FeatureExecutableFactory; [javac] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [javac] Discouraged access: The type FeatureExecutableFactory is not accessible due to restriction on classpath entry /export/home/ramoran/Desktop/eclipse_source/plugins/org.eclipse.update.core/@dot
[javac] ---------- [javac] 5. WARNING in /export/home/ramoran/Desktop/eclipse_source/plugins/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FetchScriptGenerator.java (at line 415) [javac] FeatureExecutableFactory factory = new FeatureExecutableFactory();
[javac] ^^^^^ ....
and can't finish the build. Please help me, because I' needed for a home work in my university(www.usach.cl). Thanks!!
PD: If this mail list is not for my problem, please tell me where I can find information. Thanks!!
PD2: other errors has ven soved using : #cat test.sh find . -type f -name '*.xml' -exec \ sed -r \ -e "s/(\"compilerArg\" value=\")/\1-nowarn /g" \
-e "s/(-encoding ISO-8859-1)/\1 -nowarn/g" \ -e "s:(<property name=\"javacSource\" value=)\".*\":\1\"1.5\":" \
-e "s:(<property name=\"javacTarget\" value=)\".*\":\1\"1.5\":" \ -i {} \;