Cygwin Installation

The Cygwin toolkit provides Unix tools on the Windows platform. You need only install the Cygwin toolkit if you are rebuilding from source under Windows and intend to develop your own actors using Java using third party Java packages.

Rather than installing Cygwin, it may be easier to follow the Eclipse instructions and use the $PTII/.classpath.default.

An alternative way to rebuild from sources on all platforms is to use Apache ant, which requires neither Cygwin nor Apache. See ant $PTII/doc/coding/ and $PTII/build.default.xml.

Under Windows, the reason to install the Cygwin toolkit is so that ./configure may be run and packages like Java 3D found in your environment. The $PTII/.classpath.default file refers only to resources included in the Ptolemy II download and does not refer to other packages such as Java 3D for Windows. Eclipse users who are using third party packages will need configure the Eclipse build path by hand.

Note that compile your own actors, you will also need the javac compiler. The javac compiler is part of the JDK, which is available at: http://www.oracle.com/technetwork/java/javase/downloads/index.html. The javac compiler is not present in the Java Runtime Environment (JRE)

The Cygwin home page is at http://sources.redhat.com/cygwin/

Complete installation instructions can be found at http://sources.redhat.com/cygwin/faq.

Compiling the Ptolemy II Matlab interface and Java Native Interface (JNI) actor requires that the a C compiler be installed. The Matlab interface requires that Matlab be installed on the local machine.

Under Windows, to build the Matlab interface, it may be necessary to use MinGW from http://www.mingw.org. Recent versions of Cygwin seem to include what is necessary, so if you are building the Matlab interface, try Cygwin first and if that does not work, try installing MinGW separately.

Contents

Cygwin Installation instructions

  1. Download the Cygwin setup from https://cygwin.com/install.html. Note that there are two versions, one for 32-bit, the other for 64-bit. Most versions of Windows are 64-bit. See 32-bit or 64-bit for details.
    The instructions below assume 64-bit.
  2. Double click on the setup executable that was downloaded.
  3. In the "Open File - Security Warning" window, click Run.
    Open File - Security Warning
  4. In the "Cygwin Net Release Setup Program" window, click Next.
    Cygwin Net Release Setup Program
  5. In the "Cygwin Setup - Choose Installation Type" window, keep the default of Install from Internet. and click Next.
    Cygwin Setup - Choose Installation Type
  6. In the "Cygwin Setup - Choose Installation Directory" window, keep the default Root Directory C:\cygwin64 and Install for All Users, click Next.
    Cygwin Setup - Choose Installation Directory
  7. In the "Cygwin Setup - Choose Local Package Directory" window, keep the default and click Next.
    Cygwin Setup - Choose Local Package Directory
  8. In the "Cygwin Setup - Select Connection Type" window, keep the defaults and click Next.
    Cygwin Setup - Select Connection Type
  9. In the "Cygwin Setup - Choose Download Site(s)" window, select a nearby download site and click Next.
    Cygwin Setup - Choose Download Site(s)
  10. Finally, the "Cygwin Setup - Select Packages" window comes up! This window is populated with a default set of packages to download. The "View" button on the upper right toggles through different views.
    Click on the "View" button until Full is displayed. (The window below was resized so as to better fit the screen. Your view may vary.)
    Cygwin Setup - Select Packages
  11. The next steps are to add a number of packages by typing the name of each of the packages below into the Search window fo the "Cygwin Setup - Select Packages" Window and then click on the "Skip" icon until the version number is displayed.
    In the window below, gcc-core has been entered in to the Search window and two packages have been selected.
    Cygwin Setup - Select Packages Search
    For each of the packages listed below, enter the package name into the Search window, and then click on the Skip icon until a version number is displayed (The version numbers that were present in November, 2014 are shown, more recent runs of setup will have later versions):
    • diffutils 3.3-2
    • make 4.0-2
    • subversion 1.8.10-2
    If you plan on using the Matlab interface or doing significant development, add these packages.
    • autoconf 13-1 (Used to update $PTII/configure)
    • automake 1.14.1-1 (Used by Viptos)
    • binutils 2.24-51.6
    • bison 3.0.2-1 (Used by Viptos)
    • emacs 24.4-2 (Used by Viptos)
    • emacs-el 24.4-2 (Used by Viptos)
    • gcc-core 4.8.3-5. Select gcc-core and mingw64-x86_64-gcc-core 4.8.3-5 (Used by Matlab)
    • gcc-g++ 4.8.3-5. Also select mingw64-x86_64-gcc-g++ 4.8.2-1 (Used by Matlab)
    • gperf 3.0.4-2 (Used by Viptos)
    • libexpat-devel 2.1.0-3 (Used by BCVTB in $PTII/lbnl)
    • rpm 4.11.1-1 (Used by Viptos)
    • unzip (Used by FMI)
    • zip (Used by FMI)
  12. In the "Cygwin Setup - Select Packages" window, click Next.
  13. In the "Cygwin Setup - Resolving Dependencies" window, click Next.
  14. The download and installation will proceed
  15. In the "Cygwin Setup - Installation Status and Create Icons" window, select Create icons on the Desktop and Add icon to Start Menu, then hit Finish.
  16. c:/cygwin64/etc/passwd is created during the Cygwin installation. If your Windows account is a domain account and not a local account, then you may need to add an entry to c:/cygwin64/etc/passwd by hand.
    To do this, start up the Cygwin bash shell by clicking on the Bash icon.
    Then use the mkpasswd command to append a line with your login information, for example, user "cxh" used:
    	  mkpasswd -l > /etc/passwd
    	  mkpasswd -d -u cxh --path-to-home=/cygdrive/c/users >> /etc/passwd
    	
    mkpasswd -h will print out help for the mkpasswd command
  17. Follow the instructions in the Set the value of the PTII environment variable section

