mirror of https://github.com/mstorsjo/fdk-aac.git
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:
parent
2a2c62fbed
commit
6a39cdb6ee
|
@ -30,7 +30,8 @@ cc_library_static {
|
|||
"signed-integer-overflow",
|
||||
"bounds",
|
||||
],
|
||||
cfi: true,
|
||||
// Enable CFI if this becomes a shared library.
|
||||
// cfi: true,
|
||||
},
|
||||
shared_libs: [
|
||||
"liblog",
|
||||
|
|
Loading…
Reference in New Issue