Search found 16 matches

by dan9er
2019-10-18T16:54:56-07:00
Forum: Magick++
Topic: Linker errors: libMagickWand-7.Q16HDRI.so.6: undefined reference(s)
Replies: 2
Views: 89656

Re: Linker errors: libMagickWand-7.Q16HDRI.so.6: undefined reference(s)

It appears a dependency is missing, libgomp. Mod the Cmake configuration files to find libgomp and add it to the linker statement or disable OpenMP or build ImageMagick with autoconf/automake (e.g. run the `configure` script then `make`). Well my ImageMagick setup was messy anyway, so I removed and...
by dan9er
2019-10-16T18:03:14-07:00
Forum: Magick++
Topic: Do the Windows binary releases contain Magick++?
Replies: 2
Views: 44515

Re: Do the Windows binary releases contain Magick++?

Hello? This is a simple question. Why hasn't anybody spoken up in 3 days?
by dan9er
2019-10-13T15:12:07-07:00
Forum: Magick++
Topic: Linter "puke" when building demo program on Windows 10
Replies: 0
Views: 86941

Linter "puke" when building demo program on Windows 10

I've compiled ImageMagick on my Windows 10 machine, however I'm not sure if I'd done so successfully. I've attempted to build the demo program but I'm getting, for the lack of a better term, linker puke . I'm pastebinning the log because it's just so much: https://pastebin.com/be1cNScb Note that I'v...
by dan9er
2019-10-13T14:48:24-07:00
Forum: Magick++
Topic: Do the Windows binary releases contain Magick++?
Replies: 2
Views: 44515

Do the Windows binary releases contain Magick++?

I've been trying to compile Magick++ and although I can get a .lib file, I'm getting trouble when trying to build anything with it. I'm wondering if I can just install them via https://imagemagick.org/script/download.php.
by dan9er
2019-10-12T10:41:21-07:00
Forum: Magick++
Topic: Linker errors: libMagickWand-7.Q16HDRI.so.6: undefined reference(s)
Replies: 2
Views: 89656

Linker errors: libMagickWand-7.Q16HDRI.so.6: undefined reference(s)

I'm building my project that uses IM on Ubuntu 18.04 LTS, and I'm getting linker errors when I run make. CLang++ version: $ clang++ --version clang version 6.0.0-1ubuntu2 (tags/RELEASE_600/final) Target: x86_64-pc-linux-gnu Thread model: posix InstalledDir: /usr/bin Make version: $ make --version GN...
by dan9er
2019-10-12T10:15:17-07:00
Forum: Magick++
Topic: Compiling Magick++ without Visual Studio?
Replies: 6
Views: 48230

Re: Compiling Magick++ without Visual Studio?

Small update: I have managed to compile ImageMagick using `msbuild.exe`, however I'm getting issues building programs with it so I don't know if I did so successfully.

Once I get it working with no issues I'll post steps here and mark this thread as solved.
by dan9er
2019-10-11T14:13:55-07:00
Forum: Magick++
Topic: [SOLVED] Error when using Magick++: unknown type name 'ssize_t'
Replies: 8
Views: 57836

Re: [SOLVED] Error when using Magick++: unknown type name 'ssize_t'

Seeing my bump got removed, I'm just going to mark the thread as solved and make a a new thread for my new problem.

Thank you magick & snibgo.
by dan9er
2019-10-08T13:28:24-07:00
Forum: Magick++
Topic: [SOLVED] Error when using Magick++: unknown type name 'ssize_t'
Replies: 8
Views: 57836

Re: Error when using Magick++: unknown type name 'ssize_t'

The Windows configure script auto-generates magick-baseconfig.h. It includes a define for ssize_t as follows: #if !defined(ssize_t) && !defined(__MINGW32__) #if defined(_WIN64) typedef __int64 ssize_t; #else typedef long ssize_t; #endif #endif Well... I was using the .h files from my Unix m...
by dan9er
2019-10-06T18:59:42-07:00
Forum: Magick++
Topic: [SOLVED] Error when using Magick++: unknown type name 'ssize_t'
Replies: 8
Views: 57836

Re: Error when using Magick++: unknown type name 'ssize_t'

IM source code includes sample CPP programs. Do they build correctly? Just tried to compile demo.cpp, getting same crap: C:\Users\dan9e\Desktop\cartogrtist\ImageMagick-Windows\ImageMagick\Magick++\demo\demo\build>make -j8 [ 50%] Building CXX object CMakeFiles/demo.dir/src/demo.cpp.obj In file inclu...
by dan9er
2019-10-06T13:45:39-07:00
Forum: Magick++
Topic: [SOLVED] Error when using Magick++: unknown type name 'ssize_t'
Replies: 8
Views: 57836

Re: Error when using Magick++: unknown type name 'ssize_t'

What is included in your source code? I expect something like: #include <Magick++.h> #include <string> #include <iostream> If you are directly including Color.h etc then that is the problem. I did that, still having the same issue: C:\Users\dan9e\Desktop\cartogrtist\cartogrtist\build>make Scanning ...
by dan9er
2019-10-05T18:19:05-07:00
Forum: Magick++
Topic: [SOLVED] Error when using Magick++: unknown type name 'ssize_t'
Replies: 8
Views: 57836

[SOLVED] Error when using Magick++: unknown type name 'ssize_t'

I've just successfully(?) compiled Magick++ for my Windows 10 system, and I'm getting errors like these when I try to compile my program that uses it: C:\Users\dan9e\Desktop\cartogrtist\cartogrtist\build>make Scanning dependencies of target cartogrtist [ 10%] Building CXX object CMakeFiles/cartogrti...
by dan9er
2019-09-30T18:52:52-07:00
Forum: Magick++
Topic: Compiling Magick++ without Visual Studio?
Replies: 6
Views: 48230

Re: Compiling Magick++ without Visual Studio?

Bump. I'm gonna try asking over in Stack Overflow as well...
by dan9er
2019-09-27T18:36:04-07:00
Forum: Magick++
Topic: Compiling Magick++ without Visual Studio?
Replies: 6
Views: 48230

Re: Compiling Magick++ without Visual Studio?

Bump. Still need a solution.
by dan9er
2019-09-25T18:49:52-07:00
Forum: Magick++
Topic: Compiling Magick++ without Visual Studio?
Replies: 6
Views: 48230

Re: Compiling Magick++ without Visual Studio?

VS Build Tools are not required to build IM on Windows. I use GNU CPP tools on Windows 8.1, and building is simple. The Windows IM source download contains commonly-desired delegates. See Compiling IM with Cygwin . Windows 10 can come with a version of bash. I don't know if that includes GNU tools,...
by dan9er
2019-09-25T14:23:03-07:00
Forum: Magick++
Topic: Compiling Magick++ without Visual Studio?
Replies: 6
Views: 48230

Re: Compiling Magick++ without Visual Studio?

Sorry about my asinine question! I now know that VS Build Tools are required to build with Windows. However, let me rephrase my question:

How to compile Magick++ using Ninja? I have the VS Build Tools installed but not VS itself, since I perfer Atom.