Sun Cluster 3.1 10/03 Data Services Developer's Guide

Setting Up the Development Environment

This procedure describes how to install the SUNWscdev package and set the compiler and linker options for data service development.

  1. Become superuser or assume an equivalent role and change directory to the CD-ROM directory that you want.


    # cd CD-ROM_directory
    
  2. Install the SUNWscdev package in the current directory.


    # pkgadd -d . SUNWscdev
    
  3. In the Makefile, specify compiler and linker options that identify the include and library files for your data service code.

    Specify the -I option to identify the Sun Cluster header files, the -L option to specify the compile-time library search path on the development system, and the -R option to specify the library search path to the runtime linker on the cluster.

    # Makefile for sample data service
    ... 
    
    -I /usr/cluster/include
    
    -L /usr/cluster/lib
    
    -R /usr/cluster/lib
    ...