惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
L
LangChain Blog
M
MIT News - Artificial intelligence
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Check Point Blog
P
Proofpoint News Feed
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
I
InfoQ
月光博客
月光博客
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - Franky
D
Docker
B
Blog

ashishb.net

A day in Luxembourg - the richest country in the world I was asked to install malware during a fake interview Book summary: Breakneck - China's quest to engineer the future by Dan Wang Book summary: How to Teach Your Baby to Read Book Summary: The Discontented Little Baby Book by Pamela Douglas Introducing Amazing Sandbox - run third-party tools and AI agents securely on your machine Why software outsourcing gets a bad reputation? Book summary: The Natural Baby Sleep Solution by Polly Moore A day in Antwerp, Belgium Journey of online influencers Two days in Brussels, Belgium Shortcuts - when we love them and when we don't A visit to Rakhigarhi Three days in overhyped Paris Empty Japan, crowded Tokyo The real lock-in in GitHub is not the code, but the stars 11-day Norwegian Breakaway East Caribbean cruise Sanskrit and Sri Lankan Air Force Use REST with Open API The Achilles heel of American capitalism Costa Rica in 4 days At a juice stall in Sri Lanka A short stay at Warsaw, Poland Best practices for using Python & uv inside Docker Two days in Vilnius, Lithuania How IntelliJ IDEs waste disk space Pregnancy Why there aren't many digital nomads from India Two days in Riga, Latvia To keep your machine secure, run third-party tools inside Docker
How to compile android emulator on ubuntu 13.10
Ashish Bhatia · 2014-02-23 · via ashishb.net

I was trying to make some modifications to android emulator and was unable to find good set of instructions for the compiling the same.

Here are mine.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# Get the source code.
git clone https://android.googlesource.com/platform/external/qemu
cd qemu
# Install required dependencies.
sudo apt-get install gcc-multilib libesd0-dev libx11-dev \
 libxext-dev libasound2-dev libpulse-dev \
 lib32stdc++-4.8-dev
# Install ia32 libraries (missing from default ubuntu 13.10).
sudo apt-get install libgtk2.0-0:i386 libpangox-1.0-0:i386 \
 libpangoxft-1.0-0:i386 libidn11:i386 libglu1-mesa:i386
# Configure and build the emulator binary.
./android-configure.sh --no-gles --no-tests --cc=/usr/bin/gcc
make -j16
# The emulator binaries are in objs directory.