- make scripts executable; - "parameterize" platform selection in c6x/do_fips; - add c6x/fips_algvs.mak; - add c6x/run6x.js launcher for more recent CCS versions; Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Stephen Henson <steve@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4265)
12 lines
281 B
Bash
Executable file
12 lines
281 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if ! which cl6x > /dev/null 2>&1; then
|
|
echo 'fatal: cl6x is not on $PATH'
|
|
exit 1
|
|
fi
|
|
|
|
perl Configure ${C6XPLATFORM:-c64xplus} fipscanisteronly no-engine
|
|
perl util/mkfiles.pl > MINFO
|
|
perl util/mk1mf.pl auto > c6x/fips.mak
|
|
make -f c6x/fips.mak
|
|
make -f c6x/fips_algvs.mak
|