Ilya Zakharevich on Sat, 22 May 1999 03:35:17 -0400 (EDT)


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

2.0.15: Problems


I'm on Solaris 7 with WorkShop Compilers 5.0 98/12/15 C 5.0.

After I correct the problems (meaningless casts in lvalues) of galois
file, everything compiles OK, and static test runs OK, but dynamic
test does not work at all:

  > ./o.solaris-sparcv9/gp-dyn
  Illegal instruction (core dumped)

Moreover, redirection of PARI error messages (via the replacable
handlers for printing an error line and for fflushing) does not work,
which breaks a build of Math::Pari Perl module.  Can somebody guess
which edit could cause the latter behaviour?

Ilya

P.S.  Here is yet another tiny patch for gnuplotting:

--- ./src/graph/plotgnuplot.c~	Thu May 20 13:05:08 1999
+++ ./src/graph/plotgnuplot.c	Sat May 22 03:33:46 1999
@@ -150,7 +150,7 @@ term_set(char *s)
   strncpy(pari_plot.name,s,t-s);
   pari_plot.name[t-s] = '\0';
   if (!termset( pari_plot.name ))
-      err(talker,"error setting terminal \"\%s\"", pari_plot.name);
+      err(talker,"error setting terminal \"%s\"", pari_plot.name);
 
   /* *Needed*, say, by gif output: */
   set_options_from(t);