next up previous
Next: C++ mapping Up: Compiler and Linker Wrappers Previous: Compiler and Linker Wrappers

Examples

Let us consider building a simple MICO-aplication that consists of two files: account.idl and main.cc. Here is how to build account:

  idl account.idl
  mico-c++ -I. -c account.cc -o account.o
  mico-c++ -I. -c main.cc -o main.o
  mico-ld account.o main.o -o account -lmico2.2.3

As a second example let us consider building a dynamically loadable module and a client program that loads the module. We have three source files now: account.idl, client.cc, and module.cc:

  idl account.idl
  mico-shc++ -I. -c account.cc -o account.o
  mico-shc++ -I. -c module.cc -o module.o
  mico-shld -o module module.o account.o -lmico2.2.3

  mico-c++ -I. -c client.cc -o client.o
  mico-ld account.o client.o -o client -lmico2.2.3

Note that



MICO
Tue Nov 10 11:04:45 CET 1998