#
9757d9ad |
| 11-Nov-2014 |
Anatol Belski |
generalize --with-php-build option handling
|
#
c0db5cd9 |
| 11-Nov-2014 |
Anatol Belski |
refactor zts related config
|
#
d509e79d |
| 10-Nov-2014 |
Anatol Belski |
further fixes to win build - fixed pdb generation with vs - made object-out-dir to use an absolute path, that fixes path issues with x86/x64 and nmake snap
|
#
64c081f3 |
| 10-Nov-2014 |
Anatol Belski |
moved libs and debug/release mode setup into functions
|
#
744fb452 |
| 10-Nov-2014 |
Anatol Belski |
better description for the toolset config option
|
#
12cf41ca |
| 07-Nov-2014 |
Anatol Belski |
move more common ldflags into function
|
#
af7e3064 |
| 07-Nov-2014 |
Anatol Belski |
rename intel toolset to icc - shorter
|
#
2e5cba25 |
| 07-Nov-2014 |
Anatol Belski |
either ms or intel linker is used, /libpath is supported
|
#
fc734cf9 |
| 07-Nov-2014 |
Anatol Belski |
further catch up with phpize and improved clang arch setup
|
#
c78c6adb |
| 07-Nov-2014 |
Anatol Belski |
parametrize WINVER and update its value
|
#
b155ba21 |
| 07-Nov-2014 |
Anatol Belski |
further refactoring of toolset+phpize stuff
|
#
4d8c28af |
| 07-Nov-2014 |
Anatol Belski |
catch up the toolset changes with phpize also packed common parts into functions so there's less code duplication
|
#
46d6baf6 |
| 06-Nov-2014 |
Anatol Belski |
fix linking for clang, using linker directly
|
#
1310bb5e |
| 06-Nov-2014 |
Anatol Belski |
using the determined linker instead of compiler this is a clang issue, longer parameter strings would be issue for both compiler and linker
|
#
cd2aa28a |
| 06-Nov-2014 |
Anatol Belski |
basic support for Intel Composer
|
#
876c7c45 |
| 06-Nov-2014 |
Anatol Belski |
build system to support clang
|
Revision tags: php-5.6.3RC1, php-5.5.19RC1 |
|
#
8aeffdd7 |
| 15-Oct-2014 |
Anatol Belski |
moved most of the core to use static tsrm ls cache pointer plus apache2handler, cli and cgi
|
Revision tags: php-5.5.18, php-5.4.34 |
|
#
892efcfc |
| 08-Oct-2014 |
Anatol Belski |
fix /mp usage for VC++
|
#
b129fece |
| 08-Oct-2014 |
Anatol Belski |
fix wording
|
#
1ff094de |
| 03-Oct-2014 |
Anatol Belski |
remove the remains of dsp files handling
|
#
76081df1 |
| 01-Oct-2014 |
Anatol Belski |
using pointer to the tsrm ls cache instead of a function call yet another approach
|
Revision tags: php-5.5.18RC1, php-5.6.1 |
|
#
d11734b4 |
| 25-Sep-2014 |
Anatol Belski |
reworked the patch, less new stuff but worky TLS is already used in TSRM, the way exporting the tsrm cache through a thread local variable is not portable. Additionally, the current
reworked the patch, less new stuff but worky TLS is already used in TSRM, the way exporting the tsrm cache through a thread local variable is not portable. Additionally, the current patch suffers from bugs which are hard to find, but prevent it to be worky with apache. What is done here is mainly uses the idea from the RFC patch, but - __thread variable is removed - offset math and declarations are removed - extra macros and definitions are removed What is done merely is - use an inline function to access the tsrm cache. The function uses the portable tsrm_tls_get macro which is cheap - all the TSRM_* macros are set to placebo. Thus this opens the way remove them later Except that, the logic is old. TSRMLS_FETCH will have to be done once per thread, then tsrm_get_ls_cache() can be used. Things seeming to be worky are cli, cli server and apache. I also tried to enable bz2 shared and it has worked out of the box. The change is yet minimal diffing to the current master bus is a worky start, IMHO. Though will have to recheck the other previously done SAPIs - embed and cgi. The offsets can be added to the tsrm_resource_type struct, then it'll not be needed to declare them in the userspace. Even the "done" member type can be changed to int16 or smaller, then adding the offset as int16 will not change the struct size. As well on the todo might be removing the hashed storage, thread_id != thread_id and linked list logic in favour of the explicit TLS operations.
show more ...
|
Revision tags: php-5.6.2 |
|
#
982f02af |
| 22-Sep-2014 |
Nikita Popov |
Remove zend_dynamic_array This was introduced back in 2000 to test a new hashtable implementation and is no longer used.
|
#
f2e636de |
| 22-Sep-2014 |
Anatol Belski |
pickup the alignment definition
|
#
aa339d00 |
| 20-Sep-2014 |
Anatol Belski |
enable native TLS by default on Windows
|