ytw
ytw

Reputation: 1355

How to build adb (Windows version) on a Mac

After getting the latest Android Open Source Project (AOSP) source code and built it on a Mac, I get a Mac version of adb in /aosp/out/host/darwin-x86/bin/adb. That's expected.

How can I build a Windows version of adb on a Mac?

Upvotes: 0

Views: 2096

Answers (2)

shaolin
shaolin

Reputation: 11

In the AOSP ,build the adb.exe steps:

  1. source build/envsetup.sh

  2. lunch
    choice **aosp_x86-eng** number

  3. make host_cross_adb -j16

Upvotes: 1

James McCracken
James McCracken

Reputation: 15766

After Googling a little bit I found a GitHub project. This may work for you.

Upvotes: 1

Related Questions