summaryrefslogtreecommitdiff
path: root/win32/build/config.w32
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2016-11-20 22:49:34 +0100
committerKalle Sommer Nielsen <kalle@php.net>2016-11-20 22:49:34 +0100
commitd711798813d6a1297716174de4382f42695a9e92 (patch)
tree45c3f895a83c4620bdb2d92a5ac42151f12d0f16 /win32/build/config.w32
parent4f6f15358b824b11383f8b6f5c3560c7eeba6431 (diff)
downloadphp-git-d711798813d6a1297716174de4382f42695a9e92.tar.gz
Added --enable-asm on Windows
This argument is disabled by default, but if enabled it will create a sub directory in the output directory called 'asm' and dump each compiled .c file's asm there
Diffstat (limited to 'win32/build/config.w32')
-rw-r--r--win32/build/config.w323
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/build/config.w32 b/win32/build/config.w32
index 188c1dc9e2..15a485d9ac 100644
--- a/win32/build/config.w32
+++ b/win32/build/config.w32
@@ -310,3 +310,6 @@ ARG_ENABLE("test-ini", "Enable automatic php.ini generation. The test.ini will b
ARG_WITH("test-ini-ext-exclude", "Comma separated list of shared extensions to \
be excluded from the test.ini", "no");
+
+ARG_ENABLE('asm', 'Enable .asm output for .c files', 'no');
+setup_asm(); \ No newline at end of file