|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2008-06-02 11:52 UTC] ncoesel at dealogic dot nl
Description: ------------ I had the error "Balloc() allocation exceeds list boundary" on a MIPS big endian platform. It turns out configure cannot test for endiannes and sets ac_cv_c_bigendian_php to "unknown" which presumably defaults to little endian. IMHO configure should stop and produce a clear error to enforce a proper build environment. Reproduce code: --------------- <?php phpinfo(); ?> Expected result: ---------------- Php info output Actual result: -------------- "Balloc() allocation exceeds list boundary" when trying to print the date. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 15:00:01 2025 UTC |
I have the same error running folling script under mips-64 platform: $this->time = date('H:i:s');