VC-32.pl 10.0 KB
Newer Older
1
#!/usr/local/bin/perl
2 3
# VC-32.pl - unified script for Microsoft Visual C++, covering Win32,
# Win64 and WinCE [follow $FLAVOR variable to trace the differences].
4 5 6 7 8 9
#

$ssl=	"ssleay32";
$crypto="libeay32";

$o='\\';
D
Dr. Stephen Henson 已提交
10 11
$cp='$(PERL) util/copy.pl';
$mkdir='$(PERL) util/mkdir-p.pl';
12
$rm='del /Q';
13

D
Dr. Stephen Henson 已提交
14 15
$zlib_lib="zlib1.lib";

16 17
# C compiler stuff
$cc='cl';
18 19 20 21 22 23 24 25 26 27
if ($FLAVOR =~ /WIN64/)
    {
    # Note that we currently don't have /WX on Win64! There is a lot of
    # warnings, but only of two types:
    #
    # C4344: conversion from '__int64' to 'int/long', possible loss of data
    # C4267: conversion from 'size_t' to 'int/long', possible loss of data
    #
    # Amount of latter type is minimized by aliasing strlen to function of
    # own desing and limiting its return value to 2GB-1 (see e_os.h). As
28
    # per 0.9.8 release remaining warnings were explicitly examined and
29 30
    # considered safe to ignore.
    # 
31
    $base_cflags= " $mf_cflag";
A
Andy Polyakov 已提交
32 33
    my $f = $shlib?' /MD':' /MT';
    $lib_cflag='/Zl' if (!$shlib);	# remove /DEFAULTLIBs from static lib
34 35
    $opt_cflags=$f.' /Ox';
    $dbg_cflags=$f.'d /Od -DDEBUG -D_DEBUG';
36
    $lflags="/nologo /subsystem:console /opt:ref";
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

    *::perlasm_compile_target = sub {
	my ($target,$source,$bname)=@_;
	my $ret;

	$bname =~ s/(.*)\.[^\.]$/$1/;
	$ret=<<___;
\$(TMP_D)$o$bname.asm: $source
	\$(PERL) $source \$\@

$target: \$(TMP_D)$o$bname.asm
	\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm

___
	}
52
    }
53 54
elsif ($FLAVOR =~ /CE/)
    {
55 56 57 58 59
    # sanity check
    die '%OSVERSION% is not defined'	if (!defined($ENV{'OSVERSION'}));
    die '%PLATFORM% is not defined'	if (!defined($ENV{'PLATFORM'}));
    die '%TARGETCPU% is not defined'	if (!defined($ENV{'TARGETCPU'}));

60 61 62
    #
    # Idea behind this is to mimic flags set by eVC++ IDE...
    #
63 64
    $wcevers = $ENV{'OSVERSION'};			# WCENNN
    die '%OSVERSION% value is insane'	if ($wcevers !~ /^WCE([1-9])([0-9]{2})$/);
65 66
    $wcecdefs = "-D_WIN32_WCE=$1$2 -DUNDER_CE=$1$2";	# -D_WIN32_WCE=NNN
    $wcelflag = "/subsystem:windowsce,$1.$2";		# ...,N.NN
67

68 69
    $wceplatf =  $ENV{'PLATFORM'};
    $wceplatf =~ tr/a-z0-9 /A-Z0-9_/d;
70
    $wcecdefs .= " -DWCE_PLATFORM_$wceplatf";
71

72 73
    $wcetgt = $ENV{'TARGETCPU'};	# just shorter name...
    SWITCH: for($wcetgt) {
74 75
	/^X86/		&& do {	$wcecdefs.=" -Dx86 -D_X86_ -D_i386_ -Di_386_";
				$wcelflag.=" /machine:IX86";	last; };
76
	/^ARMV4[IT]/	&& do { $wcecdefs.=" -DARM -D_ARM_ -D$wcetgt";
77 78 79 80
				$wcecdefs.=" -DTHUMB -D_THUMB_" if($wcetgt=~/T$/);
				$wcecdefs.=" -QRarch4T -QRinterwork-return";
				$wcelflag.=" /machine:THUMB";	last; };
	/^ARM/		&& do {	$wcecdefs.=" -DARM -D_ARM_ -D$wcetgt";
A
Andy Polyakov 已提交
81
				$wcelflag.=" /machine:ARM";	last; };
82 83 84 85 86 87 88 89 90 91
	/^MIPSIV/	&& do {	$wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
				$wcecdefs.=" -D_MIPS64 -QMmips4 -QMn32";
				$wcelflag.=" /machine:MIPSFPU";	last; };
	/^MIPS16/	&& do {	$wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
				$wcecdefs.=" -DMIPSII -QMmips16";
				$wcelflag.=" /machine:MIPS16";	last; };
	/^MIPSII/	&& do {	$wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
				$wcecdefs.=" -QMmips2";
				$wcelflag.=" /machine:MIPS";	last; };
	/^R4[0-9]{3}/	&& do {	$wcecdefs.=" -DMIPS -D_MIPS_ -DR4000";
A
Andy Polyakov 已提交
92
				$wcelflag.=" /machine:MIPS";	last; };
93
	/^SH[0-9]/	&& do {	$wcecdefs.=" -D$wcetgt -D_$wcetgt_ -DSHx";
94
				$wcecdefs.=" -Qsh4" if ($wcetgt =~ /^SH4/);
A
Andy Polyakov 已提交
95
				$wcelflag.=" /machine:$wcetgt";	last; };
96
	{ $wcecdefs.=" -D$wcetgt -D_$wcetgt_";
A
Andy Polyakov 已提交
97
	  $wcelflag.=" /machine:$wcetgt";			last; };
98
    }
99 100

    $cc='$(CC)';
101
    $base_cflags=' /W3 /WX /GF /Gy /nologo -DUNICODE -D_UNICODE -DOPENSSL_SYSNAME_WINCE -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -DDSO_WIN32 -DNO_CHMOD -DOPENSSL_SMALL_FOOTPRINT';
102
    $base_cflags.=" $wcecdefs";
A
Andy Polyakov 已提交
103 104
    $base_cflags.=' -I$(WCECOMPAT)/include'		if (defined($ENV{'WCECOMPAT'}));
    $base_cflags.=' -I$(PORTSDK_LIBPATH)/../../include'	if (defined($ENV{'PORTSDK_LIBPATH'}));
105 106
    $opt_cflags=' /MC /O1i';	# optimize for space, but with intrinsics...
    $dbg_clfags=' /MC /Od -DDEBUG -D_DEBUG';
107
    $lflags="/nologo /opt:ref $wcelflag";
108 109
    }
