[xsde-users] using xsd/e on macOS 10.15

Boris Kolpackov boris at codesynthesis.com
Mon Feb 24 08:43:58 EST 2020


James Sutton <jsutton at dolphin-com.co.uk> writes:

> Please send the instructions.

1. First get XCode Command Line Tools unless you already have them
   installed:

   $ xcode-select --install
   $ g++ --version

2. Download Xerces-C++ from:

   http://xerces.apache.org/xerces-c/download.cgi

3. Build Xerces-C++:

   $ tar -xfJ xerces-c-3.2.2.tar.bz2
   $ cd xerces-c-3.2.2
   $ ./configure --disable-threads --disable-network \
     --disable-shared CXXFLAGS=-O2 CFLAGS=-O2
   $ cd src
   $ make -j 8

4. Download xsde+dep package from:

   https://www.codesynthesis.com/download/xsde/3.2/xsde-3.2.0-1+dep.tar.bz2

5. Build XSD/e compiler:

   $ tar xfJ xsde-3.2.0-1+dep.tar.bz2
   $ cd xsde-3.2.0-1+dep
   $ make \
     CPPFLAGS=-I../xerces-c-3.2.2/src \
     LDFLAGS=-L../xerces-c-3.2.2/src/.libs \
     -j 8
   $ xsde/xsde --version

Let me know if there are any issues.



More information about the xsde-users mailing list