Newsgroups: comp.sys.transputer
From: ling@coral.cs.jcu.edu.au (Ling Shi)
Subject: Re: INMOS toolset for transputers
Organization: Dept Computer Science, James Cook University, Townsville
Date: Tue, 14 Jun 94 07:16:22 GMT
Message-ID: <1994Jun14.071622.26255@marlin.jcu.edu.au>

Patiath_Prasad@htc.honeywell.com (Prasad Patiath) says:
> 
> development tools are the standard C and C++ toolset supplied by INMOS. I
> am trying to build C++ applications to be run on the transputers. The C++
> toolset provides a Glokenspiel C preprocessor (release 2.0), AT&T C++
> compiler 2.0 and a linker ver 2.0. I am having problems compiling my C++
> code using these tools. If anyone has successfully built C++ applications

I haven't used INMOS C++, but I did use Glokenspiel C++ (2.0) with INMOS
C. The procedure is:

1. use ccxx (iccxx in my machine) to convert C++ code to C code.
   e.g. iccxx !T sample.cxx   (output is sample.c)

2. use icc as normal
   e.g. icc /t8 sample.tco 

3. add libcxx.lib (Glokenspiel C++) to the startup file or link it
   manually.  
   e.g. ilink /t8 /f startup.lnk sample.tco libcxx.lib 


Regards, 

Ling Shi 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| Department of Computer Science    |                                    |
| James Cook University             |             \   _   /              |
| Townsville QLD 4811               |   *__________\_(O)_/__________*    |
| Australia                         |       *  @  (](_o_)[)  @  *        |
|phone:  +61 77 815851              |              ^  @  ^               |
|                                   |                                    |
|E-Mail: cpls@marlin.jcu.edu.au     |                                    |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

