Fix copying lsdumps when TARGET_ARCH == TARGET_ARCH_VARIANT.

Test: utils/create_reference_dumps.py -l libc++ for aosp_x86_64_ab (here
      TARGET_ARCH == TARGET_ARCH_VARIANT), copies libc++.so.lsdump to
      prebuilts/abi-dumps/vndk/current/x86_64/x864_64/source-based/libc++.so.lsdump

Change-Id: I8ec48bcfa5cf1487ac1f6e904c1b4cea70719aa3
This commit is contained in:
Jayant Chowdhary
2018-03-02 13:15:52 -08:00
parent 5bb0ba722b
commit de24e5dd01

View File

@@ -47,6 +47,12 @@ def find_and_copy_lib_lsdumps(target, soong_dir, ref_dump_dir_stem,
core_or_vendor_shared_str,
libs, lsdump_paths):
assert(target.primary_arch != '')
target_arch_variant_str = ''
# if TARGET_ARCH == TARGET_ARCH_VARIANT, soong makes targetArchVariant empty
# this is the case for aosp_x86_64_ab and aosp_x86
if target.arch_variant != target.arch:
target_arch_variant_str = '_' + target.arch_variant
arch_lsdump_paths = find_lib_lsdumps(target.arch, target.arch_variant,
target.cpu_variant, lsdump_paths,
core_or_vendor_shared_str,
@@ -55,7 +61,7 @@ def find_and_copy_lib_lsdumps(target, soong_dir, ref_dump_dir_stem,
# reference directory.
return copy_reference_dumps(arch_lsdump_paths, ref_dump_dir_stem,
ref_dump_dir_insertion,
target.arch + '_' + target.arch_variant)
target.arch + target_arch_variant_str)
def get_ref_dump_dir_stem(args, vndk_or_ndk, product, platform_vndk_version):
version = args.version