]> granicus.if.org Git - php/commitdiff
Revert "Added --enable-asm on Windows"
authorKalle Sommer Nielsen <kalle@php.net>
Sun, 20 Nov 2016 23:46:04 +0000 (00:46 +0100)
committerKalle Sommer Nielsen <kalle@php.net>
Sun, 20 Nov 2016 23:46:04 +0000 (00:46 +0100)
This reverts commit d711798813d6a1297716174de4382f42695a9e92.

I need a better approach for this and general customized CFLAGS

win32/build/config.w32
win32/build/confutils.js

index 15a485d9ac36216c87310e51cb0a306d5bc8598e..188c1dc9e26a074080164c8c54e700b877534176 100644 (file)
@@ -310,6 +310,3 @@ 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
index edb107d81f229572c0a8e2c065d88e3a642b21b7..804fe5440ee9ddfbd95997fc930b43739f1b0711 100644 (file)
@@ -3147,19 +3147,6 @@ function object_out_dir_option_handle()
        }
 }
 
-function setup_asm()
-{
-       if (PHP_ASM != 'no') {
-               if (!FSO.FolderExists(configure_subst.Item('BUILD_DIR') + '\\asm')) {
-                       FSO.CreateFolder(configure_subst.Item('BUILD_DIR') + '\\asm');
-               }
-
-               ADD_FLAG('CFLAGS', ' /Fa' + configure_subst.Item('BUILD_DIR') + '\\asm\\');
-
-               STDOUT.WriteLine('Enabling .asm output for .c files');
-       }
-}
-
 function setup_zts_stuff()
 {
        if (PHP_ZTS == "yes") {