else	# Win32
110
    {
111
    $base_cflags= " $mf_cflag";
A
Andy Polyakov 已提交
112 113
    my $f = $shlib?' /MD':' /MT';
    $lib_cflag='/Zl' if (!$shlib);	# remove /DEFAULTLIBs from static lib
114 115
    $opt_cflags=$f.' /Ox /O2 /Ob2';
    $dbg_cflags=$f.'d /Od -DDEBUG -D_DEBUG';
A
Andy Polyakov 已提交
116
    $lflags="/nologo /subsystem:console /opt:ref";
117
    }
118
$mlflags='';
119

120 121
$out_def="out32"; $out_def.='_$(TARGETCPU)' if ($FLAVOR =~ /CE/);
$tmp_def="tmp32"; $tmp_def.='_$(TARGETCPU)' if ($FLAVOR =~ /CE/);
122 123
$inc_def="inc32";

124 125
if ($debug)
	{
126
	$cflags=$dbg_cflags.$base_cflags;
127 128 129
	$lflags.=" /debug";
	$mlflags.=' /debug';
	}
130 131 132 133
else
	{
	$cflags=$opt_cflags.$base_cflags;
	}
134

135
$obj='.obj';
136
$asm_suffix='.asm';
137 138 139 140
$ofile="/Fo";

# EXE linking stuff
$link="link";
D
 
Dr. Stephen Henson 已提交
141
$rsc="rc";
142 143
$efile="/out:";
$exep='.exe';
144 145
if ($no_sock)		{ $ex_libs=''; }
elsif ($FLAVOR =~ /CE/)	{ $ex_libs='winsock.lib'; }
146
else			{ $ex_libs='ws2_32.lib'; }
147 148

if ($FLAVOR =~ /CE/)
149
	{
150 151
	$ex_libs.=' $(WCECOMPAT)/lib/wcecompatex.lib'	if (defined($ENV{'WCECOMPAT'}));
	$ex_libs.=' $(PORTSDK_LIBPATH)/portlib.lib'	if (defined($ENV{'PORTSDK_LIBPATH'}));
152 153
	$ex_libs.=' /nodefaultlib:oldnames.lib coredll.lib corelibc.lib' if ($ENV{'TARGETCPU'} eq "X86");
	}
154 155 156 157
else
	{
	$ex_libs.=' gdi32.lib advapi32.lib user32.lib';
	$ex_libs.=' bufferoverflowu.lib' if ($FLAVOR =~ /WIN64/);
158 159 160
	# WIN32 UNICODE build gets linked with unicows.lib for
	# backward compatibility with Win9x.
	$ex_libs="unicows.lib $ex_libs" if ($FLAVOR =~ /WIN32/ and $cflags =~ /\-DUNICODE/);
161 162
	}

