Hi,

I am trying to compile my project in windows xp professional and it
take around 15 min to compile, where as the same code when I try to
compile on Solaris it takes around 100 min to compile the same exact
code.

Does any of you encountered this issue or any suggestion.  Here is my
build steps.

<target name="compile" depends="init">
<mkdir dir="${build.dir}/classes" />
                <echo message="${build.dir}/classes   - classes directory " />
                <java classname="com.google.gwt.dev.GWTCompiler" fork="true" 
dir="$
{basedir}">
                        <jvmarg value="-Xmx512M" />
                        <classpath refid="classpath" />
                        <arg line="-out ${build.dir}/classes" />
                        <arg value="%*" />
                        <arg value="${module}" />
                </java>

                <javac destdir="${build.dir}/classes"  debug="true" 
deprecation="on"
optimize="off" failonerror="true">
                        <src path="${src.dir}" />
                        <classpath refid="classpath" />
                </javac>
        </target>

Thanks
-MY

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to