-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[riscv64-8u]orderAccess.inline.hpp:48:11: fatal error: orderAccess_linux_riscv.inline.hpp: No such file or directory #76
Comments
8204301: Make OrderAccess functions available to hpp rather than inline.hpp files |
git mv hotspot/src/os_cpu/linux_riscv/vm/orderAccess_linux_riscv.hpp hotspot/src/os_cpu/linux_riscv/vm/orderAccess_linux_riscv.inline.hpp |
diff --git a/hotspot/src/os_cpu/linux_riscv/vm/orderAccess_linux_riscv.inline.hpp b/hotspot/src/os_cpu/linux_riscv/vm/orderAccess_linux_riscv.inline.hpp
index 5b5d35553f7..2caec2d95e3 100644
--- a/hotspot/src/os_cpu/linux_riscv/vm/orderAccess_linux_riscv.inline.hpp
+++ b/hotspot/src/os_cpu/linux_riscv/vm/orderAccess_linux_riscv.inline.hpp
@@ -23,11 +23,12 @@
*
*/
-#ifndef OS_CPU_LINUX_RISCV_ORDERACCESS_LINUX_RISCV_HPP
-#define OS_CPU_LINUX_RISCV_ORDERACCESS_LINUX_RISCV_HPP
-
-// Included in orderAccess.hpp header file.
+#ifndef OS_CPU_LINUX_RISCV_ORDERACCESS_LINUX_RISCV_INLINE_HPP
+#define OS_CPU_LINUX_RISCV_ORDERACCESS_LINUX_RISCV_INLINE_HPP
+#include "runtime/atomic.hpp"
+#include "runtime/orderAccess.hpp"
+#include "runtime/os.hpp"
#include "runtime/vm_version.hpp"
// Implementation of class OrderAccess.
@@ -71,4 +72,4 @@ struct OrderAccess::PlatformOrderedStore<byte_size, RELEASE_X_FENCE>
void operator()(T v, volatile T* p) const { release_store(p, v); OrderAccess::fence(); }
};
-#endif // OS_CPU_LINUX_RISCV_ORDERACCESS_LINUX_RISCV_HPP
+#endif // OS_CPU_LINUX_RISCV_ORDERACCESS_LINUX_RISCV_INLINE_HPP |
8233787: Break cycle in vm_version* includes |
To github.com:sendaoYan/riscv-port-jdk8u-ysd.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
build-precompiled.log
make-riscv64.log
The text was updated successfully, but these errors were encountered: