Hi,
I'm trying to cross-compile WebRTC with the following build arguments:
Previously, I was using the system's libc++, but since the use_custom_libcxx flag is being deprecated, I've removed it and am now trying to link against the custom libc++.a and libc++abi.a that are built with the project.
Unfortunately, it appears that the custom libc++ is not being cross-compiled for ARM64. When I inspect the built library, I see that the objects are for x86-64:
What am I missing here? Is there a specific build flag or configuration I need to set to ensure the custom libc++ is built for the correct architecture?
For reference, I'm on the following commit:
Thanks in advance for any help!