On 11 October 2006 at 16:18, "Valentin Al. Sitnick (Moscow)" <[EMAIL PROTECTED]> wrote: > > 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/properti > es.xml:249: > The following error occurred while executing > this line: > /home/angel/builds/harmony/suse-10.1-em64t/clean/classlib/trunk/make/properti > es.xml:259: > The following error occurred while executing > this line: > /home/angel/builds/harmony/suse-10.1-em64t/clean/classlib/trunk/modules/acces > sibility/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?
I've never seen this error, but it looks like you are missing a regex implementation. The ant regexp glob mapper has some dependencies described at: http://ant.apache.org/manual/CoreTypes/mapper.html#regexp-mapper But basically it says you need: Ant comes with implementations for the java.util.regex package of JDK 1.4 or higher, jakarta-regexp and jakarta-ORO. I'm kind of surprised you don't have the first of these? Regards, Mark. --------------------------------------------------------------------- Terms of use : http://incubator.apache.org/harmony/mailing.html To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
