-
Notifications
You must be signed in to change notification settings - Fork 154
Open
Labels
Description
Line 60 in 60f306d
"CMAKE_BUILD_TYPE": "Debug", |
macro(set_build_type type) |
The build logic in build_sanitizers.sh
are all configuring builds for BlazingMQ with the Debug
build type, but the toolchain file used for those sanitized builds define all the sanitizer configuration flags in new build types named after the equivalent mode used on github CI. This script needs to change to set the build mode to the appropriate one based on the input from github CI.
set_build_type(DEBUG) |
So we seem to be overriding the Debug build type, but I have some reason to believe we aren't getting some UBSAN checks in this build. I'll investigate further.