I've just now installed Phalcon. The command line said something about libraries to be found in "../cphalcon/build/64bits". I took a look out of curiosity, but the only php file I found there was "run-tests.php"
I decided to run the file and ran in to a file write permission error, which I had apparently forgot to set.
Looking at the code however, I found the following, on line 1023: if (file_put_contents($filename, $text, FILE_BINARY) === false) {
I didn't recognize the FILE_BINARY flag, so I decided to look it up. I found the following explanation: https://www.tutorialspoint.com/php/php_function_file_put_contents.htm
The page mentions this flag would have been part of PHP6. Which was cancelled.
So I guess the main question is: is this run-tests.php file supposed to be included in the build of Phalcon and if so, is it still up to date?