163 164 165 166 167 168 169 170 171
# static library stuff
$mklib='lib';
$ranlib='';
$plib="";
$libp=".lib";
$shlibp=($shlib)?".dll":".lib";
$lfile='/out:';

$shlib_ex_obj="";
172
$app_ex_obj="setargv.obj" if ($FLAVOR !~ /CE/);
173 174 175 176 177 178 179 180 181
if ($FLAVOR =~ /WIN64A/) {
	$asm='ml64 /c /Cp /Cx';
	$asm.=" /Zi" if $debug;
	$afile='/Fo';
} elsif ($FLAVOR =~ /WIN64I/) {
	$asm='ias';
	$asm.=" -d debug" if $debug;
	$afile="-o ";
} elsif ($nasm) {
182 183
	my $ver=`nasm -v 2>NUL`;
	my $vew=`nasmw -v 2>NUL`;
184 185
	# pick newest version
	$asm=($ver gt $vew?"nasm":"nasmw")." -f win32";
186
	$asmtype="win32n";
187 188 189 190 191
	$afile='-o ';
} else {
	$asm='ml /Cp /coff /c /Cx';
	$asm.=" /Zi" if $debug;
	$afile='/Fo';
192
	$asmtype="win32";
193
}
194

195 196
$bn_asm_obj='';
$bn_asm_src='';
197 198 199 200 201 202 203
$des_enc_obj='';
$des_enc_src='';
$bf_enc_obj='';
$bf_enc_src='';

if (!$no_asm)
	{
204 205 206 207 208 209 210 211 212 213 214 215 216
	win32_import_asm($mf_bn_asm, "bn", \$bn_asm_obj, \$bn_asm_src);
	win32_import_asm($mf_aes_asm, "aes", \$aes_asm_obj, \$aes_asm_src);
	win32_import_asm($mf_des_asm, "des", \$des_enc_obj, \$des_enc_src);
	win32_import_asm($mf_bf_asm, "bf", \$bf_enc_obj, \$bf_enc_src);
	win32_import_asm($mf_cast_asm, "cast", \$cast_enc_obj, \$cast_enc_src);
	win32_import_asm($mf_rc4_asm, "rc4", \$rc4_enc_obj, \$rc4_enc_src);
	win32_import_asm($mf_rc5_asm, "rc5", \$rc5_enc_obj, \$rc5_enc_src);
	win32_import_asm($mf_md5_asm, "md5", \$md5_asm_obj, \$md5_asm_src);
	win32_import_asm($mf_sha_asm, "sha", \$sha1_asm_obj, \$sha1_asm_src);
	win32_import_asm($mf_rmd_asm, "ripemd", \$rmd160_asm_obj, \$rmd160_asm_src);
	win32_import_asm($mf_wp_asm, "whrlpool", \$whirlpool_asm_obj, \$whirlpool_asm_src);
	win32_import_asm($mf_cpuid_asm, "", \$cpuid_asm_obj, \$cpuid_asm_src);
	$perl_asm = 1;
217 218
	}

219
if ($shlib && $FLAVOR !~ /CE/)
220 221
	{
	$mlflags.=" $lflags /dll";
222
	$lib_cflag=" -D_WINDLL";
223 224
	$out_def="out32dll";
	$tmp_def="tmp32dll";
A
Andy Polyakov 已提交
225 226 227 228
	#
	# Engage Applink...
	#
	$app_ex_obj.=" \$(OBJ_D)\\applink.obj /implib:\$(TMP_D)\\junk.lib";
229
	$cflags.=" -DOPENSSL_USE_APPLINK -I.";
A
Andy Polyakov 已提交
230 231 232 233 234 235
	# I'm open for better suggestions than overriding $banner...
	$banner=<<'___';
	@echo Building OpenSSL

$(OBJ_D)\applink.obj:	ms\applink.c
	$(CC) /Fo$(OBJ_D)\applink.obj $(APP_CFLAGS) -c ms\applink.c
236
$(OBJ_D)\uplink.obj:	ms\uplink.c ms\applink.c
A
Andy Polyakov 已提交
237 238 239 240 241 242 243 244
	$(CC) /Fo$(OBJ_D)\uplink.obj $(SHLIB_CFLAGS) -c ms\uplink.c
$(INCO_D)\applink.c:	ms\applink.c
	$(CP) ms\applink.c $(INCO_D)\applink.c

EXHEADER= $(EXHEADER) $(INCO_D)\applink.c

LIBS_DEP=$(LIBS_DEP) $(OBJ_D)\applink.obj
CRYPTOOBJ=$(OBJ_D)\uplink.obj $(CRYPTOOBJ)
245 246 247
___
	$banner.=<<'___' if ($FLAVOR =~ /WIN64/);
CRYPTOOBJ=ms\uptable.obj $(CRYPTOOBJ)
A
Andy Polyakov 已提交
248
___
249
	}
