The maintainer docs state:
php_{extension-name}.pdb - this will be moved alongside
the C:\path\to\php\ext\php_{extension-name}.dll
This implies the PDB name should be something like php_xdebug.pdb; however, PIE is incorrectly expecting the PDB name to be aligned with the DLL:
|
$sourcePdbName = str_replace('.dll', '.pdb', $sourceDllName); |
( related discussion: mongodb/mongo-php-driver#1732 (comment) )