This repository has been archived on 2020-01-19. You can view files and clone it, but cannot push or open issues/pull-requests.
mkp224o/matrix-build.sh

13 lines
287 B
Bash
Executable File

#!/bin/sh
set -e
for implementation in ref10 amd64-51-30k amd64-64-24k donna donna-sse2; do
./configure \
--enable-${implementation} \
--enable-binsearch=yes
make -j 4
strip mkp224o
mv mkp224o /usr/local/bin/mkp224o-${implementation}
make clean
done