From: Bourlett, M. <Mic...@gd...> - 2007-04-02 16:49:21
|
The stack trace from gmake is attached. =20 Thanks. ________________________________ From: Bourlett, Michele Sent: Mon 4/2/2007 9:57 AM To: xml...@li... Subject: porting to IRIX 6.5.27 java errors I am attempting to port xmlbeansxx to IRIX 6.5.27. I have successfully = run configure but when I run gmake am getting errors in the java code. = The Java jre and jdk versions we have installed are jdk1.4.1_06. The = version of xmlbeansxx source I am using is 0.7.3. =20 =20 Some of the errors are in the following code in = xmlbeansxx-0.7.3/generator/src/java/pl/touk/xmlbeansxx/ClassGen.java: =20 public static SchemaTypeSystem loadTS(String name, List<String> = xsdFileNames) { ArrayList xsds =3D new ArrayList(); for (String xsd : xsdFileNames) xsds.add(new File(xsd)); //xsds.add(new File("b.xsd")); File[] xsdstab =3D new File[xsds.size()]; for (int i =3D 0; i < xsds.size(); i++) xsdstab[i] =3D (File) xsds.get(i); return TSLoader.loadTypeSystem(name, xsdstab, new File(".")); } =20 Any help would be appreciated. =20 |