From andybraham at acaciadynamics.com Thu Apr 20 11:26:05 2017 From: andybraham at acaciadynamics.com (andybraham@acaciadynamics.com) Date: Tue Apr 25 12:32:38 2017 Subject: [xsde-users] XSD/e on armv71 Message-ID: <001201d2b9ea$6fc0ae30$4f420a90$@acaciadynamics.com> Hello, I am trying to get XSD/e to run on a BeagleBone Black running Debian Linux 4.4.54-ti-r93. I tried to make/install both of the Linux Versions that were available with no avail. I was able to get it to start to compile but ran into the following errors: ../../../../../bin/xsde cxx-hybrid --generate-inline \ --generate-parser --generate-serializer --generate-xml-schema xml-schema.xsd ../../../../../bin/xsde: 2: ../../../../../bin/xsde: Syntax error: ")" unexpected makefile:61: recipe for target 'xml-schema.hxx' failed make[5]: *** [xml-schema.hxx] Error 2 make[5]: Leaving directory '/home/debian/Downloads/examples/cxx/hybrid/binary/custom' makefile:30: recipe for target 'custom' failed make[4]: *** [custom] Error 2 make[4]: Leaving directory '/home/debian/Downloads/examples/cxx/hybrid/binary' makefile:49: recipe for target 'binary' failed make[3]: *** [binary] Error 2 make[3]: Leaving directory '/home/debian/Downloads/examples/cxx/hybrid' makefile:8: recipe for target 'hybrid' failed make[2]: *** [hybrid] Error 2 make[2]: Leaving directory '/home/debian/Downloads/examples/cxx' makefile:8: recipe for target 'cxx' failed make[1]: *** [cxx] Error 2 make[1]: Leaving directory '/home/debian/Downloads/examples' makefile:10: recipe for target 'examples' failed make: *** [examples] Error 2 debian@beaglebone:~/Downloads$ Is there a actual syntax error in the file or is it just because of mismatched OS's? If it is possible can I obtain a BeagleBone Linux specific version? I am working a project that I really would like to use this library with. Thank you, Andy Braham andybraham@acaciadynamics.com --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From boris at codesynthesis.com Tue Apr 25 12:36:48 2017 From: boris at codesynthesis.com (Boris Kolpackov) Date: Tue Apr 25 12:36:57 2017 Subject: [xsde-users] XSD/e on armv71 In-Reply-To: <001201d2b9ea$6fc0ae30$4f420a90$@acaciadynamics.com> References: <001201d2b9ea$6fc0ae30$4f420a90$@acaciadynamics.com> Message-ID: Hi Andy, andybraham@acaciadynamics.com writes: > I am trying to get XSD/e to run on a BeagleBone Black running Debian > Linux 4.4.54-ti-r93. I tried to make/install both of the Linux Versions > that were available with no avail. You cannot use a binary compiled for one architecture (say i686) on another (say arm). You will either have to build XSD/e from source, or, probably easier, cross-compile to BeagleBone. Cross-compilation is how most embedded project that use XSD/e are setup. Boris