mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
- add configure option to enable the builtin static analyzer (will be enabled for snaps' log)
This commit is contained in:
parent
478e5d1dd0
commit
eda798fd7a
1 changed files with 5 additions and 0 deletions
|
@ -411,3 +411,8 @@ ARG_ENABLE("security-flags", "Enable the compiler security flags", "yes");
|
||||||
if (PHP_SECURITY_FLAGS == "yes") {
|
if (PHP_SECURITY_FLAGS == "yes") {
|
||||||
ADD_FLAG("LDFLAGS", "/NXCOMPAT /DYNAMICBASE ");
|
ADD_FLAG("LDFLAGS", "/NXCOMPAT /DYNAMICBASE ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ARG_ENABLE("static-analyze", "Enable the VC compiler static analyze", "no");
|
||||||
|
if (PHP_STATIC_ANALYZE == "yes") {
|
||||||
|
ADD_FLAG("CFLAGS", " /analyze ");
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue