首页 > 其他分享 >NVIDIA Debug Manager for Android NDK

NVIDIA Debug Manager for Android NDK

时间:2023-06-08 20:38:33浏览次数:62  
标签:NDK Eclipse Manager NVIDIA Debug Android


http://developer.nvidia.com/tegra/downloads

 

NVIDIA Debug Manager for Android NDK


Overview

NVIDIA Debug Manager for Android NDK is an Eclipse plug-in that simplifies debugging native C/C++ Android applications on NVIDIA’s Tegra platform and is the perfect companion for developing native applications for Tegra developer kits .

The Android NDK enables the development of performance critical applications, such as games, using native C/C++ code. NVIDIA Debug Manager for Android NDK enhances the Android NDK, allowing developers to easily setup and configure native Android debugging.

NOTE: NVIDIA Debug Manager for Android supports Android NDK r4b and Android NDK r5b .



Features

  • Plug & Play Android NDK GDB debugging in Eclipse
  • Set breakpoints in both Java and native (C/C++)
  • Utilize standard Eclipse GDB debugging tools and workflows

Installation



Download the latest version of NVIDIA Debug Manager for Android NDK from Tegra Developer Downloads and follow the installation instructions .



Support



To provide feedback, request additional features or report support issues, please use the Tegra Developer Forums .



System Requirements



Supported Operating Systems:

  • Windows 7
  • Mac OS X
  • Linux

Software Dependencies:

  • Eclipse Classic 3.6.1 (Helios)
  • Eclipse C/C++ Development Tools 7.0.1
  • Android Development Tools (ADT) 0.9.9, 8.0.1, 9.0.0 (10.0.0 should work but is untested)
  • Android SDK r07, r08
  • Android NDK r4b, r5b

标签:NDK,Eclipse,Manager,NVIDIA,Debug,Android
From: https://blog.51cto.com/u_16125990/6442923

相关文章

  • windows系统上安装与使用Android NDK r5
     很早就听说了android的NDK应用,只是一直没有时间去研究,今天花了点时间在windows平台搭建了NDK环境,并成功运行了第一个简单的android  一:什么是NDKNDK提供了一系列的工具,帮助开发者快速开发C(或C++)的动态库,并能自动将so和java应用一起打包成apk      ......
  • Static 单例中 QNetworkAccessManager 的释放问题
    结论:QNetworkAccessManager以Static对象作为父对象时,需要注意在main函数return前释放,否则可能导致Qt框架内部的重复释放引发崩溃。原因:Static对象是在Main函数return后才释放的,此时,已经QApplication已失效 参考https://bugreports.qt.io/browse/QTBUG-82984htt......
  • 检测到包降级: System.Diagnostics.Debug 从 4.3.0 降级到 4.0.11。直接从项目引用包
    .net 项目在发版的时候报包的版本不一致严重性代码说明项目文件行禁止显示状态错误错误形式的警告:检测到包降级:System.Diagnostics.Debug从4.3.0降级到4.0.11。直接从项目引用包以选择不同版本。ProjectName->Microsoft.AspNetCore.Mvc.Core2.2.5->Micros......
  • 在intelj idea中Debug启动tomcat时Address already in use:JVM_Bind
    在debug重启web应用时,偶尔会报如下错误:Addressalreadyinuse:JVM_Bind,一看端口占用 打开任务管理器,发现并没有java相关的进程。所以无法通过杀死进程来解除接口占用,可以通过如下方式解决1.编辑服务器配置,EditConfiguration 2.点击Startup/Connection 3.选中debug,......
  • PHP Xdebug 3 和 Visual Studio Code
    Xdebug3相对于Xdebug2改动挺大的。在php.ini里下面的设置就够了,不需要多余的。默认调试端口9003 [XDebug]zend_extension="php_xdebug.dll"xdebug.mode=debugxdebug.start_with_request=yesxdebug.idekey=VSCODEhttps://community.localwp.com/t/local-xdebu......
  • Alertmanager配置详解
    一、 配置概述Alertmanager主要负责对Prometheus产生的告警进行统一处理,在Alertmanager配置中一般会包含以下几个主要部分:全局配置(global):用于定义一些全局的公共参数,如全局的SMTP配置,Slack配置等内容;模板(templates):用于定义告警通知时的模板,如HTML模板,邮件模板等;告警路由(route):根据......
  • IDEA远程DEBUG
    1、IDEA构建SpringBoot测试Demo新建SpringBoot测试项目remote-debug,只需要web依赖支持即可;版本选用2.2.6.RELEASE(注意,别用2.5.1版本,有坑,亲测)1.1、pom.xml<?xmlversion="1.0"encoding="UTF-8"?><projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi......
  • SCM Manager XSS漏洞复现(CVE-2023-33829)
    一、漏洞描述漏洞简述SCM-Manager是一款开源的版本库管理软件,同时支持subversion、mercurial、git的版本库管理。安装简单,功能较强,提供用户、用户组的权限管理,有丰富的插件支持。由于在MIT的许可下是开源的,因此它允许被用于商业用途,而且其代码可以在GitHub上获取到。该项目......
  • Android NDK链接静态库动态库
    在NDK中使用LOCAL_LDLIBS进行链接LOCAL_LDLIBS:=/home/tsh/work/ndk-demo/dobby/libdobby.aLOCAL_LDLIBS+=-llog如果在AOSP环境中中可以使用LOCAL_SHARED_LIBRARIES:=liblogLOCAL_STATIC_LIBRARIES+=/home/tsh/work/ndk-demo/dobby/libdobby.a......
  • 【章节2】husky + 自动检测是否有未解决的冲突 + 预检查debugger + 自动检查是否符合c
    在章节1中我们学习到了commit的规范、husky的安装和使用、lint-staged怎么安装以及怎么用来格式化代码。那么这篇文章我们来看看commit预处理中我们还能做哪些处理呢?自然,我们还是要用到husky这个东西的,大致过程其实和章节1异曲同工,无非是多加几个脚本做不同的处理。那么husky到底是......