diff options
author | Jan Dubois <jand@activestate.com> | 2010-07-21 17:21:05 -0700 |
---|---|---|
committer | Jan Dubois <jand@activestate.com> | 2010-07-21 17:21:05 -0700 |
commit | f33a21d84a9428cd5c501b39e3eea520b4f28643 (patch) | |
tree | e441b044ee6722c6ca8b8c96cbcf5bcebc9c576a | |
parent | bf236c8ee5b1b47df84e2e196fb90a43c6abd5a2 (diff) | |
download | perl-f33a21d84a9428cd5c501b39e3eea520b4f28643.tar.gz |
Remove deprecated -Wp64 compiler option
The option seems to have been cargo-culted, as it is not
relevant to the Perl sources, and would really be useful
for 32-bit compiles only anyways (it detects certain
potential 64-bit compatibility issues in 32-bit compiles;
the 64-bit compilers always report these issues by default).
-rw-r--r-- | win32/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/Makefile b/win32/Makefile index 87c502da19..fab8cf4492 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -471,7 +471,7 @@ OPTIMIZE = $(OPTIMIZE) -O1 !IF "$(WIN64)" == "define" DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE -OPTIMIZE = $(OPTIMIZE) -Wp64 -fp:precise +OPTIMIZE = $(OPTIMIZE) -fp:precise !ENDIF # For now, silence VC++ 8.x's and 9.x's warnings about "unsafe" CRT functions |