Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When you want to run it later in a Cygwin shell, you just need to have $XERCESCROOT/bin in the PATH, so that Windows can find the DLL at runtime.

Running SLIC after Installation

  1. Start -> Cygwin -> Cygwin Bash Shell
  2. Add Xerces-C++ bin to the path.
    No Format
    
    export PATH=/cygdrive/c/sim/xerces/bin:$PATH
    
  3. Go to SLIC directory.
    No Format
    
    cd /cygdrive/c/sim/slic
    
  4. Run the executable.
    No Format
    
    bin/WIN32-g++/slic [options]
    

If you receive an error message about a missing DLL cygxerces-c26.dll then make sure that the PATH is setup correctly and Xerces-C+\C+ was installed correctly.

Final Setup Script

The final setup.sh should look like this.

...