VC-32.pl 10.3 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

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

	$bname =~ s/(.*)\.[^\.]$/$1/;
	$ret=<<___;
\$(TMP_D)$o$bname.asm: $source
45
	set ASM=\$(ASM)
46 47 48 49 50 51 52
	\$(PERL) $source \$\@

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

___
	}
53
    }
54 55
elsif ($FLAVOR =~ /CE/)
    {
56 57 58 59 60
    # 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'}));

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

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

73 74
    $wcetgt = $ENV{'TARGETCPU'};	# just shorter name...
    SWITCH: for($wcetgt) {
75 76
	/^X86/		&& do {	$wcecdefs.=" -Dx86 -D_X86_ -D_i386_ -Di_386_";
				$wcelflag.=" /machine:IX86";	last; };
77
	/^ARMV4[IT]/	&& do { $wcecdefs.=" -DARM -D_ARM_ -D$wcetgt";
78 79 80 81
				$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 已提交
82
				$wcelflag.=" /machine:ARM";	last; };
83 84 85 86 87 88 89 90 91 92
	/^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 已提交
93
				$wcelflag.=" /machine:MIPS";	last; };
94
	/^SH[0-9]/	&& do {	$wcecdefs.=" -D$wcetgt -D_$wcetgt_ -DSHx";
95
				$wcecdefs.=" -Qsh4" if ($wcetgt =~ /^SH4/);
A
Andy Polyakov 已提交
96
				$wcelflag.=" /machine:$wcetgt";	last; };
97
	{ $wcecdefs.=" -D$wcetgt -D_$wcetgt_";
A
Andy Polyakov 已提交
98
	  $wcelflag.=" /machine:$wcetgt";			last; };
99
    }
100 101

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

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

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

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

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

if ($FLAVOR =~ /CE/)
150
	{
151 152
	$ex_libs.=' $(WCECOMPAT)/lib/wcecompatex.lib'	if (defined($ENV{'WCECOMPAT'}));
	$ex_libs.=' $(PORTSDK_LIBPATH)/portlib.lib'	if (defined($ENV{'PORTSDK_LIBPATH'}));
153 154
	$ex_libs.=' /nodefaultlib:oldnames.lib coredll.lib corelibc.lib' if ($ENV{'TARGETCPU'} eq "X86");
	}
155 156
else
	{
157
	$ex_libs.=' gdi32.lib advapi32.lib crypt32.lib user32.lib';
158
	$ex_libs.=' bufferoverflowu.lib' if ($FLAVOR =~ /WIN64/);
159 160 161
	# 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/);
162 163
	}

164
# static library stuff
D
Dr. Stephen Henson 已提交
165
$mklib='lib /nologo';
166 167 168 169 170 171 172
$ranlib='';
$plib="";
$libp=".lib";
$shlibp=($shlib)?".dll":".lib";
$lfile='/out:';

$shlib_ex_obj="";
173
$app_ex_obj="setargv.obj" if ($FLAVOR !~ /CE/);
174
if ($FLAVOR =~ /WIN64A/) {
175
	if (`nasm -v` =~ /NASM version ([0-9]+\.[0-9]+)/ && $1 >= 2.0) {
176
		$asm='nasm -f win64 -DNEAR -Ox';
177 178 179 180 181 182 183
		$asm.=' -g' if $debug;
		$afile='-o ';
	} else {
		$asm='ml64 /c /Cp /Cx';
		$asm.=" /Zi" if $debug;
		$afile='/Fo';
	}
184 185 186 187 188
} elsif ($FLAVOR =~ /WIN64I/) {
	$asm='ias';
	$asm.=" -d debug" if $debug;
	$afile="-o ";
} elsif ($nasm) {
189 190
	my $ver=`nasm -v 2>NUL`;
	my $vew=`nasmw -v 2>NUL`;
191 192
	# pick newest version
	$asm=($ver gt $vew?"nasm":"nasmw")." -f win32";
193
	$asmtype="win32n";
194 195
	$afile='-o ';
} else {
D
Dr. Stephen Henson 已提交
196
	$asm='ml /nologo /Cp /coff /c /Cx';
197 198
	$asm.=" /Zi" if $debug;
	$afile='/Fo';
199
	$asmtype="win32";
200
}
201

202 203
$bn_asm_obj='';
$bn_asm_src='';
204 205 206 207 208 209 210
$des_enc_obj='';
$des_enc_src='';
$bf_enc_obj='';
$bf_enc_src='';

if (!$no_asm)
	{
211 212 213 214 215 216 217 218 219 220 221 222 223
	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;
224 225
	}

226
if ($shlib && $FLAVOR !~ /CE/)
227 228
	{
	$mlflags.=" $lflags /dll";
229
	$lib_cflag=" -D_WINDLL";
230 231
	$out_def="out32dll";
	$tmp_def="tmp32dll";
A
Andy Polyakov 已提交
232 233 234 235
	#
	# Engage Applink...
	#
	$app_ex_obj.=" \$(OBJ_D)\\applink.obj /implib:\$(TMP_D)\\junk.lib";
236
	$cflags.=" -DOPENSSL_USE_APPLINK -I.";
A
Andy Polyakov 已提交
237 238 239 240 241 242
	# 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
243
$(OBJ_D)\uplink.obj:	ms\uplink.c ms\applink.c
A
Andy Polyakov 已提交
244 245 246 247 248 249 250 251
	$(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)
252 253 254
___
	$banner.=<<'___' if ($FLAVOR =~ /WIN64/);
CRYPTOOBJ=ms\uptable.obj $(CRYPTOOBJ)
A
Andy Polyakov 已提交
255
___
256
	}
257 258 259
elsif ($shlib && $FLAVOR =~ /CE/)
	{
	$mlflags.=" $lflags /dll";
260
	$lflags.=' /entry:mainCRTstartup' if(defined($ENV{'PORTSDK_LIBPATH'}));
261 262 263 264
	$lib_cflag=" -D_WINDLL -D_DLL";
	$out_def='out32dll_$(TARGETCPU)';
	$tmp_def='tmp32dll_$(TARGETCPU)';
	}
265

266 267
$cflags.=" /Fd$out_def";

268 269 270
sub do_lib_rule
	{
	local($objs,$target,$name,$shlib)=@_;
D
Dr. Stephen Henson 已提交
271
	local($ret);
272 273

	$taget =~ s/\//$o/g if $o ne '/';
D
Dr. Stephen Henson 已提交
274 275 276 277 278
	if ($name ne "")
		{
		$name =~ tr/a-z/A-Z/;
		$name = "/def:ms/${name}.def";
		}
279

280
#	$target="\$(LIB_D)$o$target";
281 282 283 284
	$ret.="$target: $objs\n";
	if (!$shlib)
		{
#		$ret.="\t\$(RM) \$(O_$Name)\n";
285
		$ex =' ';
286
		$ret.="\t\$(MKLIB) $lfile$target @<<\n  $objs $ex\n<<\n";
287 288 289
		}
	else
		{
D
Dr. Stephen Henson 已提交
290 291
		local($ex)=($target =~ /O_CRYPTO/)?'':' $(L_CRYPTO)';
		if ($name eq "")
292 293
			{
			$ex.=' bufferoverflowu.lib' if ($FLAVOR =~ /WIN64/);
294 295 296 297
			if ($target =~ /capi/)
				{
				$ex.=' crypt32.lib advapi32.lib';
				}
298
			}
D
Dr. Stephen Henson 已提交
299
		elsif ($FLAVOR =~ /CE/)
300
			{
301 302 303
			$ex.=' winsock.lib';
			$ex.=' $(WCECOMPAT)/lib/wcecompatex.lib' if (defined($ENV{'WCECOMPAT'}));
			$ex.=' $(PORTSDK_LIBPATH)/portlib.lib'	 if (defined($ENV{'PORTSDK_LIBPATH'}));
304 305 306 307
			}
		else
			{
			$ex.=' unicows.lib' if ($FLAVOR =~ /NT/);
308
			$ex.=' ws2_32.lib gdi32.lib advapi32.lib user32.lib';
D
Dr. Stephen Henson 已提交
309
			$ex.=' crypt32.lib';
310
			$ex.=' cryptui.lib' if $cflags =~ /-DOPENSSL_CAPIENG_DIALOG/;
311 312
			$ex.=' bufferoverflowu.lib' if ($FLAVOR =~ /WIN64/);
			}
D
Dr. Stephen Henson 已提交
313
		$ex.=" $zlib_lib" if $zlib_opt == 1 && $target =~ /O_CRYPTO/;
D
Dr. Stephen Henson 已提交
314
		$ret.="\t\$(LINK) \$(MLFLAGS) $efile$target $name @<<\n  \$(SHLIB_EX_OBJ) $objs $ex\n<<\n";
315
        $ret.="\tIF EXIST \$@.manifest mt -nologo -manifest \$@.manifest -outputresource:\$@;2\n\n";
316 317 318 319 320 321 322 323 324 325 326 327 328
		}
	$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 已提交
329 330
	$ret.="\t\$(LINK) \$(LFLAGS) $efile$target @<<\n";
	$ret.="  \$(APP_EX_OBJ) $files $libs\n<<\n";
331
    $ret.="\tIF EXIST \$@.manifest mt -nologo -manifest \$@.manifest -outputresource:\$@;1\n\n";
332 333 334
	return($ret);
	}

335 336 337 338 339 340 341 342 343 344 345 346 347 348
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 = "";
349
	$mf_var =~ s/\.o$/.obj/g;
350 351 352 353 354 355 356 357 358 359 360 361

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

	}


362
1;