1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-03-29 22:00:09 +01:00

Don't explicitly enable CFI in libFraunhoferAAC

Since libFraunhoferAAC is a static library, both CFI and non-CFI variants will
be built and linked accordingly.

If it is used as a shared library in the future, we'll need to
explicitly re-enable CFI in the build file.
Bug: 117994055

Change-Id: I825c53b5f895e00c1fb9357c573b6b5c2261c743
This commit is contained in:
Harish Mahendrakar 2019-01-09 14:01:08 -08:00 committed by Wonsik Kim
parent 2a2c62fbed
commit 6a39cdb6ee

@ -30,7 +30,8 @@ cc_library_static {
"signed-integer-overflow", "signed-integer-overflow",
"bounds", "bounds",
], ],
cfi: true, // Enable CFI if this becomes a shared library.
// cfi: true,
}, },
shared_libs: [ shared_libs: [
"liblog", "liblog",