Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipse-dev] Source builds with source code in the .zip files

Dean Roberts writes:
 > Hi folks,
 > 
 > As promised yesterday we have added a 2nd flavour of source build.  There 
 > is now a small zip that will fetch Java source code and resources from cvs 
 > on dev.eclipse.org to do the build and a larger zip that already contains 
 > all the Java source code.
 > 
 > Both of these source builds are available for the release 2.0 build at:
 > 
 >         http://64.38.198.171/downloads/drops/R-2.0-200206271835/index.php
 > 
 > They will also be included for all future builds in their respective drop 
 > directories.
 > 
 > Both these types of builds will build eclipse using pregenerated build.xml 
 > files.
 > 
 > Please let us know about any problems you find.

Thanks for posting this.

There are issues with this build that aren't flagged up because ant
doesn't halt when the problems occur.  For example:

      [javac][loading /cuddles/aph/eclipse-sourceBuild-srcIncluded-2.0/plugins/org.eclipse.jdt.debug/jdimodel.jar(org/eclipse/jdt/debug/eval/IClassFileEvaluationEngine.class)]
     [javac]/cuddles/aph/eclipse-sourceBuild-srcIncluded-2.0/plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/snippeteditor/JavaSnippetEditor.java:64: cannot resolve symbol
     [javac]symbol  : class JavaPlugin  
--
     [javac][loading /cuddles/aph/eclipse-sourceBuild-srcIncluded-2.0/plugins/org.eclipse.jdt.launching/launching.jar(org/eclipse/jdt/launching/JavaRuntime.class)]
     [javac]/cuddles/aph/eclipse-sourceBuild-srcIncluded-2.0/plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/snippeteditor/JavaSnippetEditor.java:67: cannot resolve symbol
     [javac]symbol  : class IContextMenuConstants  
--
     [javac]                          ^
     [javac]/cuddles/aph/eclipse-sourceBuild-srcIncluded-2.0/plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/snippeteditor/JavaSnippetEditor.java:68: cannot resolve symbol
     [javac]symbol  : class JavaTextTools  
--

There are many more of these but including them all would make the
mail too big.

Also these

     [javac]                                                                                                                        ^
     [javac]/cuddles/aph/eclipse-sourceBuild-srcIncluded-2.0/plugins/org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/TestSelectionDialog.java:41: non-static variable super cannot be referenced from a static context
     [javac]			return super.getImage(((IType)element).getPackageFragment());
     [javac]                               ^
     [javac]/cuddles/aph/eclipse-sourceBuild-srcIncluded-2.0/plugins/org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/TestSelectionDialog.java:41: getImage(java.lang.String) in org.eclipse.jface.dialogs.Dialog cannot be applied to (org.eclipse.jdt.core.IPackageFragment)
     [javac]			return super.getImage(((IType)element).getPackageFragment());
     [javac]                                    ^
     [javac]/cuddles/aph/eclipse-sourceBuild-srcIncluded-2.0/plugins/org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/TestSelectionDialog.java:45: non-static variable super cannot be referenced from a static context
     [javac]			return super.getText(((IType)element).getPackageFragment());

My build command was

   build -os linux -ws gtk -bc /opt/IBMJava2-13/jre/lib/rt.jar

on a Red Hat 7.2 Athlon system.

Andrew.



Back to the top