forked from organicmaps/organicmaps
[android] Removed duplicated c++17 flag and disabled unused sections
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
e0bbe4fdad
commit
263416f3fe
1 changed files with 3 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue