|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-05-20 12:23 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 07:00:01 2025 UTC |
Description: ------------ I try compile own extension under windows by Microsoft compiler. When I start use "call_user_function_ex", linker start output error message: "error LNK2019: unresolved external symbol _compiler_globals_id". Looks like it not see this symbol in "php5ts.lib"... ZTS=1 Reproduce code: --------------- zval function_name; zval *retval; ZVAL_STRING(&function_name, "test", 0); if( call_user_function_ex(CG(function_table), NULL, &function_name, &retval, 0, NULL, 0, NULL TSRMLS_CC) == SUCCESS ) { } Expected result: ---------------- compile in dll-file and run the function "test" Actual result: -------------- linker not see "_compiler_globals_id"...