Commit: a6900122e41bc30562416d513dfaa295b5571daf Author: Anatol Belski <[email protected]> Wed, 22 Apr 2015 12:49:15 +0200 Parents: 0b28a3c77bc2856848267ec62b3f8de290f26f80 Branches: master pecl_legacy
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=a6900122e41bc30562416d513dfaa295b5571daf Log: extend compiler list for the PECL builds Changed paths: M client/include/PeclBranch.php Diff: diff --git a/client/include/PeclBranch.php b/client/include/PeclBranch.php index 14ce9c8..ec2d341 100644 --- a/client/include/PeclBranch.php +++ b/client/include/PeclBranch.php @@ -94,6 +94,8 @@ class PeclBranch { $compiler = strtolower($build_config['compiler']); switch ($compiler) { + case 'vc14': + case 'vc12': case 'vc11': case 'vc9': case 'vc6': @@ -101,6 +103,7 @@ class PeclBranch { 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
