mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
Merge branch 'PHP-7.1'
* PHP-7.1: /guard is also a security flag
This commit is contained in:
commit
3aece4629b
@ -3067,7 +3067,9 @@ function toolset_setup_common_cflags()
|
||||
ADD_FLAG('CFLAGS', ' /RTC1 ');
|
||||
} else {
|
||||
if (VCVERS >= 1900) {
|
||||
ADD_FLAG('CFLAGS', "/guard:cf");
|
||||
if (PHP_SECURITY_FLAGS == "yes") {
|
||||
ADD_FLAG('CFLAGS', "/guard:cf");
|
||||
}
|
||||
}
|
||||
if (VCVERS >= 1800) {
|
||||
if (PHP_PGI != "yes" && PHP_PGO != "yes") {
|
||||
@ -3108,7 +3110,9 @@ function toolset_setup_common_ldlags()
|
||||
|
||||
if (VS_TOOLSET) {
|
||||
if (VCVERS >= 1900) {
|
||||
ADD_FLAG('LDFLAGS', "/GUARD:CF");
|
||||
if (PHP_SECURITY_FLAGS == "yes") {
|
||||
ADD_FLAG('LDFLAGS', "/GUARD:CF");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user