Skip to content

Commit

Permalink
Fix configure's --sanitizer argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmmr committed Feb 21, 2022
1 parent 0a17521 commit d662840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ while [ $# -ne 0 ]; do
--enable-debug) cmake_build_type="Debug";;
--enable-osx-universal) cmake_osx_architectures="'arm64;x86_64'";;
--enable-sanitizer) cmake_use_sanitizers="address";;
--enable-sanitizer=*) cmake_use_sanitizers="${optargs}";;
--enable-sanitizer=*) cmake_use_sanitizers="${optarg}";;
--enable-static) cmake_use_static_linking="yes";;
--enable-werror) cmake_use_werror="yes";;
--generator=*) cmake_generator="${optarg}";;
Expand Down

0 comments on commit d662840

Please sign in to comment.