Build system: VC-WIN64I fixups.
Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
bb6b950e1c
commit
b75ac3c2a3
@ -1274,7 +1274,7 @@ sub vc_wince_info {
|
|||||||
asflags => "-d debug",
|
asflags => "-d debug",
|
||||||
asoutflag => "-o",
|
asoutflag => "-o",
|
||||||
sys_id => "WIN64I",
|
sys_id => "WIN64I",
|
||||||
rc4_asm_src => "",
|
bn_asm_src => sub { my $r=join(" ",@_); $r=~s|bn-ia64.s|bn_asm.c|; $r; },
|
||||||
perlasm_scheme => "ias",
|
perlasm_scheme => "ias",
|
||||||
},
|
},
|
||||||
"VC-WIN64A" => {
|
"VC-WIN64A" => {
|
||||||
|
@ -272,7 +272,7 @@ $target: $args{generator}->[0] $deps
|
|||||||
set ASM=\$(AS)
|
set ASM=\$(AS)
|
||||||
set CC=\$(CC)
|
set CC=\$(CC)
|
||||||
$generator \$@.S
|
$generator \$@.S
|
||||||
\$(CC) \$(CFLAGS) $incs /EP /C \$@.S > \$@
|
\$(CC) \$(CFLAGS) $incs /EP /C \$@.S > \$@.i && move /Y \$@.i \$@
|
||||||
del /Q \$@.S
|
del /Q \$@.S
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
@ -286,7 +286,7 @@ EOF
|
|||||||
}
|
}
|
||||||
return <<"EOF";
|
return <<"EOF";
|
||||||
$target: $args{generator}->[0] $deps
|
$target: $args{generator}->[0] $deps
|
||||||
\$(CC) \$(CFLAGS) $incs /EP /C \$< > \$@
|
\$(CC) \$(CFLAGS) $incs /EP /C $args{generator}->[0] > \$@.i && move /Y \$@.i \$@
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,11 @@ GENERATE[md5-x86_64.s]=asm/md5-x86_64.pl $(PERLASM_SCHEME)
|
|||||||
GENERATE[md5-sparcv9.S]=asm/md5-sparcv9.pl $(PERLASM_SCHEME)
|
GENERATE[md5-sparcv9.S]=asm/md5-sparcv9.pl $(PERLASM_SCHEME)
|
||||||
INCLUDE[md5-sparcv9.o]=..
|
INCLUDE[md5-sparcv9.o]=..
|
||||||
|
|
||||||
|
BEGINRAW[makefile(windows)]
|
||||||
|
{- $builddir -}\md5-ia64.asm: {- $sourcedir -}\asm\md5-ia64.S
|
||||||
|
$(CC) $(CFLAGS) -EP {- $sourcedir -}\asm\md5-ia64.S > $@.i && move /Y $@.i $@
|
||||||
|
ENDRAW[makefile(windows)]
|
||||||
|
|
||||||
BEGINRAW[Makefile]
|
BEGINRAW[Makefile]
|
||||||
{- $builddir -}/md5-ia64.s: {- $sourcedir -}/asm/md5-ia64.S
|
{- $builddir -}/md5-ia64.s: {- $sourcedir -}/asm/md5-ia64.S
|
||||||
$(CC) $(CFLAGS) -E {- $sourcedir -}/asm/md5-ia64.S | \
|
$(CC) $(CFLAGS) -E {- $sourcedir -}/asm/md5-ia64.S | \
|
||||||
|
@ -10,10 +10,17 @@ GENERATE[rc4-md5-x86_64.s]=asm/rc4-md5-x86_64.pl $(PERLASM_SCHEME)
|
|||||||
|
|
||||||
GENERATE[rc4-parisc.s]=asm/rc4-parisc.pl $(PERLASM_SCHEME)
|
GENERATE[rc4-parisc.s]=asm/rc4-parisc.pl $(PERLASM_SCHEME)
|
||||||
|
|
||||||
|
BEGINRAW[makefile(windows)]
|
||||||
|
{- $builddir -}\rc4-ia64.asm: {- $sourcedir -}\asm\rc4-ia64.pl
|
||||||
|
$(PERL) {- $sourcedir -}\asm\rc4-ia64.pl $@.S
|
||||||
|
$(CC) -DSZ=4 -EP $@.S > $@.i && move /Y $@.i $@
|
||||||
|
del /Q $@.S
|
||||||
|
ENDRAW[makefile(windows)]
|
||||||
|
|
||||||
BEGINRAW[Makefile]
|
BEGINRAW[Makefile]
|
||||||
{- $builddir -}/rc4-ia64.s: {- $sourcedir -}/asm/rc4-ia64.pl
|
{- $builddir -}/rc4-ia64.s: {- $sourcedir -}/asm/rc4-ia64.pl
|
||||||
@(trap "rm $@.*" INT 0; \
|
@(trap "rm $@.*" INT 0; \
|
||||||
perl $< $(CFLAGS) $(LIB_CFLAGS) $@.S; \
|
$(PERL) $< $(CFLAGS) $(LIB_CFLAGS) $@.S; \
|
||||||
case `awk '/^#define RC4_INT/{print$$NF}' $(BLDDIR)/include/openssl/opensslconf.h` in \
|
case `awk '/^#define RC4_INT/{print$$NF}' $(BLDDIR)/include/openssl/opensslconf.h` in \
|
||||||
int) set -x; $(CC) $(CFLAGS) $(LIB_CFLAGS) -DSZ=4 -E $@.S > $@.i && mv -f $@.i $@;; \
|
int) set -x; $(CC) $(CFLAGS) $(LIB_CFLAGS) -DSZ=4 -E $@.S > $@.i && mv -f $@.i $@;; \
|
||||||
char) set -x; $(CC) $(CFLAGS) $(LIB_CFLAGS) -DSZ=1 -E $@.S > $@.i && mv -f $@.i $@;; \
|
char) set -x; $(CC) $(CFLAGS) $(LIB_CFLAGS) -DSZ=1 -E $@.S > $@.i && mv -f $@.i $@;; \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user