Search found 12 matches

by laurent_csw
2015-01-13T09:43:18-07:00
Forum: Bugs
Topic: Binaries crash on Solaris 10 x86 32 bit
Replies: 5
Views: 3295

Re: Binaries crash on Solaris 10 x86 32 bit

Okay, I could rebuild with a different compiler, Solaris Studio 12.3, using the same recipe, and the issue is not there. So looks like a GCC issue. I'll poke its maintainer.

Thanks again!

Laurent
by laurent_csw
2015-01-12T16:11:02-07:00
Forum: Bugs
Topic: Binaries crash on Solaris 10 x86 32 bit
Replies: 5
Views: 3295

Re: Binaries crash on Solaris 10 x86 32 bit

magick wrote:Is MAGICKCORE_HAVE_POSIX_MEMALIGN defined in magick/magick-baseconfig.h? If so, comment it out, then rebuild and rerun ImageMagick. Does it still fail?
It's not defined:

Code: Select all

/* Define to 1 if you have the `posix_memalign' function. */
/* #undef HAVE_POSIX_MEMALIGN */
by laurent_csw
2015-01-12T08:40:47-07:00
Forum: Bugs
Topic: Binaries crash on Solaris 10 x86 32 bit
Replies: 5
Views: 3295

Re: Binaries crash on Solaris 10 x86 32 bit

The stack trace suggests a compiler / system library problem rather than ImageMagick. Its faulting in the initialization code almost immediately after program invocation. You could try commenting our this line: magick/image.c around line 1315: image_info->debug=IsEventLogging(); However, we suspect ...
by laurent_csw
2015-01-12T02:39:53-07:00
Forum: Bugs
Topic: Binaries crash on Solaris 10 x86 32 bit
Replies: 5
Views: 3295

Binaries crash on Solaris 10 x86 32 bit

Hello, I'm packaging ImageMagick for Solaris 10, and I've had a report that it crashes. However, I'm not fully sure it's an ImageMagick issue yet: it happens only for Solaris 10 x86 32 bit. For S10 x86 64 bit, S10 sparc 32 and 64 bit, there is no crash. All the builds are done with the same recipes ...
by laurent_csw
2014-08-06T04:37:17-07:00
Forum: Bugs
Topic: "Illegal instruction" crash with 6.8.9-6 on Solaris
Replies: 3
Views: 2987

Re: "Illegal instruction" crash with 6.8.9-6 on Solaris

So, my bad, as you probably have guessed, I had somehow missed the --with-gcc-arch option (too much focus on the dependencies in general, and not looking for the right pattern this time). Setting it to "opteron" is enough to fix that particular issue, so it's all good. I truly wonder what I did the ...
by laurent_csw
2014-08-05T14:50:29-07:00
Forum: Bugs
Topic: "Illegal instruction" crash with 6.8.9-6 on Solaris
Replies: 3
Views: 2987

Re: "Illegal instruction" crash with 6.8.9-6 on Solaris

It may be failing in a system call. Do you have MAGICKCORE_HAVE_TIMES defined in magick/magick-baseconfig.h? If so its calling times() @ magick/timer.c/198. Otherwise its calling clock(). This assumes your stack trace is accurate. Pop some debug statements around this code block to trace the ...
by laurent_csw
2014-08-05T05:07:05-07:00
Forum: Bugs
Topic: "Illegal instruction" crash with 6.8.9-6 on Solaris
Replies: 3
Views: 2987

"Illegal instruction" crash with 6.8.9-6 on Solaris

Hello, After building 6.8.9-6 on Solaris, I get the following error: $ convert Illegal Instruction (core dumped) The previous version I built, 6.8.9-2, with exactly the same build recipe and environment, works fine, so it looks like an ImageMagick regression. The core file says this: # pstack core ...
by laurent_csw
2014-05-19T01:18:06-07:00
Forum: Bugs
Topic: Converting a .doc file fails, rewrites original
Replies: 3
Views: 6348

Re: Converting a .doc file fails, rewrites original

Confirmed fixed with a build of the -2-20140517 beta. Thanks again!

Laurent
by laurent_csw
2014-05-16T05:14:48-07:00
Forum: Bugs
Topic: Converting a .doc file fails, rewrites original
Replies: 3
Views: 6348

Re: Converting a .doc file fails, rewrites original

Thank you, much appreciated!

Laurent
by laurent_csw
2014-05-16T04:52:50-07:00
Forum: Bugs
Topic: Converting a .doc file fails, rewrites original
Replies: 3
Views: 6348

Converting a .doc file fails, rewrites original

Hello all, I'm having a problem with a specific use case of ImageMagick: the conversion of an MS Word document to a bitmap fails with a strange error, and furthermore, the original file is rewritten (with the same data) so its timestamp changes. Here is the error: $ convert file.doc file.jpg convert ...
by laurent_csw
2014-01-15T06:06:08-07:00
Forum: Developers
Topic: SONAME bump in 6.8.8-2 release?
Replies: 3
Views: 4659

Re: SONAME bump in 6.8.8-2 release?

Okay, thanks for the explanation :-)

So technically, I could assume the risk of keeping it at the current soname number until 7 is released.

Laurent
by laurent_csw
2014-01-15T03:43:23-07:00
Forum: Developers
Topic: SONAME bump in 6.8.8-2 release?
Replies: 3
Views: 4659

SONAME bump in 6.8.8-2 release?

Hello, I'm maintaining the ImageMagick package as part of the OpenCSW project for Solaris. I've noticed the latest update, 6.8.8-2, has bumped the soname number by one: $ diff ImageMagick-6.8.8-1/version.sh ImageMagick-6.8.8-2/version.sh 16c16 < PACKAGE_RELEASE="1" --- > PACKAGE_RELEASE="2" 42c42 ...