summaryrefslogtreecommitdiff
path: root/ms
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-07 15:00:45 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-09 11:09:26 +0100
commit0a4edb931b883b9973721ae012e60c028387dd50 (patch)
tree730cc054212d09f0de3637da7c800650b96bed04 /ms
parent184bc45f683c76531d7e065b6553ca9086564576 (diff)
downloadopenssl-new-0a4edb931b883b9973721ae012e60c028387dd50.tar.gz
Unified - adapt the generation of cpuid, uplink and buildinf to use GENERATE
This gets rid of the BEGINRAW..ENDRAW sections in crypto/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 <appro@openssl.org>
Diffstat (limited to 'ms')
-rwxr-xr-xms/uplink-x86.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/ms/uplink-x86.pl b/ms/uplink-x86.pl
index 53b998d270..4a2f042c34 100755
--- a/ms/uplink-x86.pl
+++ b/ms/uplink-x86.pl
@@ -6,6 +6,9 @@ require "x86asm.pl";
require "uplink-common.pl";
+$output = pop;
+open STDOUT,">$output";
+
&asm_init($ARGV[0],"uplink-x86");
&external_label("OPENSSL_Uplink");
@@ -31,3 +34,5 @@ for ($i=1;$i<=$N;$i++) {
&data_word(&label("_\$lazy${i}"));
}
&asm_finish();
+
+close OUTPUT;