Skip to content

Commit 16a6f27

Browse files
committed
Support for darwin-amd64
1 parent 9983362 commit 16a6f27

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

substratevm/src/com.oracle.svm.core.foreign/src/com/oracle/svm/core/foreign/ForeignFunctionsRuntime.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,7 @@ public ForeignFunctionsRuntime(AbiUtils abiUtils) {
9292

9393
public static boolean areFunctionCallsSupported() {
9494
return switch (CABI.current()) {
95-
case CABI.SYS_V -> !OS.DARWIN.isCurrent(); // GR-63074: code emit failures on
96-
// darwin-amd64
97-
case CABI.WIN_64, CABI.MAC_OS_AARCH_64, CABI.LINUX_AARCH_64 -> true;
95+
case CABI.SYS_V, CABI.WIN_64, CABI.MAC_OS_AARCH_64, CABI.LINUX_AARCH_64 -> true;
9896
default -> false;
9997
};
10098
}

0 commit comments

Comments
 (0)