135 lines
4.4 KiB
C
135 lines
4.4 KiB
C
/*
|
|
* Copyright (c) 1995, 2012, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation. Oracle designates this
|
|
* particular file as subject to the "Classpath" exception as provided
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
|
|
/*
|
|
* This file contains the main entry point into the launcher code
|
|
* this is the only file which will be repeatedly compiled by other
|
|
* tools. The rest of the files will be linked in.
|
|
*/
|
|
|
|
#include "defines.h"
|
|
|
|
#ifdef _MSC_VER
|
|
#if _MSC_VER > 1400 && _MSC_VER < 1600
|
|
|
|
/*
|
|
* When building for Microsoft Windows, main has a dependency on msvcr??.dll.
|
|
*
|
|
* When using Visual Studio 2005 or 2008, that must be recorded in
|
|
* the [java,javaw].exe.manifest file.
|
|
*
|
|
* As of VS2010 (ver=1600), the runtimes again no longer need manifests.
|
|
*
|
|
* Reference:
|
|
* C:/Program Files/Microsoft SDKs/Windows/v6.1/include/crtdefs.h
|
|
*/
|
|
#include <crtassem.h>
|
|
#ifdef _M_IX86
|
|
|
|
#pragma comment(linker,"/manifestdependency:\"type='win32' " \
|
|
"name='" __LIBRARIES_ASSEMBLY_NAME_PREFIX ".CRT' " \
|
|
"version='" _CRT_ASSEMBLY_VERSION "' " \
|
|
"processorArchitecture='x86' " \
|
|
"publicKeyToken='" _VC_ASSEMBLY_PUBLICKEYTOKEN "'\"")
|
|
|
|
#endif /* _M_IX86 */
|
|
|
|
//This may not be necessary yet for the Windows 64-bit build, but it
|
|
//will be when that build environment is updated. Need to test to see
|
|
//if it is harmless:
|
|
#ifdef _M_AMD64
|
|
|
|
#pragma comment(linker,"/manifestdependency:\"type='win32' " \
|
|
"name='" __LIBRARIES_ASSEMBLY_NAME_PREFIX ".CRT' " \
|
|
"version='" _CRT_ASSEMBLY_VERSION "' " \
|
|
"processorArchitecture='amd64' " \
|
|
"publicKeyToken='" _VC_ASSEMBLY_PUBLICKEYTOKEN "'\"")
|
|
|
|
#endif /* _M_AMD64 */
|
|
#endif /* _MSC_VER > 1400 && _MSC_VER < 1600 */
|
|
#endif /* _MSC_VER */
|
|
|
|
/*
|
|
* Entry point.
|
|
*/
|
|
#ifdef JAVAW
|
|
|
|
char **__initenv;
|
|
|
|
int WINAPI
|
|
WinMain(HINSTANCE inst, HINSTANCE previnst, LPSTR cmdline, int cmdshow)
|
|
{
|
|
int margc;
|
|
char** margv;
|
|
const jboolean const_javaw = JNI_TRUE;
|
|
|
|
__initenv = _environ;
|
|
|
|
#else /* JAVAW */
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
int margc;
|
|
char** margv;
|
|
const jboolean const_javaw = JNI_FALSE;
|
|
#endif /* JAVAW */
|
|
#ifdef _WIN32
|
|
{
|
|
int i = 0;
|
|
if (getenv(JLDEBUG_ENV_ENTRY) != NULL) {
|
|
printf("Windows original main args:\n");
|
|
for (i = 0 ; i < __argc ; i++) {
|
|
printf("wwwd_args[%d] = %s\n", i, __argv[i]);
|
|
}
|
|
}
|
|
}
|
|
JLI_CmdToArgs(GetCommandLine());
|
|
margc = JLI_GetStdArgc();
|
|
// add one more to mark the end
|
|
margv = (char **)JLI_MemAlloc((margc + 1) * (sizeof(char *)));
|
|
{
|
|
int i = 0;
|
|
StdArg *stdargs = JLI_GetStdArgs();
|
|
for (i = 0 ; i < margc ; i++) {
|
|
margv[i] = stdargs[i].arg;
|
|
}
|
|
margv[i] = NULL;
|
|
}
|
|
#else /* *NIXES */
|
|
margc = argc;
|
|
margv = argv;
|
|
#endif /* WIN32 */
|
|
return JLI_Launch(margc, margv,
|
|
sizeof(const_jargs) / sizeof(char *), const_jargs,
|
|
sizeof(const_appclasspath) / sizeof(char *), const_appclasspath,
|
|
FULL_VERSION,
|
|
DOT_VERSION,
|
|
(const_progname != NULL) ? const_progname : *margv,
|
|
(const_launcher != NULL) ? const_launcher : *margv,
|
|
(const_jargs != NULL) ? JNI_TRUE : JNI_FALSE,
|
|
const_cpwildcard, const_javaw, const_ergo_class);
|
|
}
|