We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6665ed commit 6c7e3dfCopy full SHA for 6c7e3df
win32/build/config.w32
@@ -357,6 +357,12 @@ if (PHP_SECURITY_FLAGS == "yes") {
357
358
ARG_WITH("uncritical-warn-choke", "Disable some uncritical warnings", "yes");
359
ARG_ENABLE("sanitizer", "Enable ASan (and UBSan) extensions", "no");
360
+if (PHP_SANITIZER == "yes" && PHP_DEBUG == "yes") {
361
+ ERROR("Use of both --enable-sanitizer and --enable-debug not allowed.");
362
+}
363
+if (PHP_SANITIZER == "yes" && PHP_DEBUG_PACK == "no") {
364
+ ERROR("--enable-sanitizer requires --enable-debug-pack");
365
366
if (VS_TOOLSET) {
367
if (PHP_SANITIZER == "yes") {
368
if (COMPILER_NUMERIC_VERSION < 1929) {
0 commit comments