[compiler-rt] a2b0673 - [scudo] Enable more warnings for standalone build

Dominic Chen via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 9 17:16:50 PST 2022


Author: Dominic Chen
Date: 2022-12-09T17:15:49-08:00
New Revision: a2b0673dbe5d5d24194fbc33a9b0e21a414fa50b

URL: https://github.com/llvm/llvm-project/commit/a2b0673dbe5d5d24194fbc33a9b0e21a414fa50b
DIFF: https://github.com/llvm/llvm-project/commit/a2b0673dbe5d5d24194fbc33a9b0e21a414fa50b.diff

LOG: [scudo] Enable more warnings for standalone build

Differential Revision: https://reviews.llvm.org/D122761

Added: 
    

Modified: 
    compiler-rt/lib/scudo/standalone/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/scudo/standalone/CMakeLists.txt b/compiler-rt/lib/scudo/standalone/CMakeLists.txt
index d7d1c3259fba..ef55d9584d26 100644
--- a/compiler-rt/lib/scudo/standalone/CMakeLists.txt
+++ b/compiler-rt/lib/scudo/standalone/CMakeLists.txt
@@ -7,6 +7,8 @@ set(SCUDO_CFLAGS)
 list(APPEND SCUDO_CFLAGS
   -Werror=conversion
   -Wall
+  -Wextra
+  -pedantic
   -g
   -nostdinc++)
 


        


More information about the llvm-commits mailing list