Merge pull request #228296 from amjoseph-nixpkgs/pr/gcc/libsanitizer/mips64n32

gcc: disable libsanitizer on mips64n32
This commit is contained in:
Adam Joseph 2023-05-05 06:54:41 +00:00 committed by GitHub
commit e1842769ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,4 +28,5 @@ in lib.concatLists [
"--with-long-double-128"
"--with-long-double-format=${gcc.long-double-format or "ieee"}"
]))
(lib.optional targetPlatform.isMips64n32 "--disable-libsanitizer") # libsanitizer does not compile on mips64n32
]