|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2015-09-26 09:03 UTC] sohuxuxing at hotmail dot com
Description: ------------ Under php-7.0.0beta3, vld-0.13.0 cannot be installed successfully. It will cause Segmentfault. After I resolved the installation problem, I found the dump oparray is uncorrect. So I fixed it. Patchesvld-0.13.0-compatible-php7-patch (last revision 2015-09-26 09:05 UTC by sohuxuxing at hotmail dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 06:00:01 2025 UTC |
/home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/srm_oparray.c: In function 'vld_dump_zval': /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/srm_oparray.c:411:34: warning: implicit declaration of function 'vld_dump_zval_undef' [-Wimplicit-function-declaration] case IS_UNDEF: return vld_dump_zval_undef (val.value); ^~~~~~~~~~~~~~~~~~~ /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/srm_oparray.c:414:34: warning: implicit declaration of function 'vld_dump_zval_reference' [-Wimplicit-function-declaration] case IS_REFERENCE: return vld_dump_zval_reference (val.value); ^~~~~~~~~~~~~~~~~~~~~~~ /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/srm_oparray.c:415:34: warning: implicit declaration of function 'vld_dump_zval_callable' [-Wimplicit-function-declaration] case IS_CALLABLE: return vld_dump_zval_callable (val.value); ^~~~~~~~~~~~~~~~~~~~~~ /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/srm_oparray.c:416:34: warning: implicit declaration of function 'vld_dump_zval_indirect' [-Wimplicit-function-declaration] case IS_INDIRECT: return vld_dump_zval_indirect (val.value); ^~~~~~~~~~~~~~~~~~~~~~ /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/srm_oparray.c:417:34: warning: implicit declaration of function 'vld_dump_zval_ptr' [-Wimplicit-function-declaration] case IS_PTR: return vld_dump_zval_ptr (val.value); ^~~~~~~~~~~~~~~~~ /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/branchinfo.c: In function 'vld_branch_info_dump': /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/branchinfo.c:226:55: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'zend_op_array * {aka struct _zend_op_array *}' [-Wformat=] fprintf(VLD_G(path_dump_file), "subgraph cluster_%08x {\n\tlabel=\"%s\";\n\tgraph [rankdir=\"LR\"];\n\tnode [shape = record];\n", opa, fname, fname); ^ /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/branchinfo.c:226:34: warning: too many arguments for format [-Wformat-extra-args] fprintf(VLD_G(path_dump_file), "subgraph cluster_%08x {\n\tlabel=\"%s\";\n\tgraph [rankdir=\"LR\"];\n\tnode [shape = record];\n", opa, fname, fname); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/vld.c: In function 'vld_compile_file': /home/builduser/rpmbuild/BUILD/vld-0.13.0/vld-0.13.0/vld.c:351:60: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'zend_op_array * {aka struct _zend_op_array *}' [-Wformat=] fprintf(VLD_G(path_dump_file), "subgraph cluster_file_%08x { label=\"file %s\";\n", op_array, op_array->filename ? ZSTRING_VALUE(op_array->filename) : "__main");