How do you get your environment variables seen in SS?

I am trying out SS, we currently use gcc/Kdevelop. When I try to launch my program or debug inside Sun Studio I get an error about a missing .so. Since everything works fine from the command line I assume SS does see my shell environment variables. I don't see any option for this, what am I missing?

[308 byte] By [Tgablea] at [2007-11-27 6:31:38]
# 1

First of all, you can check whether environment is inherited or not from dbx command line:

- start debug session

- go to "Dbx console" tab at the bottom

- issue 'set' command and/or 'set | grep your_variable' to see if it is there

If it's really missing or has value other that expected, use project properties to specify environment for the application. It can be done like this:

- right-click project in Projects window, choose Properties

- select "Running" node

- and edit the "Environment" field

MaximKartasheva at 2007-7-12 17:56:36 > top of Java-index,Development Tools,Solaris and Linux Development Tools...
# 2
The LD_LIBRARY_PATH seems to be there and correct, I guess my problem is something else. Thanks for the help.
Tgablea at 2007-7-12 17:56:36 > top of Java-index,Development Tools,Solaris and Linux Development Tools...
# 3
Note that you can also run ldd from the dbx console from the IDE, maybe it will help to identify the problem better.
MaximKartasheva at 2007-7-12 17:56:36 > top of Java-index,Development Tools,Solaris and Linux Development Tools...