Java 运行时环境致命错误 - SIGILL (0x4)

时间:2021-07-30 14:52:48

标签: java processing

我在运行 Java(通过 Processing)时遇到此错误并且 Java 崩溃。不清楚错误是什么 - 看起来很一般,搜索会出现不同的上下文和答案。有人知道可能是什么问题吗?

# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGILL (0x4) at pc=0x00007fff2ba6bb1b, pid=583, tid=0x0000000000001803
#
# JRE version: Java(TM) SE Runtime Environment (8.0_202-b08) (build 1.8.0_202-b08)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.202-b08 mixed mode bsd-amd64 compressed oops)
# Problematic frame:
# C  [CoreFoundation+0xab1b]  CFEqual+0x293
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.

写入日志文件的完整错误在这里https://pastebin.com/fZT9Xyje

这是我在处理中使用的代码:

void settings()
{
 size(500, 500, P3D); //in 3+
}

void setup() {
  size(500,500,P3D); //in 2+
  background(0);
}

void draw() {

}

OSX 10.14.6,Radeon Pro 555X 4 GB Intel UHD Graphics 630 1536 MB,Java 版本 8 build 261(build 1.8.0_261-b12)

0 个答案:

没有答案
相关问题