On Sun, Sep 23, 2001 at 08:04:43PM -0400, Akintayo Holder wrote: | hi, | I am trying to install palm dev tools on woody. I would like to knwo how | you set the search path for the GCC compiler ? any information about | where i can find the env var of file containing the path would be nice.
Which search path? Include files or libraries? Directories to search for include files can be added on the command line with -I. Directories to search for shared libraries files can be added on the command line with -L. The desired libraries must also be specified with -l. The library search path can also be modified by setting LD_LIBRARY_PATH (both for compilation and execution). HTH, -D