7016023: Enable building ARM and PPC from src/closed repository

Reviewed-by: dholmes, bdelsart
This commit is contained in:
Bob Vandette 2011-02-02 11:35:26 -05:00
parent 7b4f8073f0
commit 31e3fe4a98
101 changed files with 972 additions and 31 deletions

View file

@ -35,6 +35,12 @@
#ifdef TARGET_ARCH_zero
# include "vm_version_zero.hpp"
#endif
#ifdef TARGET_ARCH_arm
# include "vm_version_arm.hpp"
#endif
#ifdef TARGET_ARCH_ppc
# include "vm_version_ppc.hpp"
#endif
const char* Abstract_VM_Version::_s_vm_release = Abstract_VM_Version::vm_release();
const char* Abstract_VM_Version::_s_internal_vm_info_string = Abstract_VM_Version::internal_vm_info_string();
@ -220,8 +226,21 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
#endif
#endif
#ifndef FLOAT_ARCH
#if defined(__SOFTFP__)
#define FLOAT_ARCH "-sflt"
#elif defined(E500V2)
#define FLOAT_ARCH "-e500v2"
#elif defined(ARM)
#define FLOAT_ARCH "-vfp"
#elif defined(PPC)
#define FLOAT_ARCH "-hflt"
#else
#define FLOAT_ARCH ""
#endif
#endif
return VMNAME " (" VM_RELEASE ") for " OS "-" CPU
return VMNAME " (" VM_RELEASE ") for " OS "-" CPU FLOAT_ARCH
" JRE (" JRE_RELEASE_VERSION "), built on " __DATE__ " " __TIME__
" by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER;
}