[android] Removed duplicated c++17 flag and disabled unused sections

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-03-25 22:46:55 +01:00 committed by Alexander Borsuk
parent e0bbe4fdad
commit 263416f3fe

View file

@ -188,8 +188,9 @@ android {
cmake {
version '3.8.0+'
cppFlags '-fexceptions', '-frtti', '-std=c++17'
cFlags '-ffunction-sections', '-fdata-sections',
cppFlags '-fexceptions', '-frtti'
// There is no sense to enable sections without gcc's --gc-sections flag.
cFlags '-fno-function-sections', '-fno-data-sections',
'-Wno-extern-c-compat'
arguments '-DANDROID_TOOLCHAIN=clang', '-DANDROID_STL=c++_static',
"-DOS=$osName", '-DSKIP_TESTS=ON', "-DUSE_PCH=$pchFlag"