diff options
author | Anatol Belski <ab@php.net> | 2014-11-10 10:57:27 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-11-10 10:58:21 +0100 |
commit | 744fb45217b9175b086350f503812f8946da2217 (patch) | |
tree | dc6e26df0c9160d504e37a408878b1c53ec809ed /win32 | |
parent | 25e75cd091e607c531260dc1cc2937b7461d894f (diff) | |
download | php-git-744fb45217b9175b086350f503812f8946da2217.tar.gz |
better description for the toolset config option
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/config.w32 | 4 | ||||
-rw-r--r-- | win32/build/config.w32.phpize.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/win32/build/config.w32 b/win32/build/config.w32 index 7187eacca1..e89b805973 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -3,7 +3,9 @@ // "Master" config file; think of it as a configure.in // equivalent. -ARG_WITH("toolset", "Toolset to use for the compilation, supported: vs, clang, icc", "vs"); +ARG_WITH("toolset", "Toolset to use for the compilation, give: vs, clang, icc. " + + "The only recommended and supported toolset for production use " + + "is Visual Studio. Use others at your own risk.", "vs"); toolset_option_handle(); ARG_WITH('cygwin', 'Path to cygwin utilities on your system', '\\cygwin'); diff --git a/win32/build/config.w32.phpize.in b/win32/build/config.w32.phpize.in index 5a7f31d5d4..da6f6ebae8 100644 --- a/win32/build/config.w32.phpize.in +++ b/win32/build/config.w32.phpize.in @@ -3,7 +3,9 @@ // "Master" config file; think of it as a configure.in
// equivalent.
-ARG_WITH("toolset", "Toolset to use for the compilation, supported: vs, clang, icc", "vs");
+ARG_WITH("toolset", "Toolset to use for the compilation, give: vs, clang, icc. " +
+ "The only recommended and supported toolset for production use " +
+ "is Visual Studio. Use others at your own risk.", "vs");
toolset_option_handle()
var PHP_CYGWIN="notset";
|