Skip to content

Commit

Permalink
Merge pull request #345 from markusstoll/wostart
Browse files Browse the repository at this point in the history
new tool for WO5 app start under windows
  • Loading branch information
Pascal Robert committed Dec 19, 2012
2 parents 2b0dced + caeb27e commit 5a7c19f
Show file tree
Hide file tree
Showing 20 changed files with 6,325 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Utilities/WOStart/Makefile
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 $<
13 changes: 13 additions & 0 deletions Utilities/WOStart/ReadMe.txt
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.
Loading

0 comments on commit 5a7c19f

Please sign in to comment.