Weiqi wrote: > For the Sun JDK, system properties can be passed in at > runtime using the 'java -Dname=value Foo' command > line. > > What is the equivalent for a gcj compiled executable? Set the GCJ_PROPERTIES environment variable. $ GCJ_PROPERTIES="name=value" Foo AG