We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c381fb commit 08527e7Copy full SHA for 08527e7
xbuild/src/devices/adb.rs
@@ -302,12 +302,17 @@ impl Adb {
302
.arg("700")
303
.arg(&dest)
304
.status()?;*/
305
+ let lldb_device_path = Path::new("./lldb-server");
306
let mut lldb_server = self
307
.shell(device, None)
308
.arg("cd")
309
.arg("/data/local/tmp")
310
.arg("&&")
- .arg("./lldb-server")
311
+ .arg("chmod")
312
+ .arg("777")
313
+ .arg(lldb_device_path)
314
+ .arg("&&")
315
316
.arg("platform")
317
.arg("--listen")
318
.arg("*:10086")
0 commit comments