jvlad wrote:
>> can you run the custom gdb dumpbt so we can see which line of
>> install-pear-nozlib.phar is triggering the error?
>>
> 
> (gdb) dump_bt executor_globals.current_execute_data
> [0x00861cc0] ??? 
> /export/home/jvlad/php/php5.3-200906221030/ext/phar/phar.php:10

Hi,

Thanks.  The line in question is the first line of the generated
(non-phar) phar.php script which is the foreach line in:

<?php
foreach (array("SPL", "Reflection", "Phar") as $ext) {
        if (!extension_loaded($ext)) {
                echo "$argv[0] requires PHP extension $ext.\n"
                exit(1);
        }
}
?>

Could you try running sapi/cli/php passing in a simple script with those
contents and verify you still get the bus error?

Thanks,
Greg

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to