We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b5de6f commit fff8e7dCopy full SHA for fff8e7d
packages/cli/src/main/kotlin/elide/tool/engine/NativeEngine.kt
@@ -234,7 +234,7 @@ object NativeEngine {
234
val loadNatives: () -> Unit = {
235
loadNativeCrypto(natives, loader)
236
loadNativeTransport(natives, loader)
237
- loadNativeTooling(natives, loader)
+// loadNativeTooling(natives, loader)
238
}
239
240
try {
@@ -301,7 +301,9 @@ object NativeEngine {
301
val libPath = if (!libraryPath.contains("/elide-runtime")) {
302
libraryPath.split(separator).toMutableList().apply {
303
add(0, nativesPath)
304
- add(1, requireNotNull(System.getProperty("elide.natives")) { "Failed to resolve `elide.natives` path" })
+ System.getProperty("elide.natives")?.let {
305
+ add(1, it)
306
+ }
307
}.joinToString(separator)
308
} else libraryPath
309
0 commit comments