6783ab9f47
This updates OpenJDK 8 to a newer version and brings a bunch of changes. Newly, it is bootstrapped with openjdk7-bootstrap, so it does not need to download binaries. It can also cross-compile and is patched for musl and other platforms. We're newly using the aarch64 port repo in order to get aarch64 JIT. For non-aarch64 platforms, the codebase is the same. The symlink for /usr/lib/jvm/openjdk is also now gone and we're using a unified java-VERSION-VENDOR naming. Also general template cleanup. [ci skip]
28 lines
969 B
Diff
28 lines
969 B
Diff
# HG changeset patch
|
|
# User sgehwolf
|
|
# Date 1468778064 -3600
|
|
# Sun Jul 17 18:54:24 2016 +0100
|
|
# Node ID 6000574e256d84b2bab5cb9f0e2e2fa4ffa587f3
|
|
# Parent bb14c5df70880af9e947b5a7b4b258b62d23931a
|
|
S8078504, PR3094: Zero fails to build
|
|
Reviewed-by: kvn, simonis
|
|
|
|
diff --git openjdk.orig/hotspot/src/cpu/zero/vm/vm_version_zero.hpp openjdk/hotspot/src/cpu/zero/vm/vm_version_zero.hpp
|
|
--- openjdk.orig/hotspot/src/cpu/zero/vm/vm_version_zero.hpp
|
|
+++ openjdk/hotspot/src/cpu/zero/vm/vm_version_zero.hpp
|
|
@@ -1,6 +1,6 @@
|
|
/*
|
|
* Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
|
|
- * Copyright 2007 Red Hat, Inc.
|
|
+ * Copyright 2015 Red Hat, Inc.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
@@ -34,6 +34,7 @@
|
|
static const char* cpu_features() {
|
|
return "";
|
|
}
|
|
+ static void initialize();
|
|
};
|
|
|
|
#endif // CPU_ZERO_VM_VM_VERSION_ZERO_HPP
|