You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
android/mlc4j: fix FFI include (traceback -> backtrace) (#3355)
The Android mlc4j build fails because tvm-ffi renamed `traceback.cc` to
`backtrace.cc`. Replace the stale include with <ffi/backtrace.cc>.
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 <ffi/traceback.cc> -> #include <ffi/backtrace.cc>
- Scope: android/mlc4j/src/cpp/tvm_runtime.h
- Verified: local Android build succeeds
0 commit comments