From 0f0d418886d8eda9072ead8599feabbe9f45951c Mon Sep 17 00:00:00 2001 From: rainingcodes Date: Wed, 1 Oct 2025 01:02:21 +0000 Subject: [PATCH] android/mlc4j: fix FFI include (traceback -> backtrace) The Android mlc4j build fails because tvm-ffi renamed `traceback.cc` to `backtrace.cc`. Replace the stale include with . This is the minimal change to restore build without touching other code. (Using a .cc file in headers is generally discouraged, but this keeps the current structure intact and unblocks builds.) - Change: #include -> #include - Scope: android/mlc4j/src/cpp/tvm_runtime.h - Verified: local Android build succeeds --- android/mlc4j/src/cpp/tvm_runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/mlc4j/src/cpp/tvm_runtime.h b/android/mlc4j/src/cpp/tvm_runtime.h index 914d3176c2..5e2734dce6 100644 --- a/android/mlc4j/src/cpp/tvm_runtime.h +++ b/android/mlc4j/src/cpp/tvm_runtime.h @@ -17,7 +17,7 @@ #include #include #include -#include +#include #include #include #include