From df0cb57ca3528ed0dd5ba47e77d724dc761a454d Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 7 Mar 2016 15:46:17 +0100 Subject: Unified - adapt the generation of chacha assembler to use GENERATE This gets rid of the BEGINRAW..ENDRAW sections in crypto/chacha/build.info. This also moves the assembler generating perl scripts to take the output file name as last command line argument, where necessary. Reviewed-by: Andy Polyakov --- crypto/chacha/asm/chacha-x86.pl | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'crypto/chacha/asm/chacha-x86.pl') diff --git a/crypto/chacha/asm/chacha-x86.pl b/crypto/chacha/asm/chacha-x86.pl index 850c917264..8b9696ff02 100755 --- a/crypto/chacha/asm/chacha-x86.pl +++ b/crypto/chacha/asm/chacha-x86.pl @@ -31,6 +31,9 @@ $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; push(@INC,"${dir}","${dir}../../perlasm"); require "x86asm.pl"; +$output=pop; +open STDOUT,">$output"; + &asm_init($ARGV[0],"chacha-x86.pl",$ARGV[$#ARGV] eq "386"); $xmm=$ymm=0; @@ -1130,3 +1133,5 @@ sub XOPROUND { } &asm_finish(); + +close STDOUT; -- cgit v1.2.3