summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-08-07 22:29:58 +0000
committerAndy Polyakov <appro@openssl.org>2005-08-07 22:29:58 +0000
commit98e986141b416b99788f514218fbe3b53b49d6c8 (patch)
treed53e3ea65cf7e4aa9c8c6713db41eaafc1f0b418 /util
parentd7e35e037163319142be0d9bf51d99e96ee6e91f (diff)
Windows CE update from HEAD.
Diffstat (limited to 'util')
-rw-r--r--util/pl/VC-32.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl
index bc9003135f..708a33ec9b 100644
--- a/util/pl/VC-32.pl
+++ b/util/pl/VC-32.pl
@@ -50,7 +50,7 @@ elsif ($FLAVOR =~ /CE/)
/^X86/ && do { $wcecdefs.=" -Dx86 -D_X86_";
$wcelflag.=" /machine:X86"; last; };
/^ARM/ && do { $wcecdefs.=" -DARM -D_ARM_";
- $wcelflag.=" /machine:$wcetgt"; last; };
+ $wcelflag.=" /machine:ARM"; last; };
/^R4[0-9]{3}/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DMIPS_R4000";
$wcelflag.=" /machine:MIPS"; last; };
/^SH[0-9]/ && do { $wcecdefs.=" -D$wcetgt -D_$wcetgt_ -DSHx";
@@ -64,7 +64,6 @@ elsif ($FLAVOR =~ /CE/)
$base_cflags.=" $wcecdefs";
$base_cflags.=" -Qsh4" if ($wcetgt =~ /^SH4/);
$opt_cflags=' /MC /O1i'; # optimize for space, but with intrinsics...
- $opt_cflags.=' /wd4959'; # disable "too large to optimize" warning...
$dbg_clfags=' /MC /Od -DDEBUG -D_DEBUG';
$lflags="/nologo /opt:ref $wcelflag";
}