Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5119676 authored by Pirama Arumuga Nainar's avatar Pirama Arumuga Nainar Committed by android-build-merger
Browse files

Merge "Enable coverage only when LOCAL_SDK_VERSION > 23"

am: 5aab10f4

Change-Id: Icd16e3925dfe4605aac91840dc094f5eb26afdae
parents e95dc4e3 5aab10f4
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -257,6 +257,14 @@ ifneq ($(LOCAL_SDK_VERSION),)
  else # LOCAL_NDK_STL_VARIANT must be none
    # Do nothing.
  endif

  # Clang's coverage/profile runtime needs symbols like 'stderr' that were not
  # exported from libc prior to API level 23
  ifneq ($(my_ndk_api),current)
    ifeq ($(call math_lt, $(my_ndk_api),23),true)
      my_native_coverage := false
    endif
  endif
endif

ifneq ($(LOCAL_USE_VNDK),)