I've synced with current git and seem to have the files I expect for
interbase, but when trying to run a clean build of the core stuff it no
longer compiles ...
For example
/srv/repo/php-src_master/ext/opcache/ZendAccelerator.c:2005:19: error:
‘zend_array’ has no member named ‘pDestructor’
Seems to be due to changes for HashTable? But what have I missed?
--
Lester Caine - G8HFL
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk
Rainbow Digital Media - http://rainbowdigitalmedia.co.uk
I've synced with current git and seem to have the files I expect for
interbase, but when trying to run a clean build of the core stuff it no
longer compiles ...For example
/srv/repo/php-src_master/ext/opcache/ZendAccelerator.c:2005:19: error:
‘zend_array’ has no member named ‘pDestructor’
Seems to be due to changes for HashTable? But what have I missed?--
Lester Caine - G8HFLContact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk
Rainbow Digital Media - http://rainbowdigitalmedia.co.uk--
try a fresh build after ./vcsclean
--
Ferenc Kovács
@Tyr43l - http://tyrael.hu
I've synced with current git and seem to have the files I expect for
interbase, but when trying to run a clean build of the core stuff it no
longer compiles ...For example
/srv/repo/php-src_master/ext/opcache/ZendAccelerator.c:2005:19: error:
‘zend_array’ has no member named ‘pDestructor’
Seems to be due to changes for HashTable? But what have I missed?
try a fresh build after ./vcsclean
OK I'm working off multiple local copies of the code base so vcsclean is
not usable. I suspect it would wipe the eclipse project files anyway.
SO it's a matter of working out what does not get wiped by
make distclean ? Although it's probably just as easy to drop the eclipse
files onto a new dump of the code - which is what I've currently done,
but I still can't compile interbase now :(
--
Lester Caine - G8HFL
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk
Rainbow Digital Media - http://rainbowdigitalmedia.co.uk
/srv/repo/php-src_master/ext/opcache/ZendAccelerator.c:2005:19: error:
‘zend_array’ has no member named ‘pDestructor’
Seems to be due to changes for HashTable? But what have I missed?try a fresh build after ./vcsclean
OK I'm working off multiple local copies of the code base so vcsclean is
not usable. I suspect it would wipe the eclipse project files anyway.
IIRC vcsclean essentially runs git clean -f -X
. That last parameter is
important because it instructs git to only remove files that are ignored
via .gitignore. Your manually created files will stay.
- Martin
OK I'm working off multiple local copies of the code base so vcsclean is
not usable. I suspect it would wipe the eclipse project files anyway.
IIRC vcsclean essentially runsgit clean -f -X
. That last parameter is
important because it instructs git to only remove files that are ignored
via .gitignore. Your manually created files will stay.
Thanks for that Martin ... turns out hg purge can do the same thing via
hggit plugin ;) Just needed the kick in the right direction.
--
Lester Caine - G8HFL
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk
Rainbow Digital Media - http://rainbowdigitalmedia.co.uk