aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 2d6c6b30..e1fb5cb5 100644
--- a/Android.bp
+++ b/Android.bp
@@ -133,7 +133,11 @@ cc_defaults {
host_supported: true,
test_suites: ["general-tests"],
// The tests require exceptions and RTTI.
- cflags: ["-fexceptions"],
+ cflags: [
+ "-fexceptions",
+ // https://github.com/fmtlib/fmt/issues/3884
+ "-Wno-non-virtual-dtor",
+ ],
rtti: true,
// The usual "gtest *and* gmock, please" dance...
gtest: false,