Commit: d8bdbc6118ea52535615d97651be9f0e9832fa03 Author: Anatol Belski <[email protected]> Wed, 22 Apr 2015 14:55:05 +0200 Parents: 34cc3b478565641e9c38d9d84fa297dd03c25da6 Branches: master pecl_legacy
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=d8bdbc6118ea52535615d97651be9f0e9832fa03 Log: extend vc compilers list for the basic branch Changed paths: M client/include/Branch.php Diff: diff --git a/client/include/Branch.php b/client/include/Branch.php index edd95f3..61d4064 100644 --- a/client/include/Branch.php +++ b/client/include/Branch.php @@ -158,6 +158,8 @@ class Branch { $compiler = strtolower($build['compiler']); switch ($compiler) { + case 'vc14': + case 'vc12': case 'vc11': case 'vc9': case 'vc6': @@ -165,6 +167,7 @@ class Branch { break; case 'icc': case 'gcc': + case 'clang': throw new \Exception("$compiler not supported yet. Not implemented"); break; } -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
