mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-12 12:50:51 +00:00
- Fixes https://github.com/termux/termux-packages/issues/26799 There is a new executable file, "`codelldb-launch`". I don't really understand exactly what it does yet, but codelldb was printing an error "unable to find codelldb-launch!" until I moved it out of the `.vsix` file and hardcoded the paths to it at `$TERMUX_PREFIX/bin`, just like I did for the `codelldb` executable, which still exists. After doing that, this bump is working on my device. I have also updated the comments about 32-bit exclusion to be accurate to the current situation. See here for more information about the problems with `codelldb` on 32-bit Android: https://github.com/termux/termux-packages/pull/25779#issuecomment-3213373449
19 lines
418 B
Diff
19 lines
418 B
Diff
--- a/extension/tsconfig.json
|
|
+++ b/extension/tsconfig.json
|
|
@@ -12,12 +12,12 @@
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
- "../build/node_modules/@types",
|
|
+ "@TERMUX_PKG_BUILDDIR@/node_modules/@types",
|
|
],
|
|
"paths": {
|
|
"*": [
|
|
- "../build/generated/*",
|
|
- "../build/node_modules/*",
|
|
+ "@TERMUX_PKG_BUILDDIR@/generated/*",
|
|
+ "@TERMUX_PKG_BUILDDIR@/node_modules/*",
|
|
]
|
|
}
|
|
}
|