VC-32.pl 9.8 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 18 19
# Santize -L options for ms link
$l_flags =~ s/-L("\[^"]+")/\/libpath:$1/g;
$l_flags =~ s/-L(\S+)/\/libpath:$1/g;

20 21
# C compiler stuff
$cc='cl';
22 23 24 25 26 27 28 29 30 31
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
32
    # per 0.9.8 release remaining warnings were explicitly examined and
33 34
    # considered safe to ignore.
    # 
35
    $base_cflags= " $mf_cflag";
A
Andy Polyakov 已提交
36 37
    my $f = $shlib?' /MD':' /MT';
    $lib_cflag='/Zl' if (!$shlib);	# remove /DEFAULTLIBs from static lib
38 39
    $opt_cflags=$f.' /Ox';
    $dbg_cflags=$f.'d /Od -DDEBUG -D_DEBUG';
40
    $lflags="/nologo /subsystem:console /opt:ref";
41 42 43 44 45 46 47 48

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

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

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

___
	}
57
    }
58 59
elsif ($FLAVOR =~ /CE/)
    {
60 61 62 63 64
    # 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'}));

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

73 74
    $wceplatf =  $ENV{'PLATFORM'};
    $wceplatf =~ tr/a-z0-9 /A-Z0-9_/d;
75
    $wcecdefs .= " -DWCE_PLATFORM_$wceplatf";
76

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

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

125 126 127 128
$out_def ="out32";	$out_def.="dll"			if ($shlib);
			$out_def.='_$(TARGETCPU)'	if ($FLAVOR =~ /CE/);
$tmp_def ="tmp32";	$tmp_def.="dll"			if ($shlib);
			$tmp_def.='_$(TARGETCPU)'	if ($FLAVOR =~ /CE/);
129 130
$inc_def="inc32";

131 132
if ($debug)
	{
133
	$cflags=$dbg_cflags.$base_cflags;
134
	}
135 136 137 138
else
	{
	$cflags=$opt_cflags.$base_cflags;
	}
139

140 141 142 143 144
# generate symbols.pdb unconditionally
$app_cflag.=" /Zi /Fd$tmp_def/app";
$lib_cflag.=" /Zi /Fd$tmp_def/lib";
$lflags.=" /debug";

145
$obj='.obj';
146
$asm_suffix='.asm';
147 148 149 150
$ofile="/Fo";

# EXE linking stuff
$link="link";
D
 
Dr. Stephen Henson 已提交
151
$rsc="rc";
152 153
$efile="/out:";
$exep='.exe';
154 155
if ($no_sock)		{ $ex_libs=''; }
elsif ($FLAVOR =~ /CE/)	{ $ex_libs='winsock.lib'; }
156
else			{ $ex_libs='ws2_32.lib'; }
157 158

if ($FLAVOR =~ /CE/)
159
	{
160 161
	$ex_libs.=' $(WCECOMPAT)/lib/wcecompatex.lib'	if (defined($ENV{'WCECOMPAT'}));
	$ex_libs.=' $(PORTSDK_LIBPATH)/portlib.lib'	if (defined($ENV{'PORTSDK_LIBPATH'}));
162 163
	$ex_libs.=' /nodefaultlib:oldnames.lib coredll.lib corelibc.lib' if ($ENV{'TARGETCPU'} eq "X86");
	}
164 165
else
	{
166
	$ex_libs.=' gdi32.lib advapi32.lib crypt32.lib user32.lib';
167
	$ex_libs.=' bufferoverflowu.lib' if ($FLAVOR =~ /WIN64/ and `cl 2>&1` =~ /14\.00\.4[0-9]{4}\./);
168 169 170
	# 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/);
171 172
	}

173
# static library stuff
D
Dr. Stephen Henson 已提交
174
$mklib='lib /nologo';
175 176 177 178 179 180 181
$ranlib='';
$plib="";
$libp=".lib";
$shlibp=($shlib)?".dll":".lib";
$lfile='/out:';

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

207 208
$bn_asm_obj='';
$bn_asm_src='';
209 210 211 212 213 214 215
$des_enc_obj='';
$des_enc_src='';
$bf_enc_obj='';
$bf_enc_src='';

if (!$no_asm)
	{
216 217 218 219 220 221 222 223 224 225 226 227 228
	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;
229 230
	}

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

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

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

279
#	$target="\$(LIB_D)$o$target";
280 281 282 283
	$ret.="$target: $objs\n";
	if (!$shlib)
		{
#		$ret.="\t\$(RM) \$(O_$Name)\n";
284
		$ret.="\t\$(MKLIB) $lfile$target @<<\n  $objs\n<<\n";
285 286 287
		}
	else
		{
D
Dr. Stephen Henson 已提交
288
		local($ex)=($target =~ /O_CRYPTO/)?'':' $(L_CRYPTO)';
D
Dr. Stephen Henson 已提交
289
		$ex.=" $zlib_lib" if $zlib_opt == 1 && $target =~ /O_CRYPTO/;
290 291
		$ret.="\t\$(LINK) \$(MLFLAGS) $efile$target $name @<<\n  \$(SHLIB_EX_OBJ) $objs $ex \$(EX_LIBS)\n<<\n";
		$ret.="\tIF EXIST \$@.manifest mt -nologo -manifest \$@.manifest -outputresource:\$@;2\n\n";
292 293 294 295 296 297 298 299 300 301 302 303 304
		}
	$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 已提交
305 306
	$ret.="\t\$(LINK) \$(LFLAGS) $efile$target @<<\n";
	$ret.="  \$(APP_EX_OBJ) $files $libs\n<<\n";
307
	$ret.="\tIF EXIST \$@.manifest mt -nologo -manifest \$@.manifest -outputresource:\$@;1\n\n";
308 309 310
	return($ret);
	}

311 312 313 314 315 316 317 318 319 320 321 322 323 324
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 = "";
325
	$mf_var =~ s/\.o$/.obj/g;
326 327 328 329 330 331 332 333 334 335 336 337

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

	}


338
1;