diff options
| author | 2019-10-14 17:09:58 -0700 | |
|---|---|---|
| committer | 2019-10-14 17:09:58 -0700 | |
| commit | b69fd6724cf1e30e2f48610c60acb73bc18d8d2c (patch) | |
| tree | dceacbc81cc232095600907726bc47e41063c9d6 | |
| parent | 11c0ef2c5ec4793ced1601ecfd0fb2f360601437 (diff) | |
| parent | 3917055fc11324dc8ada1590fa4dbac82924e6ad (diff) | |
Merge "Disable the new pass manager for libhwui" am: 3268a5ec1a am: 9a283f69a0 am: 9c43003e57
am: 3917055fc1
Change-Id: Iffd9d3d3861f9ad0b23cd9a4ddf726c9a44b2c1f
| -rw-r--r-- | libs/hwui/Android.bp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/hwui/Android.bp b/libs/hwui/Android.bp index ae90f117d448..b2606fc18ad9 100644 --- a/libs/hwui/Android.bp +++ b/libs/hwui/Android.bp @@ -28,6 +28,11 @@ cc_defaults { // clang's warning is broken, see: https://llvm.org/bugs/show_bug.cgi?id=21629 "-Wno-missing-braces", + + // Clang is producing non-determistic binary when the new pass manager is + // enabled. Disable the new PM as a temporary workaround. + // b/142372146 + "-fno-experimental-new-pass-manager", ], include_dirs: [ |