/src/FreeImage/README.osx

https://bitbucket.org/cabalistic/ogredeps/ · Unknown · 44 lines · 29 code · 15 blank · 0 comment · 0 complexity · 9081a430b52b08910e0814eb9f0f7244 MD5 · raw file

  1. Release Notes
  2. --------------
  3. This version of the library has been tested under OSX 10.3.9 PPC and OSX 10.4.8 Intel.
  4. While the makefiles will make a .dylib and a .a, it is recommended to simply staticly link with the .a file.
  5. FreeImage is now built as a Universal Binary and targets the 10.3.9 SDK for PPC and the 10.4u SDK for i386.
  6. This means that you must have both of these SDKs installed and that you must be running on OSX 10.4+ to build FreeImage.
  7. The library will run on 10.3 PPC, but probably not 10.2 or below anymore. wchar.h did not exist on 10.2.
  8. FreeImage is now built with gcc 4.0 and will thus only run on 10.3.9 or above (some libraries may not exist on 10.3.8 and below).
  9. The FreeImage makefile makes use of the gcc "-fvisibility=hidden" in order to avoid incompatibilities between
  10. internal third party libraries and the OS libraries. This feature is available with gcc 4 or greater.
  11. Ryan Rubley
  12. Building the Library
  13. --------------------
  14. Makefile detects the environment by calling 'uname'. Assuming this reports 'Darwin' on your system, Makefile will automatically
  15. defer commands to Makefile.osx. If this doesn't work, type 'make -f Makefile.osx' in place of just 'make'
  16. The build process is as simple as this:
  17. 1) Enter the FreeImage directory
  18. 2) Build the distribution:
  19. make
  20. 3) The libraries and header will be in the Dist directory when the build is finished
  21. To install FreeImage in the /usr/local/lib and /usr/local/include directories (not recommended):
  22. make install
  23. To clean all files produced during the build process:
  24. make clean
  25. Additional notes
  26. ----------------
  27. Building on Mac OS X Leopard :
  28. Install the xcode dev tools from the Leopard disk.
  29. When installing the dev tools make sure to have installed 10.3.9 SDK (it's not selected by default).