diff options
author | Duane Sand <duanes@mips.com> | 2012-03-12 11:13:08 -0700 |
---|---|---|
committer | Duane Sand <duanes@mips.com> | 2012-03-12 11:13:08 -0700 |
commit | b0d9e7168ad492e166e97b7e07ddb77c984bc696 (patch) | |
tree | bc366c76bf34e2ab4ecd9948acfe802d494f0772 /build | |
parent | 9c0840643be805bec471e655f458f4a622124778 (diff) | |
download | sdk-b0d9e7168ad492e166e97b7e07ddb77c984bc696.zip sdk-b0d9e7168ad492e166e97b7e07ddb77c984bc696.tar.gz sdk-b0d9e7168ad492e166e97b7e07ddb77c984bc696.tar.bz2 |
Add Mips emulator support.
Change-Id: I84144bae60d99118a3f833b42bb1cc7be28691cb
Diffstat (limited to 'build')
-rw-r--r-- | build/tools.atree | 1 | ||||
-rwxr-xr-x | build/tools.windows.atree | 2 | ||||
-rw-r--r-- | build/windows_sdk_tools.mk | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/build/tools.atree b/build/tools.atree index 03868e2..94e7345 100644 --- a/build/tools.atree +++ b/build/tools.atree @@ -43,6 +43,7 @@ bin/zipalign strip tools/zipalign bin/emulator strip tools/emulator bin/emulator-x86 strip tools/emulator-x86 bin/emulator-arm strip tools/emulator-arm +bin/emulator-mips strip tools/emulator-mips sdk/emulator/snapshot/snapshots.img tools/lib/emulator/snapshots.img usr/share/pc-bios/bios.bin tools/lib/pc-bios/bios.bin usr/share/pc-bios/vgabios-cirrus.bin tools/lib/pc-bios/vgabios-cirrus.bin diff --git a/build/tools.windows.atree b/build/tools.windows.atree index 886cc6d..2425dd9 100755 --- a/build/tools.windows.atree +++ b/build/tools.windows.atree @@ -42,9 +42,11 @@ sdk/lint/cli/etc/lint.bat tools/lint.bat rm tools/emulator rm tools/emulator-arm rm tools/emulator-x86 +rm tools/emulator-mips bin/emulator.exe strip tools/emulator.exe bin/emulator-arm.exe strip tools/emulator-arm.exe bin/emulator-x86.exe strip tools/emulator-x86.exe +bin/emulator-mips.exe strip tools/emulator-mips.exe # Emulator libraries rm tools/lib/libOpenglRender.so rm tools/lib/libGLES_CM_translator.so diff --git a/build/windows_sdk_tools.mk b/build/windows_sdk_tools.mk index 1373613..997f742 100644 --- a/build/windows_sdk_tools.mk +++ b/build/windows_sdk_tools.mk @@ -8,6 +8,7 @@ WIN_SDK_TARGETS := \ emulator \ emulator-arm \ emulator-x86 \ + emulator-mips \ find_java \ find_lock \ mksdcard \ |