Wayne Brissette
Wayne Brissette

Reputation: 137

Where are Eclipse configuration options documented?

In trying to troubleshoot a configuration.ini issue, I ran into where I didn't have the osgi.bundlefile.limit value set high enough for the application we are using. What puzzled me is looking at the Eclipse documentation, I see where they are using: -D and -X in front of various settings, yet I cannot find in the Eclipse documentation what -D or -X mean. Anybody know what they mean or even where they are documented?

Upvotes: 0

Views: 136

Answers (1)

greg-449
greg-449

Reputation: 111217

These are Java configuration options rather than Eclipse see for example here

-D defines a system property - -Dproperty=value

-Xmx1024m is the Java option to set the maximum heap size.

Eclipse doesn't know anything about what these options are it just passes them to the Java command used to run the application.

Upvotes: 1

Related Questions