Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2007-02-23 19:07:32 +0000
committerAndrew Niefer2007-02-23 19:07:32 +0000
commit97114bb5c5d2f21fff1846811aa16f9dbf76d6ac (patch)
treed4f7f2f2756825040530935dffa5baf82e1f070b /bundles/org.eclipse.equinox.executable/library/eclipse.c
parentdaafa8c590d3f480f11af6e7f1fa3a13f4bfa4f6 (diff)
downloadrt.equinox.framework-97114bb5c5d2f21fff1846811aa16f9dbf76d6ac.tar.gz
rt.equinox.framework-97114bb5c5d2f21fff1846811aa16f9dbf76d6ac.tar.xz
rt.equinox.framework-97114bb5c5d2f21fff1846811aa16f9dbf76d6ac.zip
bug 174189, bug 149994
Diffstat (limited to 'bundles/org.eclipse.equinox.executable/library/eclipse.c')
-rw-r--r--bundles/org.eclipse.equinox.executable/library/eclipse.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/eclipse.c b/bundles/org.eclipse.equinox.executable/library/eclipse.c
index ed316e1fe..90808c407 100644
--- a/bundles/org.eclipse.equinox.executable/library/eclipse.c
+++ b/bundles/org.eclipse.equinox.executable/library/eclipse.c
@@ -215,7 +215,6 @@ companion startup.jar file (in the same directory as the executable).");
#define SHOWSPLASH _T_ECLIPSE("-showsplash")
#define EXITDATA _T_ECLIPSE("-exitdata")
#define STARTUP _T_ECLIPSE("-startup")
-#define LIBRARY _T_ECLIPSE("-library")
#define VM _T_ECLIPSE("-vm")
#define WS _T_ECLIPSE("-ws")
#define NAME _T_ECLIPSE("-name")
@@ -223,7 +222,10 @@ companion startup.jar file (in the same directory as the executable).");
#define CP _T_ECLIPSE("-cp")
#define CLASSPATH _T_ECLIPSE("-classpath")
#define JAR _T_ECLIPSE("-jar")
-#define SUPRESSERRORS _T_ECLIPSE("-suppressErrors")
+
+#define LIBRARY _T_ECLIPSE("--launcher.library")
+#define SUPRESSERRORS _T_ECLIPSE("--launcher.suppressErrors")
+#define INI _T_ECLIPSE("--launcher.ini")
/* constants for ee options file */
#define EE_EXECUTABLE _T_ECLIPSE("-Dee.executable=")
@@ -271,6 +273,7 @@ static Option options[] = {
{ NOSPLASH, &noSplash, VALUE_IS_FLAG, 1 },
{ SUPRESSERRORS, &suppressErrors, VALUE_IS_FLAG, 1},
{ LIBRARY, NULL, 0, 2 }, /* library was parsed by exe, just remove it */
+ { INI, NULL, 0, 2 }, /* same with ini */
{ OS, &osArg, 0, 2 },
{ OSARCH, &osArchArg, 0, 2 },
{ SHOWSPLASH, &showSplashArg, OPTIONAL_VALUE, 2 },

Back to the top