Problems and solutions

$'\r': command not found

The problem is that shell scripts such as $PTII/bin/vergil may fail:

	  $ export PTII=c:/user/ptII
	  $ $PTII/bin/vergil
	  c:/user/ptII/bin/vergil: line 30: $'\r': command not found
	  c:/user/ptII/bin/vergil: line 40: $'\r': command not found
	  c:/user/ptII/bin/vergil: line 43: $'\r': command not found
	  c:/user/ptII/bin/vergil: line 48: $'\r': command not found
	  c:/user/ptII/bin/vergil: line 67: syntax error near unexpected token `$'in\r''
	  ':/user/ptII/bin/vergil: line 67: `    case "`uname -s`" in
	

The solution is to set bash to ignore carriage returns '\r',

Another possible solution is to create a ~/.bash_profile that contains

	    export SHELLOPTS
	    set -o igncr
	  
To find your home directory, start up Cygwin bash and type cd;pwd. Then use an editor like Wordpad.

See also:

Another possibility is to use perl to convert the \r\n characters to \n:

	  perl -i -pne "s/\r\n/\n/g" configure
	

*** target pattern contains no '%'. Stop.

The problem is that if $PTII contains a colon, such as

	  export PTII=c:/Users/Administrator/ptII
	

Then newer versions of GNU make will fail.

Under Windows, $PTII must be set using c: syntax because tools like java do not understand /cygdrive/c

A workaround is to download cygwin-make-3.80.tar.gz:

	    cd /usr/bin
            wget https://ptolemy.berkeley.edu/ptolemyII/ptII10.0/cygwin-make-3.80.tar.gz
	    mv make.exe make.old.exe
	    tar -zxf cygwin-make-3.80.tar.gz
	    rm cygwin-make-3.80.tar.gz
	  

See Bug 55 - GNU Make 3.81 is broken under Windows

Installing MinGW for Windows

In the past, the default gcc compiler shipped with Cygwin produced .dll files that did not work properly.  The solution is to install Mingw.

MinGW may only be necessary if you are building the Matlab interface.

Installing from the MinGW website

  1. Install Cygwin either from http://www.cygwin.com or from the Ptolemy distribution.
  2. Start Cygwin bash, create c:\mingw
  3. mkdir c:/mingw
    	    cd c:/mingw
  4. Copy the mingwdl.sh script from http://www.mingw.org/wiki/HOWTO_Install_the_MinGW_GCC_Compiler_Suite and paste it into an editor and create c:/mingw/mingwdl.sh
  5. Execute mingwdl.sh, which will download the binaries into c:/mingwdl.
    bash mingwdl.sh
  6. Unzip the .tar.gz files
    gunzip *.gz
  7. Uncompress the .tar.lzma files:
    lzma -d *.lzma
  8. untar the .tar files.  Create a script called mingwuntar.sh:
    #!/bin/sh
    	    tars=`ls *.tar`
    	    for tar in $tars
    	    do
    	    echo $tar
    	    tar -xf $tar
    	    done
  9. Run mingwuntar.sh
    bash mingwuntar.sh
  10. Add c:\mingw\bin to your Windows path Based on the Mingw instructions:
    1. Right-click on "My Computer" and select "Properties".
    2. Click Advanced | Environment Variables.
    3. In the box entitled "System Variables" scroll down to the line that says "PATH" and double-click the entry.
    4. You will be presented with a dialog box with two text boxes, the bottom text box allows you to edit the PATH variable. It is very important that you do not delete the existing values in the PATH string, this will cause all sorts of problems for you!
    5. Scroll to the end of the string and at the end add ";C:\mingw\bin". Don't forget the semicolon; this separates the entries in the PATH.
    6. press OK | OK | OK and you are done.

Enabling Copy in Cygwin Bash under XP

You may need to enable copy and paste in the bash shell window.

If copy and paste are working properly, then you should be able to highlight text by left clicking and dragging the mouse over the text and then hitting the Enter key to copy the highlighted text.

The Cygwin faq at https://www.cygwin.com/faq/faq.html#faq.using.copy-and-paste says:

How can I copy and paste into Cygwin console windows?

First, consider using mintty instead of the standard console window. In mintty, selecting with the left-mouse also copies, and middle-mouse pastes. It couldn't be easier!

In Windows's console window, open the properties dialog. The options contain a toggle button, named "Quick edit mode". It must be ON. Save the properties.

You can also bind the insert key to paste from the clipboard by adding the following line to your .inputrc file:

	  "\e[2~": paste-from-clipboard