dre: Update libstdc++.vendor target name

Change-Id: I9fb48d50df7b8b74d19bfb05b3d9c2ca169bf3e2
This commit is contained in:
LuK1337 2023-10-21 10:07:10 +02:00 committed by Albert Tang
parent 9725e4fb45
commit ff6a34afe0
2 changed files with 4 additions and 1 deletions

View file

@ -464,7 +464,7 @@ PRODUCT_PACKAGES += \
# Vendor libstdc++ # Vendor libstdc++
PRODUCT_PACKAGES += \ PRODUCT_PACKAGES += \
libstdc++.vendor libstdc++_vendor
# Verified Boot # Verified Boot
PRODUCT_COPY_FILES += \ PRODUCT_COPY_FILES += \

View file

@ -64,6 +64,9 @@ function blob_fixup() {
vendor/lib64/hw/com.qti.chi.override.so) vendor/lib64/hw/com.qti.chi.override.so)
grep -q libcamera_metadata_shim.so "${2}" || "${PATCHELF}" --add-needed libcamera_metadata_shim.so "${2}" grep -q libcamera_metadata_shim.so "${2}" || "${PATCHELF}" --add-needed libcamera_metadata_shim.so "${2}"
;; ;;
odm/lib64/libCOppLceTonemapAPI.so|odm/lib64/libaps_frame_registration.so)
"${PATCHELF}" --replace-needed "libstdc++.so" "libstdc++_vendor.so" "${2}"
;;
esac esac
} }