October 2018
Beginner
794 pages
19h 23m
English
As the preceding table shows, we need to compile our target application membugs with the appropriate compiler flag(s). Also, instead of using gcc as the compiler, it's recommended we use clang.
This snippet from our Makefile shows how we use clang to compile the membugs sanitizer targets:
CC=${CROSS_COMPILE}gccCL=${CROSS_COMPILE}clang ...Read now
Unlock full access