< prev index next >

src/share/vm/runtime/vm_version.cpp

Print this page

        

*** 27,36 **** --- 27,39 ---- #include "oops/oop.inline.hpp" #include "runtime/arguments.hpp" #ifdef TARGET_ARCH_x86 # include "vm_version_x86.hpp" #endif + #ifdef TARGET_ARCH_aarch64 + # include "vm_version_aarch64.hpp" + #endif #ifdef TARGET_ARCH_sparc # include "vm_version_sparc.hpp" #endif #ifdef TARGET_ARCH_zero # include "vm_version_zero.hpp"
*** 192,201 **** --- 195,205 ---- #endif #else #define CPU IA32_ONLY("x86") \ IA64_ONLY("ia64") \ AMD64_ONLY("amd64") \ + AARCH64_ONLY("aarch64") \ SPARC_ONLY("sparc") #endif // ZERO #endif const char *Abstract_VM_Version::vm_platform_string() {
< prev index next >