-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #345 from markusstoll/wostart
new tool for WO5 app start under windows
- Loading branch information
Showing
20 changed files
with
6,325 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
include make.config | ||
|
||
java${EXESUFFIX}: java.o java_md.o manifest_info.o WOStart.o | ||
${CC} ${CFLAGS} -o java${EXESUFFIX} *.o ${LIBS} | ||
|
||
|
||
.c.o: | ||
${CC} ${CFLAGS} -c $< | ||
|
||
.cpp.o: | ||
${CC} ${CFLAGS} -c $< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
WOStart.exe | ||
|
||
This is a modified java.exe for Windows that behaves identically like | ||
the <Appname>.cmd startup script. | ||
|
||
Using this has some advandages | ||
|
||
- Only one process per App (no sub processes from cmd startup script) | ||
- ProcessName is the name of your app (rather than java.exe) | ||
- No problems due to classpath length | ||
|
||
As with java.exe the current VM is read from registry. For now, this works | ||
up to Java6. |
Oops, something went wrong.