Skip to content

Latest commit

 

History

History
116 lines (85 loc) · 4.59 KB

INSTALL.md

File metadata and controls

116 lines (85 loc) · 4.59 KB

Building OSL

OSL currently compiles and runs cleanly on Linux, Mac OS X, and Windows.

Dependencies

OSL requires the following dependencies or tools. NEW or CHANGED dependencies since the last major release are bold.

  • Build system: CMake 3.12 or newer

  • A suitable C++11 compiler to build OSL itself, which may be any of:

    • GCC 4.8.5 or newer (through gcc 10)
    • Clang 3.4 or newer (through clang 10)
    • Microsoft Visual Studio 2015 or newer
    • Intel C++ compiler icc version 13 (?) or newer

    OSL should compile also properly with C++14 or C++17, but they are not required (unless you are using LLVM >= 10, in which case at least C++14 is needed).

  • OpenImageIO 2.0 or newer

    OSL uses OIIO both for its texture mapping functionality as well as numerous utility classes. If you are integrating OSL into an existing renderer, you may use your own favorite texturing system rather than OpenImageIO with a little minor surgery. There are only a few places where OIIO texturing calls are made, and they could easily be bypassed. But it is probably not possible to remove OIIO completely as a dependency, since we so heavily rely on a number of other utility classes that it provides (for which there was no point reinventing redundantly for OSL).

    After building OpenImageIO, if you don't have it installed in a "standard" place (like /usr/include), you should set the environment variable $OPENIMAGEIOHOME to point to the compiled distribution, as well as for $OPENIMAGEIOHOME/lib to be in your LD_LIBRARY_PATH (or DYLD_LIBRARY_PATH on OS X) and then OSL's build scripts will be able to find it.

  • LLVM 7, 8, 9, or 10, including clang libraries.

    Note that LLVM 10 is not compatible with C++11, and requires C++14 or later. If you must build OSL with C++11, you need to use an LLVM that is LLVM 9 or earlier.

  • Boost 1.55 or newer (tested through boost 1.72)

  • Ilmbase 2.0 or newer (tested through 2.5)

  • Flex and GNU Bison

  • PugiXML

  • (optional) Partio If it is not found at build time, the OSL pointcloud functions will not be operative.

  • (optional) Qt >= 5.6 (tested through 5.15). If not found at build time, the osltoy application will be disabled.

Build process

Here are the steps to check out, build, and test the OSL distribution:

  1. Install and build dependencies.

  2. Check out a copy of the source code from the Git repository:

     git clone https://github.com/imageworks/OpenShadingLanguage.git osl
    
  3. Change to the distribution directory and 'make'

     cd osl
     make
    

    Note: OSL uses 'CMake' for its cross-platform build system. But for simplicity, we have made a "make wrapper" around it, so that by just typing 'make' everything will build. Type 'make help' for other options, and note that 'make nuke' will blow everything away for the freshest possible compile.

    NOTE: If the build breaks due to compiler warnings which have been elevated to errors, you can try "make clean" followed by "make STOP_ON_WARNING=0", that create a build that will only stop for full errors, not warnings.

  4. After compilation, you'll end up with a full OSL distribution in dist/ARCH, where ARCH is the architecture you are building on, one of "linux", "linux64", "macosx", "windows", or "windows64".

    Note: The default is to make an optimized "release" build. If instead type 'make debug' at the top level, you will end up with a debug build (no optimization, full symbols) in "dist/ARCH.debug".

  5. Add the "dist/ARCH/bin" to your $PATH, and "dist/ARCH/lib" to your $LD_LIBRAY_PATH (or $DYLD_LIBRARY_PATH on OS X), or copy the contents of those files to appropriate directories. Public include files (those needed when building applications that incorporate OSL) can be found in "dist/ARCH/include", and documentation can be found in "dist/ARCH/share/doc".

  6. After building (and setting your library path), you can run the test suite with:

     make test
    

Troubleshooting