Hi,
I've tried to build classlib on em64t workstation an got some problems:
0. Bug in depends.xml - hosts architectures defined with bug
---------------
<condition property="hack.arch" value="ipf">
<isset property="is.x86_64" />
</condition>
--------------- small fix
<condition property="hack.arch" value="ia64">
<isset property="is.ia64" />
</condition>
<condition property="hack.arch" value="x86_64">
<isset property="is.x86_64" />
</condition>
---------------
1. ant (1.6.5 or 1.7.0.beta2 - I've tried to use both) cannot create
symlinks. It is not serious porblem - it is possible to create these lintks
manually
2. build process was interrupted by error:
----------------------------------------------------------------------------------------------------------------------------------
-really-link:
check:
-compile:
[mkdir] Created dir: /home/angel/builds/harmony/suse-10.1-em64t
/clean/classlib/trunk/build/classes
[javac] Compiling 3397 source files to /home/angel/builds/harmony/suse-
10.1-em64t/clean/classlib/trunk/build/classes
[javac] Note: * uses or overrides a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[mkdir] Created dir: /home/angel/builds/harmony/suse-10.1-em64t
/clean/classlib/trunk/deploy/jdk/jre/lib/boot
call-modules-all:
compile-java:
[echo] Compiling ACCESSIBILITY classes
copy-resources:
[copy] Copying 1 file to /home/angel/builds/harmony/suse-10.1-em64t
/clean/classlib/trunk/build/classes
svn-info:
build-jar:
BUILD FAILED
/home/angel/builds/harmony/suse-10.1-em64t/clean/classlib/trunk/build.xml:108:
The following error occurred while executing
this line:
/home/angel/builds/harmony/suse-10.1-em64t/clean/classlib/trunk/make/build-
java.xml:183: The following error occurred while executing
this line:
/home/angel/builds/harmony/suse-10.1-em64t/clean/classlib/trunk/make/properties.xml:249:
The following error occurred while executing
this line:
/home/angel/builds/harmony/suse-10.1-em64t/clean/classlib/trunk/make/properties.xml:259:
The following error occurred while executing
this line:
/home/angel/builds/harmony/suse-10.1-em64t/clean/classlib/trunk/modules/accessibility/build.xml:90:
No supported regular expression ma
tcher found
Total time: 56 seconds
Linux_x86_64 (bigbox): /home/angel/builds/harmony/suse-10.1-em64t
/clean/classlib/trunk
14:36:02 $
----------------------------------------------------------------------------------------------
It seems as an ant bug.
Could someone help me?