From jeroendeleeuw at gmail.com Wed Feb 10 11:34:38 2010 From: jeroendeleeuw at gmail.com (Jeroen de Leeuw) Date: Wed Feb 10 11:35:02 2010 Subject: [xsde-users] Compiling xsde.lib on Windows without using nmake Message-ID: <84dda23d1002100834o2f9cce6bldf5a45169582591b@mail.gmail.com> Dear all, Is it possible to compile the xsde.lib under Windows, without the installation of MS Visual Studio 20XX, using the open source IDE Eclipse (CDT) with the GNU toolchain? With kind regards, J. de Leeuw From boris at codesynthesis.com Thu Feb 11 02:40:18 2010 From: boris at codesynthesis.com (Boris Kolpackov) Date: Thu Feb 11 02:39:22 2010 Subject: [xsde-users] Compiling xsde.lib on Windows without using nmake In-Reply-To: <84dda23d1002100834o2f9cce6bldf5a45169582591b@mail.gmail.com> References: <84dda23d1002100834o2f9cce6bldf5a45169582591b@mail.gmail.com> Message-ID: Hi Jeroen, Jeroen de Leeuw writes: > Is it possible to compile the xsde.lib under Windows, without the > installation of MS Visual Studio 20XX, using the open source IDE > Eclipse (CDT) with the GNU toolchain? You should be able to compile the XSD/e runtime library with the GNU toolchain on Windows (though with GNU the resulting library will be named libxsde.a instead of xsde.lib). You will need to follow the "GNU make" instructions in the INSTALL file. Once this is done you can use Eclipse CDT to build examples or your application. Here are the instructions on how to setup the schema compilation with XSD/e in Eclipse: http://www.codesynthesis.com/pipermail/xsde-users/2009-October/000153.html Let me know if you run into any problems. Boris From jeroendeleeuw at gmail.com Fri Feb 12 04:19:53 2010 From: jeroendeleeuw at gmail.com (Jeroen de Leeuw) Date: Fri Feb 12 04:20:15 2010 Subject: [xsde-users] Compiling xsde.lib on Windows without using nmake In-Reply-To: References: <84dda23d1002100834o2f9cce6bldf5a45169582591b@mail.gmail.com> Message-ID: <84dda23d1002120119g7e698555ga073da3bb63f0355@mail.gmail.com> Thank you for your reply, I was having problems compiling the code, so I was just wondering if it was possible. Though the problem wasn't in the code, the problem was in the compiler, I was using the native built-in compiler of CDT, when I thought I was using the Gnu Toolchain. Thanks for your support Boris and for the work you are doing. With kind regards, Jeroen de Leeuw 2010/2/11 Boris Kolpackov > Hi Jeroen, > > Jeroen de Leeuw writes: > > > Is it possible to compile the xsde.lib under Windows, without the > > installation of MS Visual Studio 20XX, using the open source IDE > > Eclipse (CDT) with the GNU toolchain? > > You should be able to compile the XSD/e runtime library with the > GNU toolchain on Windows (though with GNU the resulting library > will be named libxsde.a instead of xsde.lib). You will need to > follow the "GNU make" instructions in the INSTALL file. > > Once this is done you can use Eclipse CDT to build examples or > your application. Here are the instructions on how to setup the > schema compilation with XSD/e in Eclipse: > > http://www.codesynthesis.com/pipermail/xsde-users/2009-October/000153.html > > Let me know if you run into any problems. > > Boris > From boris at codesynthesis.com Fri Feb 26 13:08:06 2010 From: boris at codesynthesis.com (Boris Kolpackov) Date: Fri Feb 26 12:58:40 2010 Subject: [xsde-users] Re: XSDE Execution Problems under Fedora Linux 64-bit In-Reply-To: <8A69033E02ED29419B0F43AD421CEC3A225050@novaxcg01.csw.l-3com.com> References: <8A69033E02ED29419B0F43AD421CEC3A225050@novaxcg01.csw.l-3com.com> Message-ID: Hi Bob, In the future please send emails regarding XSD/e to: xsde-users@codesynthesis.com instead of: xsde-users-owner@codesynthesis.com Since that's the correct mailing list address. Bob.Oneil@L-3Com.com writes: > Probably a newbie question, but when I do the initial install of > "xsde-3.1.0-i686-linux-gnu" to build the libraries under Fedora Linux > 64-bit, although the xsde libraries seem to build without problems, the > makefile > > does not run through completion and errors out anytime the "xsde" binary > is invoked to generate the files based on the underlying .xsd. This is > true as well when the file xsde is copied to /usr/local/bin. > > > > I get "Command not found" in the make file when invoking > > > > ../../../../../bin/xsde: Command not found > > > > When I invoke gcc make in the Hello folder, I get a similar response. > When I hardcode the path to the xsde binary, I get ""/lib/ld-linux.so.2: > bad ELF interpreter:" > > > > Is the xsde binary distributed with the package compatible with Fedora > Linux 10, 64-bit, or does it need to be rebuilt or Yum installed from a > repository? > When I hardcode the path to the xsde binary, I get ""/lib/ld-linux.so.2: > bad ELF interpreter:" Normally the error above means that you don't have 32-bit glibc installed and as a result are not able to run 32-bit applications (xsde in this package is a 32-bit Linux binary). If for some reason you can't install 32-bit glibc then I can build you a 64-bit xsde binary. Boris