php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #55709
Patch verbose_build.patch revision 2011-09-16 10:15 UTC by RQuadling at GMail dot com

Patch verbose_build.patch for *Compile Issues Bug #55709

Patch version 2011-09-16 10:15 UTC

Return to Bug #55709 | Download this patch
Patch Revisions:

Developer: RQuadling@GMail.com

Index: win32/build/config.w32
===================================================================
--- win32/build/config.w32	(revision 316815)
+++ win32/build/config.w32	(working copy)
@@ -418,3 +418,10 @@
 	ADD_FLAG("CFLAGS", " /analyze ");
 	ADD_FLAG("CFLAGS", " /wd6308 ");
 }
+
+ARG_ENABLE("verbose-compilation", "Enable all warnings for the compiler and linker", "no");
+if (PHP_VERBOSE_COMPILATION == "yes") {
+	ADD_FLAG("CFLAGS"," /Wall ");
+	ADD_FLAG("LDFLAGS", " /verbose ");
+	STDOUT.WriteLine("Enabling all warnings for the compiler and linker");
+}
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 30 20:01:30 2024 UTC