diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-07-22 13:46:06 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-07-22 13:46:06 +0200 |
commit | 0da4a3ec2c3bfe0bfddbd17e0c757f71ae8d661b (patch) | |
tree | 555c03948f3d317d2cc1f5ec9598bf3ffd247e71 /sapi/phpdbg/phpdbg.c | |
parent | cff6cbc01f64029abe76421d332e91ed655b5b43 (diff) | |
download | php-git-0da4a3ec2c3bfe0bfddbd17e0c757f71ae8d661b.tar.gz |
Add -e (ZEND_EXT_* generation) option to phpdbg
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r-- | sapi/phpdbg/phpdbg.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index d594601f29..83425fe531 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -966,6 +966,7 @@ const opt_struct OPTIONS[] = { /* {{{ */ {'I', 0, "ignore init"}, {'O', 1, "opline log"}, {'r', 0, "run"}, + {'e', 0, "generate ext_stmt opcodes"}, {'E', 0, "step-through-eval"}, {'S', 1, "sapi-name"}, #ifndef _WIN32 @@ -1242,6 +1243,7 @@ int main(int argc, char **argv) /* {{{ */ int socket = -1; FILE* stream = NULL; char *print_opline_func; + zend_bool ext_stmt = 0; #ifdef ZTS void ***tsrm_ls; @@ -1382,6 +1384,10 @@ phpdbg_main: flags &= ~PHPDBG_IS_QUIET; break; + case 'e': + ext_stmt = 1; + break; + case 'E': /* stepping through eval on */ flags |= PHPDBG_IS_STEPONEVAL; break; @@ -1693,6 +1699,10 @@ phpdbg_main: cleaning = -1; + if (ext_stmt) { + CG(compiler_options) |= ZEND_COMPILE_EXTENDED_INFO; + } + /* initialize from file */ PHPDBG_G(flags) |= PHPDBG_IS_INITIALIZING; zend_try { |