|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2012-03-06 12:42 UTC] fbableus at yahoo dot fr
Description: ------------ When compiling php 5.4.0 under ARMV5tel (gcc 3.4.2) the make install command fails while attempting to install pear. make test even fails with segfault before any output. Compiling without any optimization (-O0 option) is successfull. Expected result: ---------------- Successfull installation. Actual result: -------------- Segmentation fault PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 05:00:01 2025 UTC |
The following code produces segfault (php 5.4.10): <?php print_r(explode('.', '1.2')); // works list($a,$b) = array(1,2); // works list($c,$d) = explode('.', '1.2'); // fails ?>I compile natively on my arm nas and I have the same issue. Can't install, can't run tests and when I run your same it crashes with segfault even if the code is unreachable. <?php if(false) { print_r(explode('.', '1.2')); // works list($a,$b) = array(1,2); // works list($c,$d) = explode('.', '1.2'); // fails } ?> No output is performed apart 'Segmentation fault'.