250 251 252
elsif ($shlib && $FLAVOR =~ /CE/)
	{
	$mlflags.=" $lflags /dll";
253
	$lflags.=' /entry:mainCRTstartup' if(defined($ENV{'PORTSDK_LIBPATH'}));
254 255 256 257
	$lib_cflag=" -D_WINDLL -D_DLL";
	$out_def='out32dll_$(TARGETCPU)';
	$tmp_def='tmp32dll_$(TARGETCPU)';
	}
258

259 260
$cflags.=" /Fd$out_def";

261 262 263
sub do_lib_rule
	{
	local($objs,$target,$name,$shlib)=@_;
D
Dr. Stephen Henson 已提交
264
	local($ret);
265 266

	$taget =~ s/\//$o/g if $o ne '/';
D
Dr. Stephen Henson 已提交
267 268 269 270 271
	if ($name ne "")
		{
		$name =~ tr/a-z/A-Z/;
		$name = "/def:ms/${name}.def";
		}
272

273
#	$target="\$(LIB_D)$o$target";
274 275 276 277
	$ret.="$target: $objs\n";
	if (!$shlib)
		{
#		$ret.="\t\$(RM) \$(O_$Name)\n";
278
		$ex =' ';
279
		$ret.="\t\$(MKLIB) $lfile$target @<<\n  $objs $ex\n<<\n";
280 281 282
		}
	else
		{
D
Dr. Stephen Henson 已提交
283 284
		local($ex)=($target =~ /O_CRYPTO/)?'':' $(L_CRYPTO)';
		if ($name eq "")
285 286 287
			{
			$ex.=' bufferoverflowu.lib' if ($FLAVOR =~ /WIN64/);
			}
D
Dr. Stephen Henson 已提交
288
		elsif ($FLAVOR =~ /CE/)
289
			{
290 291 292
			$ex.=' winsock.lib';
			$ex.=' $(WCECOMPAT)/lib/wcecompatex.lib' if (defined($ENV{'WCECOMPAT'}));
			$ex.=' $(PORTSDK_LIBPATH)/portlib.lib'	 if (defined($ENV{'PORTSDK_LIBPATH'}));
293 294 295 296
			}
		else
			{
			$ex.=' unicows.lib' if ($FLAVOR =~ /NT/);
297
			$ex.=' ws2_32.lib gdi32.lib advapi32.lib user32.lib';
298 299
			$ex.=' bufferoverflowu.lib' if ($FLAVOR =~ /WIN64/);
			}
D
Dr. Stephen Henson 已提交
300
		$ex.=" $zlib_lib" if $zlib_opt == 1 && $target =~ /O_CRYPTO/;
D
Dr. Stephen Henson 已提交
301
		$ret.="\t\$(LINK) \$(MLFLAGS) $efile$target $name @<<\n  \$(SHLIB_EX_OBJ) $objs $ex\n<<\n";
302
        $ret.="\tIF EXIST \$@.manifest mt -nologo -manifest \$@.manifest -outputresource:\$@;2\n\n";
303 304 305 306 307 308 309 310 311 312 313 314 315
		}
	$ret.="\n";
	return($ret);
	}

sub do_link_rule
	{
	local($target,$files,$dep_libs,$libs)=@_;
	local($ret,$_);
	
	$file =~ s/\//$o/g if $o ne '/';
	$n=&bname($targer);
	$ret.="$target: $files $dep_libs\n";
D
Dr. Stephen Henson 已提交
316 317
	$ret.="\t\$(LINK) \$(LFLAGS) $efile$target @<<\n";
	$ret.="  \$(APP_EX_OBJ) $files $libs\n<<\n";
318
    $ret.="\tIF EXIST \$@.manifest mt -nologo -manifest \$@.manifest -outputresource:\$@;1\n\n";
319 320 321
	return($ret);
	}

322 323 324 325 326 327 328 329 330 331 332 333 334 335
sub win32_import_asm
	{
	my ($mf_var, $asm_name, $oref, $sref) = @_;
	my $asm_dir;
	if ($asm_name eq "")
		{
		$asm_dir = "crypto\\";
		}
	else
		{
		$asm_dir = "crypto\\$asm_name\\asm\\";
		}

	$$oref = "";
336
	$mf_var =~ s/\.o$/.obj/g;
337 338 339 340 341 342 343 344 345 346 347 348

	foreach (split(/ /, $mf_var))
		{
		$$oref .= $asm_dir . $_ . " ";
		}
	$$oref =~ s/ $//;
	$$sref = $$oref;
	$$sref =~ s/\.obj/.asm/g;

	}


349
1;