php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #33077 linker not see _compiler_globals_id
Submitted: 2005-05-20 11:55 UTC Modified: 2005-05-20 12:23 UTC
From: max at hightech dot lv Assigned:
Status: Not a bug Package: Scripting Engine problem
PHP Version: 5.0.4 OS: WinXP SP2
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: max at hightech dot lv
New email:
PHP Version: OS:

 

 [2005-05-20 11:55 UTC] max at hightech dot lv
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"...

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-05-20 12:23 UTC] sniper@php.net
This is not a support forum for your own extension development. (you're just missing something in your sources..)

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun May 05 07:01:32 2024 UTC