8160376: DebuggerException: Can't attach symbolicator to the process
Make SA link to JavaRuntimeSupport in MacOS X Reviewed-by: dsamersoff, dcubed
This commit is contained in:
parent
6078e95517
commit
418c0fdb88
@ -74,7 +74,7 @@ else ifeq ($(OPENJDK_TARGET_OS), macosx)
|
|||||||
-mstack-alignment=16 -fPIC
|
-mstack-alignment=16 -fPIC
|
||||||
SA_LDFLAGS := $(LDFLAGS_JDKLIB)
|
SA_LDFLAGS := $(LDFLAGS_JDKLIB)
|
||||||
SA_LIBS := -framework Foundation -framework JavaNativeFoundation \
|
SA_LIBS := -framework Foundation -framework JavaNativeFoundation \
|
||||||
-framework Security -framework CoreFoundation
|
-framework JavaRuntimeSupport -framework Security -framework CoreFoundation
|
||||||
|
|
||||||
else ifeq ($(OPENJDK_TARGET_OS), windows)
|
else ifeq ($(OPENJDK_TARGET_OS), windows)
|
||||||
SA_NAME := sawindbg
|
SA_NAME := sawindbg
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -25,6 +25,7 @@
|
|||||||
#include <objc/objc-runtime.h>
|
#include <objc/objc-runtime.h>
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
#import <JavaNativeFoundation/JavaNativeFoundation.h>
|
#import <JavaNativeFoundation/JavaNativeFoundation.h>
|
||||||
|
#import <JavaRuntimeSupport/JavaRuntimeSupport.h>
|
||||||
|
|
||||||
#include <jni.h>
|
#include <jni.h>
|
||||||
|
|
||||||
|
@ -24,9 +24,6 @@
|
|||||||
/*
|
/*
|
||||||
* @test SASymbolTableTest
|
* @test SASymbolTableTest
|
||||||
* @summary Walk symbol table using SA, with and without CDS.
|
* @summary Walk symbol table using SA, with and without CDS.
|
||||||
* Started failing on 2016.06.24 due to 8160376 on MacOS X so quarantine
|
|
||||||
* it on that platform:
|
|
||||||
* @requires os.family != "mac"
|
|
||||||
* @library /test/lib
|
* @library /test/lib
|
||||||
* @modules java.base/jdk.internal.misc
|
* @modules java.base/jdk.internal.misc
|
||||||
* jdk.hotspot.agent/sun.jvm.hotspot.oops
|
* jdk.hotspot.agent/sun.jvm.hotspot.oops
|
||||||
|
@ -42,9 +42,6 @@ import jdk.test.lib.process.ProcessTools;
|
|||||||
* @bug 6313383
|
* @bug 6313383
|
||||||
* @key regression
|
* @key regression
|
||||||
* @summary Regression test for hprof export issue due to large heaps (>2G)
|
* @summary Regression test for hprof export issue due to large heaps (>2G)
|
||||||
* Started failing on 2016.06.24 due to 8160376 on MacOS X so quarantine
|
|
||||||
* it on that platform:
|
|
||||||
* @requires os.family != "mac"
|
|
||||||
* @library /test/lib
|
* @library /test/lib
|
||||||
* @modules java.base/jdk.internal.misc
|
* @modules java.base/jdk.internal.misc
|
||||||
* java.compiler
|
* java.compiler
|
||||||
|
Loading…
x
Reference in New Issue
Block a user