On 1 June 2010 00:16, Bill Hart <[email protected]> wrote: > So here's a summary of the remaining bugs that we can actually fix > (i.e. ones that aren't due to incorrectly set up machines or bugs in > gcc and excluding duplicates): > > * gcc55 - undefined reference to _gmpn_invert_limb >
For this one, the file being compiled is tests/t-bswap.c, which doesn't actually use mpn_invert_limb as fas as I can see. So this is a linker error. Perhaps to fix it we can put: #if defined (invert_limb) #define mpn_invert_limb __MPN(invert_limb) #endif on line 2526 of gmp-impl.h? Should that work? Bill. > * cicero - t-dc_bdiv_q > inv_divappr_q.c:45: GNU MP assertion failed: dn >= 6 > > * t-dc_bdiv_q > /bin/sh: line 4: 10641 Segmentation fault (probably a tuning issue > - tuning code broken) > > * rosemary > redefinition of ‘__gmpn_divrem_hensel_qr_1 (will need access to be > able to fix this) > > * bsd.math > Invalid configuration `longlong-apple-darwin10.3.0 > > * gcc 101 > ylwrap: No such file or directory (probably automake --addmissing > will fix this, but we'd need to put ylwrap under version control?) > > * t2 > Invalid configuration `longlong-sun-solaris2.10 > > Bill. > > On 31 May 2010 23:58, Bill Hart <[email protected]> wrote: >> Yep, the same bug appears in dc_divappr_q.c, so I've fixed that too. >> All tests pass on my machine and on sextus. >> >> Bill. >> >> On 31 May 2010 23:52, Bill Hart <[email protected]> wrote: >>> I've fixed the bug on sextus. This turned out to be a whole missing >>> case in inv_divappr_q.c. I'll have to figure out which other files are >>> affected by the same bug. I likely copied this from somewhere. >>> >>> I've committed a fix to svn anyhow. >>> >>> Bill. >>> >>> On 29 May 2010 17:11, Minh Nguyen <[email protected]> wrote: >>>> Hi Jason, >>>> >>>> On Sun, May 30, 2010 at 1:18 AM, jason <[email protected]> wrote: >>>> >>>> <SNIP> >>>> >>>>> Some suggested changes >>>> >>>> The news section [1] and changelog [2] have been updated. Thank you. >>>> >>>> [1] http://www.mpir.org >>>> >>>> [2] http://www.mpir.org/changes.html >>>> >>>> -- >>>> Regards >>>> Minh Van Nguyen >>>> >>>> -- >>>> You received this message because you are subscribed to the Google Groups >>>> "mpir-devel" group. >>>> To post to this group, send email to [email protected]. >>>> To unsubscribe from this group, send email to >>>> [email protected]. >>>> For more options, visit this group at >>>> http://groups.google.com/group/mpir-devel?hl=en. >>>> >>>> >>> >> > -- You received this message because you are subscribed to the Google Groups "mpir-devel" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/mpir-devel?hl=en.
