用户工具

站点工具


jaysnote:linux_c_app_development

差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

后一修订版
前一修订版
jaysnote:linux_c_app_development [2018/11/12 16:54]
jaylee 创建
jaysnote:linux_c_app_development [2021/06/22 23:14] (当前版本)
行 9: 行 9:
 * 依赖环境 * 依赖环境
  
-  ```+  ```bash
   sudo apt-get install zip openssh-server g++ gdb gdbserver   sudo apt-get install zip openssh-server g++ gdb gdbserver
   ```   ```
 +* 配置sshd 支持root账户登录
  
 +  ```bash
 +  vi /etc/ssh/sshd_config 
 +  permitRootLogin yes
 +  ```
 +
 +* 重定向uname,默认不支持aarch64
 +
 +  ```
 +  echo "echo ARM" > /bin/uname #暂时不支持arrch64,需要重定向uname
 +  ```   
  
 ### include ### include
行 30: 行 41:
 测试发现原来此过程发生在选项->跨平台->连接管理器->远程标头 IntelliSense 管理器,会自动打包Linux 编译机器上面的`/usr/include`然后到Windows 解压。 测试发现原来此过程发生在选项->跨平台->连接管理器->远程标头 IntelliSense 管理器,会自动打包Linux 编译机器上面的`/usr/include`然后到Windows 解压。
  
-![](images/inlude_header_download.png)+![](http://www.leconiot.com/md_res//jaysnote/linux_c_app_development/images/inlude_header_download.png)
  
  
行 40: 行 51:
 属性页->链接->所有选项->库链接项 属性页->链接->所有选项->库链接项
  
-![库依赖项](images/lib.png)+![库依赖项](http://www.leconiot.com/md_res//jaysnote/linux_c_app_development/images/lib.png)
  
 ``` ```
行 57: 行 68:
 Unable to start debugging. Unexpected GDB output from command "-interpreter-exec console "target remote localhost:63442"". Remote connection closed Unable to start debugging. Unexpected GDB output from command "-interpreter-exec console "target remote localhost:63442"". Remote connection closed
 ``` ```
-![](images/debug_error.png)+![](http://www.leconiot.com/md_res//jaysnote/linux_c_app_development/images/debug_error.png)
  
 确定了Linux GDBServer版本 确定了Linux GDBServer版本
行 107: 行 118:
 ### Microsoft.Build.Linux.Shared.ExceptionTTY ### Microsoft.Build.Linux.Shared.ExceptionTTY
  
-![](images/debug_error2.png)                                                                                                                       +![](http://www.leconiot.com/md_res//jaysnote/linux_c_app_development/images/debug_error2.png) 
 +                                                                                                               
 https://github.com/Microsoft/VSLinux/issues/278 https://github.com/Microsoft/VSLinux/issues/278
  
-最后确定和TERM 类型有关系,更改了`.bashrc`。+最后确定和在`~/.bashrc` 启动中有未识别字符,和`echo -e`  的格式化字符串有关系,直接删除了`.bashrc`(删除前记得备份)
  
 +> **提示**:`vslinux_ttyexception_log.txt` 中有详细记录。
  
 +### cannot open display
 +
 +调试 gtk 桌面应用提示不能打开显示。
 +
 +```
 +Unable to init server: Could not connect: Connection refused
 +
 +(factory_test.out:7951): Gtk-WARNING **: cannot open display: 
 +```
 +
 +所有的x 桌面应用都需要指定显示的`x server`。
 +
 +```
 +export DISPLAY=:0
 +```
 +
 +同时,`x server` 限制连接用户。所以如果要通过`root`调试,会麻烦一些。
 +
 +```
 +export DISPLAY=:0
 +xhost +                          #第二次运行可能会阻塞
 +cp /home/pi/.Xauthority /root/   #每次重启后该文件需要重新拷贝。
 +```
  
 </markdown> </markdown>
jaysnote/linux_c_app_development.1542012882.txt.gz · 最后更改: 2021/06/22 23:14 (外部编辑)