File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ PHP NEWS
45
45
. Fixed bug #77627 (method_exists on Closure::__invoke inconsistency).
46
46
(krakjoe)
47
47
48
+ - Windows:
49
+ . Fixed bug #81120 (PGO data for main PHP DLL are not used). (cmb)
50
+
48
51
03 Jun 2021, PHP 8.0.7
49
52
50
53
- Core:
Original file line number Diff line number Diff line change @@ -98,15 +98,15 @@ sapi\phpdbg\phpdbg_lexer.c: sapi\phpdbg\phpdbg_lexer.l
98
98
!endif
99
99
100
100
!if "$(ZTS)" == "1"
101
- PHP7_PGD_SUFFIX =ts
101
+ PHP8_PGD_SUFFIX =ts
102
102
!else
103
- PHP7_PGD_SUFFIX =
103
+ PHP8_PGD_SUFFIX =
104
104
!endif
105
105
106
106
!if $(PGOMGR) != ""
107
- PHP7_PGD_OPTION =/PGD:$(PGOPGD_DIR ) \php7 $( PHP7_PGD_SUFFIX ) .pgd
107
+ PHP8_PGD_OPTION =/PGD:$(PGOPGD_DIR ) \php8 $( PHP8_PGD_SUFFIX ) .pgd
108
108
!else
109
- PHP7_PGD_OPTION =
109
+ PHP8_PGD_OPTION =
110
110
!endif
111
111
112
112
PHPDLL_RES =$(BUILD_DIR ) \$(PHPDLL ) .res
@@ -132,8 +132,8 @@ $(PHPDLL_RES): win32\build\template.rc
132
132
133
133
$(BUILD_DIR ) \$(PHPDLL ) : generated_files $(PHPDEF ) $(PHP_GLOBAL_OBJS ) $(STATIC_EXT_OBJS ) $(PHPDLL_RES ) $(MCFILE )
134
134
@copy win32\b uild\d efault.manifest $(BUILD_DIR ) \$ (PHPDLL).manifest > nul
135
- # @$(CC) $(PHP_GLOBAL_OBJS) $(STATIC_EXT_OBJS) $(STATIC_EXT_LIBS) $(LIBS) $(PHPDLL_RES) /link /out:$(BUILD_DIR)\$(PHPDLL) $(PHP7_PGD_OPTION ) $(PHP_LDFLAGS) $(LDFLAGS) $(STATIC_EXT_LDFLAGS)
136
- @"$(LINK)" $(PHP_GLOBAL_OBJS_RESP) $(STATIC_EXT_OBJS_RESP) $(STATIC_EXT_LIBS) $(LIBS) $(PHPDLL_RES) /out:$(BUILD_DIR)\$(PHPDLL) $(PHP7_PGD_OPTION ) $(PHP_LDFLAGS) $(LDFLAGS) $(STATIC_EXT_LDFLAGS)
135
+ # @$(CC) $(PHP_GLOBAL_OBJS) $(STATIC_EXT_OBJS) $(STATIC_EXT_LIBS) $(LIBS) $(PHPDLL_RES) /link /out:$(BUILD_DIR)\$(PHPDLL) $(PHP8_PGD_OPTION ) $(PHP_LDFLAGS) $(LDFLAGS) $(STATIC_EXT_LDFLAGS)
136
+ @"$(LINK)" $(PHP_GLOBAL_OBJS_RESP) $(STATIC_EXT_OBJS_RESP) $(STATIC_EXT_LIBS) $(LIBS) $(PHPDLL_RES) /out:$(BUILD_DIR)\$(PHPDLL) $(PHP8_PGD_OPTION ) $(PHP_LDFLAGS) $(LDFLAGS) $(STATIC_EXT_LDFLAGS)
137
137
-@$(_VC_MANIFEST_EMBED_DLL)
138
138
139
139
$(BUILD_DIR ) \$(PHPLIB ) : $(BUILD_DIR ) \$(PHPDLL )
You can’t perform that action at this time.
0 commit comments