diff options
-rw-r--r-- | gnu/packages/android.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm index 7cb7814965..20ed472292 100644 --- a/gnu/packages/android.scm +++ b/gnu/packages/android.scm @@ -698,6 +698,13 @@ file system.") (("libext4_utils_host") "libext4_utils_host libselinux libpcre") (("\\$\\(shell git .*\\)") ,version)) #t)) + (add-after 'patch-source 'relax-gcc-14-strictness + (lambda _ + (setenv + "CXXFLAGS" + (string-append "-g -O2" + " -Wno-error=calloc-transposed-args" + " -Wno-error=format-truncation")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |