* [2016-03-20] Fix compiler error in VisualStudio with CMake
* [2016-03-22] Fix access violation on Windows while static linking
+* Paul Mustière <https://github.com/buffer51/>
+ * [2016-02-04] Fix Android build on ARMV7
+ * [2016-04-26] Android build with LAPACK for ARMV7 & ARMV8
+
+* Shivraj Patil <https://github.com/sva-img/>
+ * [2016-05-03] DGEMM optimization for MIPS P5600 and I6400 using MSA
+
+* Kaustubh Raste <https://github.com/ksraste/>
+ * [2016-05-09] DTRSM optimization for MIPS P5600 and I6400 using MSA
+ * [2016-05-20] STRSM optimization for MIPS P5600 and I6400 using MSA
++
+ * Abdelrauf <https://github.com/quickwritereader>
+ * [2017-01-01] dgemm and dtrmm kernels for IBM z13
+
++
$hostarch = "arm" if ($hostarch =~ /^arm.*/);
$hostarch = "arm64" if ($hostarch eq "aarch64");
$hostarch = "power" if ($hostarch =~ /^(powerpc|ppc).*/);
+ $hostarch = "zarch" if ($hostarch eq "s390x");
+$tmpf = new File::Temp( UNLINK => 1 );
$binary = $ENV{"BINARY"};
$makefile = shift(@ARGV);