summaryrefslogtreecommitdiff
path: root/win32/build/confutils.js
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-03-02 20:39:41 +0100
committerAnatol Belski <ab@php.net>2018-03-02 20:39:41 +0100
commitc7dc6cc66b470b744abd422ded87b5ab9b59048c (patch)
tree51d64377a1c83b3b1a2cb1ba1bf811268448bd0e /win32/build/confutils.js
parentfd5a635225ceda2826cdb0b49788559825db5a5f (diff)
downloadphp-git-c7dc6cc66b470b744abd422ded87b5ab9b59048c.tar.gz
Reflect native instruction set in snap filename
Diffstat (limited to 'win32/build/confutils.js')
-rw-r--r--win32/build/confutils.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/build/confutils.js b/win32/build/confutils.js
index f4d69d959a..78c9ee0ce2 100644
--- a/win32/build/confutils.js
+++ b/win32/build/confutils.js
@@ -1958,7 +1958,7 @@ function write_summary()
}
var simd = configure_subst.Item("PHP_SIMD_SCALE");
if (!!simd) {
- ar[k++] = ["Native SIMD", simd.toUpperCase()];
+ ar[k++] = ["Native intrinsics", simd];
}
if (PHP_ANALYZER == "vs") {
ar[k++] = ['Static analyzer', 'Visual Studio'];
@@ -3267,7 +3267,7 @@ function toolset_setup_intrinsic_cflags()
/* All means all. __AVX__ and __AVX2__ are defined by compiler. */
ADD_FLAG("CFLAGS","/arch:AVX2");
- configure_subst.Add("PHP_SIMD_SCALE", "avx2");
+ configure_subst.Add("PHP_SIMD_SCALE", "AVX2");
} else {
var list = PHP_NATIVE_INTRINSICS.split(",");
var j = 0;
@@ -3289,7 +3289,7 @@ function toolset_setup_intrinsic_cflags()
ADD_FLAG("CFLAGS","/arch:SSE");
}
}
- configure_subst.Add("PHP_SIMD_SCALE", scale[j]);
+ configure_subst.Add("PHP_SIMD_SCALE", scale[j].toUpperCase());
/* There is no explicit way to enable intrinsics between SSE3 and SSE4.2.
The declared macros therefore won't affect the code generation,
but will enable the guarded code parts. */