/[cln]/ChangeLog
ViewVC logotype

Diff of /ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.101 by kreckel, Thu Aug 26 20:30:27 2004 UTC revision 1.138 by kreckel, Tue Aug 30 21:32:52 2005 UTC
# Line 1  Line 1 
1    2005-08-30  Richard B. Kreckel  <kreckel@ginac.de>
2    
3            * include/cln/modules.h (CL_JUMP_TO): Fix mips* brokenness.
4    
5    2005-08-27  Bruno Haible  <bruno@clisp.org>
6    
7            * src/integer/bitwise/cl_I_ash_I.cc (ash): Avoid shifting a 32-bit
8            zero value by more than 31 bits.
9    
10    2005-08-27  Bruno Haible  <bruno@clisp.org>
11    
12            Make the long-float overflow check work on 64-bit platforms.
13            * src/float/lfloat/cl_LF.h (LF_exp_mid, LF_exp_high): Define as
14            'unsigned int', not 'unsigned long'.
15    
16    2005-08-27  Bruno Haible  <bruno@clisp.org>
17    
18            * modules.h (CL_OUTPUT_LABEL): Work around redundant duplication
19            of basic blocks by g++ 4.0.
20            See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23345>.
21    
22    2005-08-27  Bruno Haible  <bruno@clisp.org>
23    
24            Make it possible to cross-compile CLN.
25            * m4/intparam.m4: New file.
26            * m4/floatparam.m4: New file.
27            * autoconf/aclocal.m4: Include both.
28            (CL_MACHINE): Add an additional CROSS_MACRO parameter.
29            * configure.ac (CL_MACHINE): When cross-compiling, use
30            CL_INTPARAM_CROSS and CL_FLOATPARAM_CROSS.
31    
32    2005-08-27  Bruno Haible  <bruno@clisp.org>
33    
34            Define HAVE_LONGLONG and HAVE_LONGDOUBLE when cross-compiling.
35            * autoconf/aclocal.m4 (CL_LONGLONG, CL_LONGDOUBLE): When cross-
36            compiling, use the test code from gnulib.
37    
38    2005-08-27  Bruno Haible  <bruno@clisp.org>
39    
40            * autoconf/aclocal.m4 (CL_RUSAGE): Fix error when cross-compiling.
41    
42    2005-08-16  Richard B. Kreckel  <kreckel@ginac.de>
43    
44            The patch of 2005-05-01 made it impossible to test the type of a cl_UP
45            by comparing with &cl_class_univpoly_ring. We need an alternative:
46            * include/cln/object.h (cl_class_flags_modint_ring): New #define...
47            * src/polynomial/elem/cl_UP.cc (cl_class_univpoly_ring): ...used here.
48            * src/polynomial/elem/cl_UP_GF2.h: Likewise.
49            * src/polynomial/elem/cl_UP_MI.h: Likewise.
50            * src/polynomial/elem/cl_UP_gen.h: Likewise.
51            * src/polynomial/elem/cl_UP_number.h: Likewise.
52    
53    2005-08-15  Richard B. Kreckel  <kreckel@ginac.de>
54    
55            * m4/cc.m4 (CL_AS_NOEXECSTACK): New macro...
56            * configure.ac: ...used here for setting ASMFLAGS...
57            * src/Makefile.in: ...which are used here.
58    
59    2005-08-02  Andreas Jochens  <aj@andaco.de>
60    
61            * include/cln/config.h.in: Add support for PowerPC 64 CPU.
62            * include/cln/modules.h: Likewise.
63            * include/cln/object.h: Likewise.
64            * include/cln/types.h: Likewise.
65    
66    2005-07-24  Richard B. Kreckel  <kreckel@ginac.de>
67    
68            Make out of the box build on x86_64 system with complete 32 bit
69            userland possible
70            * include/cln/config.h.in: Don't #define __x86_64__ when
71            __i386__ is defined.
72            * src/base/digitseq/cl_asm_x86_64_.cc: New file.
73            * doc/cln.tex: Revert workaround description introduced 2005-05-02.
74    
75    2005-06-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
76    
77            * Makefile.in: Don't enter nonexisting directories.
78    
79    2005-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
80    
81            Speed up the linking step
82            * src/Makefile.in: Use -objectlist for linking libcln.la.
83    
84    2005-05-15  Richard B. Kreckel  <kreckel@ginac.de>
85    
86            * autoconf/ltmain.sh: Upgrade to libtool-1.5.16.
87            * m4/libtool.m4: Upgrade to libtool-1.5.16 (without Comeau patch).
88    
89    2005-05-02  Richard B. Kreckel  <kreckel@ginac.de>
90    
91            * doc/cln.tex: Document what to do on a x86_64 machine with 32-bit
92            userland.
93    
94    2005-05-01  Richard B. Kreckel  <kreckel@ginac.de>
95    
96            Fix crashes in find_univpoly_ring and related functions
97            * include/cln/modinteger.h: Remove vptr from cl_heap_modint_ring;
98            remove declaration of cl_class cl_class_modint_ring.
99            * include/cln/univpoly.h: Remove vptr from cl_heap_univpoly_ring;
100            remove declaration of cl_class_univpoly_ring.
101            * include/cln/object.h: cl_class_flags_modint_ring: New #define...
102            * src/modinteger/cl_MI.cc: ...used in cl_class_modint_ring.
103            * src/modinteger/cl_MI_fix16.h: No vptr, but static dtor and type flag.
104            * src/modinteger/cl_MI_fix29.h: Likewise.
105            * src/modinteger/cl_MI_fix32.h: Likewise.
106            * src/modinteger/cl_MI_int32.h: Likewise.
107            * src/modinteger/cl_MI_montgom.h: Likewise.
108            * src/modinteger/cl_MI_pow2: Likewise.
109            * src/modinteger/cl_MI_pow2m1.h: Likewise.
110            * src/modinteger/cl_MI_pow2p1.h: Likewise.
111            * src/modinteger/cl_MI_std.h: Likewise.
112            * src/polynomial/elem/cl_UP.cc (cl_make_univpoly_ring): Compare with
113            cl_class_flags_modint_ring, not with cl_class_modint_ring.
114            * src/polynomial/elem/cl_UP_GF2.h (cl_class_num_univpoly_ring): New.
115            * src/polynomial/elem/cl_UP_MI.h (cl_class_modint_univpoly_ring): New.
116            * src/polynomial/elem/cl_UP_gen.h (cl_class_gen_univpoly_ring): New.
117            * src/polynomial/elem/cl_UP_number.h (cl_class_num_univpoly_ring): New.
118            Reported by Ralf Goertz <R_Goertz@web.de>.
119    
120    2005-04-29  Richard B. Kreckel  <kreckel@ginac.de>
121                Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
122    
123            * m4/cc.m4: Emit a warning if g++ is used and optimization turned off.
124    
125    2005-04-24  Richard B. Kreckel  <kreckel@ginac.de>
126    
127            Make GCC compiler flags default to -O
128            * m4/cc.m4: New file...
129            * configure.ac: ...used here.
130            * autoconf/aclocal.m4: Regenerate.
131    
132    2005-04-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
133    
134            * include/cln/string.h: Declare cl_string.
135    
136    2005-03-17  Richard B. Kreckel  <kreckel@ginac.de>
137    
138            * autoconf/ltmain.sh: Upgrade to libtool-1.5.14.
139            * m4/libtool.m4: Upgrade to libtool-1.5.14 with Comeau patch.
140            * autoconf/aclocal.m4: Regenerate.
141    
142    2005-03-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
143    
144            * src/Makefile.in: Use $CXX instead of $CC when linking.
145    
146    2005-02-27  Richard B. Kreckel  <kreckel@ginac.de>
147    
148            * examples/perfnum.cc: update to presumed 42st Mersenne prime.
149    
150    2004-11-28  Richard B. Kreckel  <kreckel@ginac.de>
151    
152            Disambiguate binary operators of CLN types with float/double
153            * include/cln/dfloat.h: Add binary operator overloads for arguments of
154            type double.
155            * include/cln/ffloat.h: Likewise, for arguments of type float.
156            * include/cln/float.h: Likewise, both for arguments of types double and
157            float.
158            * include/cln/real.h: Likewise.
159            Reported by Isidro CachadiƱa GutiĆ©rrez <icacha@unex.es>.
160    
161    2004-11-03  Richard B. Kreckel  <kreckel@ginac.de>
162    
163            * Version 1.1.9 released.
164    
165    2004-10-28  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
166    
167            * src/Makefile.in: Let config.status set LDFLAGS.
168    
169    2004-10-27  Peter Breitenlohner  <peb@mppmu.mpg.de>
170    
171            * cln.pc.in: Fix typo.
172            * Makefile.in (INSTALL_SCRIPT): Added, to be used for scripts like
173            cln-config.  Allows us to do special things to binaries, like
174            installing them with install -s.
175            * doc/Makefile.in: add/remove the cln.info from the installed
176            $(infodir)/dir unless this is debian install-info (code copied from
177            what GNU automake would produce).
178    
179    2004-10-26  Richard B. Kreckel  <kreckel@ginac.de>
180    
181            * src/integer/input/cl_I_read_stream.cc (read_integer): Fix a bug
182            that caused radix specifiers to not work when reading from a stream.
183            * src/rational/input/cl_RA_read_stream.cc (read_rational): Likewise.
184            * src/real/input/cl_R_read_stream.cc (read_real): Likewise.
185            * src/float/input/cl_F_read_stream.cc (read_float): Likewise.
186            * src/complex/input/cl_N_read_stream.cc (read_complex): Likewise.
187    
188    2004-10-25  Richard B. Kreckel  <kreckel@ginac.de>
189    
190            * src/base/cl_low.h: Add mulu64 assembler macro for ia64.
191    
192    2004-10-24  Richard B. Kreckel  <kreckel@ginac.de>
193    
194            * src/base/cl_low.h: Add mul and div macros for x86_64.
195    
196    2004-10-23  Richard B. Kreckel  <kreckel@ginac.de>
197    
198            * src/integer/conv/cl_I_from_digits.cc (digits_to_I): Fix thinko in
199            new code for base power of two.
200    
201    2004-10-22  Richard B. Kreckel  <kreckel@ginac.de>
202    
203            * src/integer/conv/cl_I_to_digits (I_to_digits): Fix an elusive stack
204            overwriting problem. That was the real cause for Debian bug#246319.
205            * src/integer/output/cl_I_print.cc (print_integer): Revert workaround
206            for the bug fixed above.
207    
208    2004-10-20  Richard B. Kreckel  <kreckel@ginac.de>
209    
210            * include/cln/types.h: Use 64 bit digits on x86_64 CPU.
211    
212    2004-10-12  Richard B. Kreckel  <kreckel@ginac.de>
213    
214            * src/integer/conv/cl_I_from_digits.cc (digits_to_I): Speedup when
215            the base is a power of two.
216    
217    2004-10-05  Richard B. Kreckel  <kreckel@ginac.de>
218    
219            * src/integer/conv/cl_I_to_digits.cc (I_to_digits): Fix bug in base 32.
220    
221    2004-09-27  Richard B. Kreckel  <kreckel@ginac.de>
222    
223            Support for little-endian Mips, second shot
224            * src/base/digitseq/cl_asm_mipsel_.cc: New file...
225            * src/base/digitseq/cl_asm_cc: ...used here.
226            * src/base/digitseq/cl_asm.h: Include cl_asm_mips.h for any endianness.
227            * include/cln/object.h: Set alignment for mipsel explicitly.
228    
229    2004-09-05  Richard B. Kreckel  <kreckel@ginac.de>
230    
231            Support for little-endian Mips
232            * include/cln/config.h.in: Add __mipsel__.
233            * include/cln/modules.h: For Mips, this is endianness-agnostic.
234            * src/base/digitseq/cl_asm_.cc, src/base/digitseq/cl_asm.h:
235            Mask out assembler for little-endian Mips.
236    
237    2004-08-30  Bruno Haible  <bruno@clisp.org>
238    
239            * benchmarks/timebench2.sh: Multiply all repeat counts by 100.
240            * benchmarks/timebench2.results: Add recent PowerPC G4 results.
241    
242  2004-08-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  2004-08-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
243    
244          * cln/examples/e.cc: remove extra semicolon.          * examples/e.cc: remove extra semicolon.
245    
246  2004-08-25  Bruno Haible  <bruno@clisp.org>  2004-08-25  Bruno Haible  <bruno@clisp.org>
247    

Legend:
Removed from v.1.101  
changed lines
  Added in v.1.138

Christian Bauer">Christian Bauer
ViewVC Help
Powered by ViewVC 1.1.15