Skip to content

Commit bd677b4

Browse files
committed
removed the /Wp64 switch as we use true 64 bit compiler now
1 parent 5a525bc commit bd677b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

win32/build/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ if (VCVERS >= 1400) {
155155
// disable annoying warnings. In addition, time_t defaults
156156
// to 64-bit. Ask for 32-bit.
157157
if (X64) {
158-
ADD_FLAG('CFLAGS', ' /wd4996 /Wp64 ');
158+
ADD_FLAG('CFLAGS', ' /wd4996 ');
159159
} else {
160160
ADD_FLAG('CFLAGS', ' /wd4996 /D_USE_32BIT_TIME_T=1 ');
161161
}

win32/build/config.w32.phpize.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ if (VCVERS >= 1400) {
134134
// disable annoying warnings. In addition, time_t defaults
135135
// to 64-bit. Ask for 32-bit.
136136
if (X64) {
137-
ADD_FLAG('CFLAGS', ' /wd4996 /Wp64 ');
137+
ADD_FLAG('CFLAGS', ' /wd4996 ');
138138
} else {
139139
ADD_FLAG('CFLAGS', ' /wd4996 /D_USE_32BIT_TIME_T=1 ');
140140
}

0 commit comments

Comments
 (0)