aboutsummaryrefslogtreecommitdiff
path: root/builder
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@google.com>2013-08-14 00:20:54 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-08-14 00:20:54 +0000
commit263c42c75f782fae79f029287b5cf3e12c19039e (patch)
tree2ac7b1908e0102ddf7034ad055a444571b6248f8 /builder
parent050fdc5768521f6cf4d8886d0df52eaab76828db (diff)
parent7b294317e8272729cdb1361645c47308daf6ea10 (diff)
downloadbuild-263c42c75f782fae79f029287b5cf3e12c19039e.tar.gz
Merge "Update to new BuildToolInfo API."
Diffstat (limited to 'builder')
-rw-r--r--builder/src/main/java/com/android/builder/PlatformSdkParser.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/builder/src/main/java/com/android/builder/PlatformSdkParser.java b/builder/src/main/java/com/android/builder/PlatformSdkParser.java
index 6c026e4..3325ea0 100644
--- a/builder/src/main/java/com/android/builder/PlatformSdkParser.java
+++ b/builder/src/main/java/com/android/builder/PlatformSdkParser.java
@@ -61,7 +61,11 @@ public class PlatformSdkParser implements SdkParser {
new File(mPlatformRootFolder, "prebuilts/sdk/tools/lib/dx.jar"),
new File(getHostToolsFolder(), SdkConstants.FN_RENDERSCRIPT),
new File(mPlatformRootFolder, "prebuilts/sdk/renderscript/include"),
- new File(mPlatformRootFolder, "prebuilts/sdk/renderscript/clang-include"));
+ new File(mPlatformRootFolder, "prebuilts/sdk/renderscript/clang-include"),
+ new File(getHostToolsFolder(), SdkConstants.FN_BCC_COMPAT),
+ new File(getHostToolsFolder(), "arm-linux-androideabi-ld"),
+ new File(getHostToolsFolder(), "i686-linux-android-ld"),
+ new File(getHostToolsFolder(), "mipsel-linux-android-ld"));
mInitialized = true;
}
}