|
From: Raymond T. <rt...@us...> - 2012-03-10 18:51:36
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "matlisp".
The branch, master has been updated
via 4d23b62fbced07e732614e290a08e90a731942ab (commit)
via 579b17087f685d198095ef8616a6374ed59d6848 (commit)
from ec16280b56855cff043ec1fc6bbddc11cf2cebca (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4d23b62fbced07e732614e290a08e90a731942ab
Merge: 579b170 ec16280
Author: Raymond Toy <toy...@gm...>
Date: Sat Mar 10 10:51:20 2012 -0800
Merge branch 'master' of ssh://matlisp.git.sourceforge.net/gitroot/matlisp/matlisp
commit 579b17087f685d198095ef8616a6374ed59d6848
Author: Raymond Toy <toy...@gm...>
Date: Sat Mar 10 10:48:02 2012 -0800
Fix f77 name mangling and have the ATLAS test program print out the
actual results on failure.
f77_name__ doesn't mean append two underscores. It maeans append one,
and internal underscores are doubled.
diff --git a/configure.ac b/configure.ac
index a5e5e1e..41a9f22 100644
--- a/configure.ac
+++ b/configure.ac
@@ -365,13 +365,13 @@ if test x"$atlas" = xtrue; then
F77*) case $f77_name in
F77_NAME) ZDOTU="ZDOTU" ;;
F77_NAME_) ZDOTU="ZDOTU_" ;;
- F77_NAME__) ZDOTU="ZDOTU__" ;;
+ F77_NAME__) ZDOTU="ZDOTU_" ;;
esac
;;
f77*) case $f77_name in
f77_name) ZDOTU="zdotu" ;;
f77_name_) ZDOTU="zdotu_" ;;
- f77_name__) ZDOTU="zdotu__" ;;
+ f77_name__) ZDOTU="zdotu_" ;;
esac
;;
esac
@@ -403,6 +403,7 @@ int main()
if (fabs(out[0] - 5) < 1e-10) {
rc = 0;
} else {
+ printf("Actual output = %lg, %lg, instead of 5, 0\n", out[0], out[1]);
rc = 1;
}
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
matlisp
|