diff options
author | 2021-05-11 19:23:52 +0100 | |
---|---|---|
committer | 2021-05-13 16:02:29 +0000 | |
commit | 2b527c4f8641f42e6ec917a63614d50d3c4e8821 (patch) | |
tree | 8dfeb955df91cbb8a457677de57b9ed8ecc35f35 /dexdump/Android.bp | |
parent | 7e363b8a078ccc68a5666461c455cfc1d192b7b5 (diff) |
Export dexdump, oatdump, and veridex as prebuilt host tools.
dexdump is used with the check_boot_jars script when building boot
jars.
oatdump is useful for debugging. In particular having it as a prebuilt
makes it easier for external parties to find the right oatdump binary -
the format isn't stable so it's important to use the version
corresponding to the APEX package.
veridex is used for appcompat checks on system image apps.
Test: art/build/build-art-module.sh --skip-apex
packages/modules/ArtPrebuilt/update-art-module-prebuilts.py \
--local-dist out/dist --skip-apex
ldd prebuilts/module_sdk/art/current/host-exports/x86_64/bin/dexdump
ldd prebuilts/module_sdk/art/current/host-exports/x86_64/bin/oatdump
ldd prebuilts/module_sdk/art/current/host-exports/x86_64/bin/veridex
m SOONG_CONFIG_art_module_source_build=false droid
Bug: 172480615
Change-Id: Ice0583089777f40b9b12c1a602ebc56fc22f9335
Diffstat (limited to 'dexdump/Android.bp')
-rw-r--r-- | dexdump/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dexdump/Android.bp b/dexdump/Android.bp index 3b651e823a..87abfc1fbc 100644 --- a/dexdump/Android.bp +++ b/dexdump/Android.bp @@ -47,6 +47,7 @@ art_cc_binary { // static_sdk_tools build. host: { enabled: true, + stl: "libc++_static", static_libs: [ "libdexfile", "libartbase", |