Commit 400fe34
authored
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 succeeds1 parent 1746930 commit 400fe34
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
0 commit comments