Skip to content
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

Use new clibs version #1129

Merged
merged 2 commits into from
Mar 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/gluonhq/substrate/Constants.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019, 2021, Gluon
* Copyright (c) 2019, 2022, Gluon
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -110,7 +110,7 @@ public enum Profile {
public static final String DEFAULT_JAVAFX_STATIC_SDK_VERSION = "18-ea+11";
public static final String DEFAULT_JAVAFX_JS_SDK_VERSION = "18-internal+0-2021-09-02-165800";
public static final String DEFAULT_SYSROOT_VERSION = "20210424";
public static final String DEFAULT_CLIBS_VERSION = "26";
public static final String DEFAULT_CLIBS_VERSION = "27";
public static final String DEFAULT_JAVASDK_PATH = "staticjdk";
public static final String DEFAULT_JAVASDK_PATH11 = "labs-staticjdk";

Expand Down
5 changes: 0 additions & 5 deletions src/main/resources/native/ios/JvmFuncsFallbacks.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,11 +508,6 @@ JNIEXPORT jobject JNICALL JVM_GetSystemPackages(JNIEnv *env) {
return NULL;
}

JNIEXPORT jobject JNICALL JVM_GetTemporaryDirectory(JNIEnv *env) {
(*env)->FatalError(env, "JVM_GetTemporaryDirectory called: Unimplemented");
return NULL;
}

JNIEXPORT jobject JNICALL JVM_GetVmArguments(JNIEnv *env) {
(*env)->FatalError(env, "JVM_GetVmArguments called: Unimplemented");
return NULL;
Expand Down