diff options
author | Kevin Chabowski <der.pc222@googlemail.com> | 2010-07-28 23:03:16 +0200 |
---|---|---|
committer | Kevin Chabowski <der.pc222@googlemail.com> | 2010-07-28 23:03:16 +0200 |
commit | 054a617a9375b835492368c3773315b09d3851ce (patch) | |
tree | 231d5e4a57e994e3cc3c0b005fea6fe2a4a9fcc9 /COMPILING | |
download | Another-mandelbrot-viewer-054a617a9375b835492368c3773315b09d3851ce.tar.gz Another-mandelbrot-viewer-054a617a9375b835492368c3773315b09d3851ce.tar.bz2 Another-mandelbrot-viewer-054a617a9375b835492368c3773315b09d3851ce.zip |
Initial commit for mandelbrot.
Diffstat (limited to 'COMPILING')
-rw-r--r-- | COMPILING | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/COMPILING b/COMPILING new file mode 100644 index 0000000..df10f1e --- /dev/null +++ b/COMPILING @@ -0,0 +1,23 @@ +Compiling mandelbrot on Linux: + You will need the devel files for the allegro graphics library. You + should be able to find them via yum/zypper/apt-get or whatever the + package manager of your distro is called. Of course you will also need + GCC and the make command. + If you have everything,just type "make" into a console and everything + should compile in some seconds. + +Compiling mandelbrot on Windows: + You need a C compiler. I prefer mingw32 (wxDevC++), but anyone should + do. Then you have to get Allegro 4.2 for this compiler. If you are using + (wx)DevC++, you can download a devpak file from devpaks.org. For other + compilers: Google is your friend. + Then you can compile mandelbrot (do not forget do tell the compiler / + linker to include the allegro library!). + NOTE: I do not know any compiler for Windows, which supports OpenMP, but + perhaps a new MinGW version (not that old one from DevC++) or + Microsoft's VisualC++ do, but I do not know. If your compiler does not + like the "#pragma omp" lines, you have to remove them from the sources. + +Compiling mandelbrot on other Operating systems: + I don't have any clue. You are on your own. Good luck! + |