安裝 Android Development Environment

http://www.cnblogs.com/youchihwang/p/6645880.html

除了上述還得安裝,

sudo apt-get install phablet-tools
  1. modify bash shell
sudo dpkg-reconfigure dash

answer : no

  1. Installing Repo
mkdir ~/bin
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
export PATH=~/bin:$PATH

generate ssh-keygen

right : $ ssh-keygen -t rsa -C "your_email@example.com"

error : $ ssh-keygen -t rsa -C your_email@example.com

$ ssh-keygen -t rsa -C "your_email@example.com"
$ cat ~/.ssh/id_rsa.pub

copy below the content of the id_rsa.pub, then paste below path

gerrit -> Settings -> SSH Public Keys -> Add Key -> paste -> Add -> Close

wait a moment or restart ubuntu

setting your .gitconfig

start download source code of your company code

  1. ARM Compiler Tools 5.01 update 3 (build 94)

    https://developer.arm.com/products/software-development-tools/compilers/legacy-compiler-releases

    unzip file
   sudo Installer/setup.sh

ARM Compiler Tools 需要 license,

但公司已申請好,

只要在 build code 前,執行以下指令即可,

export ARMLMD_LICENSE_FILE=8224@orcad-srv.xxxxxxxxx.com.tw

  1. Hexagon.LNX.6.4 Installer

    https://createpoint.qti.qualcomm.com/tools/#suite/260/1222

    注意:要選 06406.1 版本

    unzip file,要解兩次喔!

    安裝時要連外網
   chmod +x Install_HEXAGON_Tools_linux_6.4.06.bin
sudo ./Install_HEXAGON_Tools_linux_6.4.06.bin

安裝過程中,需要打勾,上面寫的, Agree to download GNU tools

  1. Qualcomm AMSS chip code

    apq8009-la-2-0-2_amss_standard_oem

    r00033.1

    https://chipcode.qti.qualcomm.com/your-corporation/apq8009-la-2-0-2_amss_standard_oem/tree/r00033.1

uninstall

uninstall Hexagon tool

If you use root to install Hexagon tool, the folder will be installed to /root/Qualcomm.

then

If you uninstall Hexagon tool, you have to use below command to use root priority

sudo su root
root@ubuntu:~/Qualcomm/HEXAGON_Tools/6.4.06/Uninstall_Hexagon_Tools# ./Uninstall_Hexagon_Tools

troubleshooting

error message :

object eceeb1b1f5edb0f42e690bffdf81828abd8ea7fe
type commit
tag v1.12.37
tagger Dan Willemsen <dwillemsen@google.com> 1475173621 -0700 repo v1.12.37 gpg: WARNING: unsafe ownership on homedir `/home/break-through/.repoconfig/gnupg'
gpg: failed to create temporary file `/home/break-through/.repoconfig/gnupg/.#lk0x268b340.ubuntu.2951': Permission denied
gpg: keyblock resource `/home/break-through/.repoconfig/gnupg/pubring.gpg': general error
gpg: Signature made Thu 29 Sep 2016 11:27:01 AM PDT using DSA key ID 920F5C65
gpg: Can't check signature: public key not found
error: could not verify the tag 'v1.12.37'

solution :

Please delete the .repo folder your project code

Please delete /home/break-through/.repoconfig/

sudo rm /home/project-code/ -rf
sudo rm /home/break-through/.repoconfig/ -rf

Install Qualcomm Development Environment的更多相关文章

  1. Deep Learning - Install the Development Environment

    WLS(Windows Subsystem for Linux) Base WLS Installation Guide Initializing a newly installed distro W ...

  2. Could not install the app on the device, read the error above for details. Make sure you have an Android emulator running or a device connected and have set up your Android development environment:

    Administrator@DESKTOP-EHCTIOR MINGW64 /d/react-native-eyepetizer (master) $ react-native run-android ...

  3. Programming in Go (Golang) – Setting up a Mac OS X Development Environment

    http://www.distilnetworks.com/setup-go-golang-ide-for-mac-os-x/#.V1Byrf50yM8 Programming in Go (Gola ...

  4. storm环境搭建(前言)—— 翻译 Setting Up a Development Environment

    Setting Up a Development Environment 搭建storm开发环境所需步骤: Download a Storm release , unpack it, and put ...

  5. Storm(1) - Setting Up Development Environment

    Setting up your development environment 1. download j2se 6 SDK from http://www.oracle.com/technetwor ...

  6. Establish the LAMP (Linux+Apache+MySQL+PHP) Development Environment on Ubuntu 14.04 Operating System

    ######################################################## Step One: Update the software package in yo ...

  7. How to set up Dynamics CRM 2011 development environment

    Recently I have been starting to learn Microsoft Dynamics CRM 2011 about implement plugin and workfl ...

  8. Create A .NET Core Development Environment Using Visual Studio Code

    https://www.c-sharpcorner.com/article/create-a-net-core-development-environment-using-visual-studio- ...

  9. The IBM Blockchain Platform:Installing the development environment

    Follow these instructions to obtain the IBM Blockchain Platform: Develop development tools (primaril ...

随机推荐

  1. Codevs1080 线段树练习

    题目描述 Description 一行N个方格,开始每个格子里都有一个整数.现在动态地提出一些问题和修改:提问的形式是求某一个特定的子区间[a,b]中所有元素的和:修改的规则是指定某一个格子x,加上或 ...

  2. Visual Studio 2017 UTF-8 无 BOM 一站式解决办法

    问题背景:最近捡起C++,使用VS 2017平台.因为以前的编程习惯,喜欢使用UTF-8 无 BOM 的编码格式,好让自己的代码全球通用.但是VS 2017 对这个问题不是很友善.但最终找到了解决办法 ...

  3. vc文件操作汇总—支持wince

    一.判断文件及文件夹是否存在 // 判断文件是否存在 BOOL IsFileExist(const CString& csFile) { DWORD dwAttrib = GetFileAtt ...

  4. k8s资源指标API及metrics-server资源监控

    简述: 在k8s早期版本中,对资源的监控使用的是heapster的资源监控工具. 但是从 Kubernetes 1.8 开始,Kubernetes 通过 Metrics API 获取资源使用指标,例如 ...

  5. Can Japan stand up to US request to contain China?

    From Global Times Two days before US President Donald Trump's visit to Japan, A fake news story caug ...

  6. (转)git常见错误

      error: src refspec master does not match any. 引起该错误的原因是,目录中没有文件,空目录是不能提交上去的 error: insufficient pe ...

  7. ASP.NET Web网站中App_Code文件夹的作用及使用场景

    原文地址:Web Site项目和ASP.NET Web Application中App_Code文件夹的作用作者:宾的宾 我现在要建一个ASP.NET的网站了,不难吧,开始动手.如下图: 这种方法建立 ...

  8. PAT Basic 1073

    1073 多选题常见计分法 批改多选题是比较麻烦的事情,有很多不同的计分方法.有一种最常见的计分方法是:如果考生选择了部分正确选项,并且没有选择任何错误选项,则得到 50% 分数:如果考生选择了任何一 ...

  9. adb -a server nodaemon,设备一直显示 offline,而 adb devices 一直显示 device【已解决】

    1. adb -a server nodaemon 一直显示 offline 2. adb devices 一直显示 device 谷歌 和 度娘了一圈,未寻得解决办法 # 解决方法 问题已解决,使用 ...

  10. day03_07 变量的重新赋值01

    在cmd中退出python,需要使用quit()命令 name = "Alex Li" name2 = name print(name,name2) name = "Ja ...