What are your OS and tools (java, ant, python, g++) versions?
Here are my versions, and a script to get them. Is there a good place to
check this script in, perhaps under tools?
Also it would be nice if we could echo the ANT_OPTS in the ant script,
since I set it to this in ${ANT_HOME}/bin/ant;
ANT_OPTS="-Xmx4g -XX:MaxPermSize=4g -Dfile.encoding=UTF-8"
[gwt@localhost bin]$ ./system_info.sh
This script simply prints the versions software
used by the gwt build.
unix is
Linux localhost.localdomain 3.10.0-123.8.1.el7.x86_64 #1 SMP Thu Oct 9
23:53:48 CDT 2014 x86_64 x86_64 x86_64 GNU/Linux
java is
java version "1.7.0_65"
OpenJDK Runtime Environment (rhel-2.5.1.2.el7_0-x86_64 u65-b17)
OpenJDK 64-Bit Server VM (build 24.65-b04, mixed mode)
ant is
/home/gwt/ant/apache-ant-1.9.4/bin/ant
Apache Ant(TM) version 1.9.4 compiled on April 29 2014
JAVA_HOME is
/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.65-2.5.1.2.el7_0.x86_64
ANT HOME is
/home/gwt/ant/apache-ant-1.9.4
python is
Python 2.7.5
gcc is
gcc (GCC) 4.8.2 20140120 (Red Hat 4.8.2-16)
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
GWT_TOOLS is
/home/gwt/tools
TZ is
America/Los_Angeles
ANT_OPTS may be set in you /home/gwt/ant/apache-ant-1.9.4/bin/ant shell
script
Cheers,
Scott
--
You received this message because you are subscribed to the Google Groups "GWT
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/google-web-toolkit-contributors/42a9f6f4-dad0-47fd-b771-4d78d80f43f0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
#!/bin/sh
echo "This script simply prints the versions software"
echo "used by the gwt build."
echo "unix is"
uname -a
echo ""
echo "java is"
java -version
echo "ant is"
which ant
ant -version
echo ""
echo "JAVA_HOME is"
echo ${JAVA_HOME}
echo ""
echo "ANT HOME is"
echo ${ANT_HOME}
echo ""
echo "python is"
python -V
echo ""
echo "gcc is"
gcc --version
echo ""
echo "GWT_TOOLS is"
echo ${GWT_TOOLS}
echo ""
echo "TZ is"
echo ${TZ}
echo ""
echo ANT_OPTS may be set in you ${ANT_HOME}/bin/ant shell script