Linux

An example Makefile is included with the NDK examples shipped in the NDK sub-directory of the Documentation installed with NUKE.

Plug-ins compiled with GCC versions 4.1 through 4.8.2 without C++11 support should be compatible. Please refer to GCC’s ABI Policy and Guidelines. If your preferred Linux distribution makes use of patched GCC libraries, please consult the applicable compatibility notes of your distribution.

libc++, the C++ standard library implementation of the LLVM project, is not binary compatible with libstdc++, the C++ standard library implementation of GCC. Our plug-in interfaces only support objects that are created via libstdc++ (associated with the above GCC compiler version range). While untested and unsupported by The Foundry, using the clang compiler and linking against libstdc++ instead of libc++, targeted at C++98, may produce working plug-ins.

If you want to build with the Intel compiler, you may substitute it for g++. However you must make sure you use the libstdc++ includes and libs from a compatible GCC version, as outlined above, in order to be compatible.

The use of C++11 via GCC, clang or the Intel compiler is untested and unsupported, especially in terms of passing standard library objects targeted at C++11 through the plug-in interface.

On Linux, NUKE is built on a RHEL 5.4 Linux 64-bit machine, using GCC 4.1. We ship and link against a GCC 4.8.2 standard library at runtime (which is compatible with GCC 4.1 and above).

The shared object files (.so) resulting from a plug-in build should either be placed in your ~/.nuke directory, or a location in your NUKE plug-in path, in order to be loaded into NUKE.

See Building & Installing Plug-ins for information on creating your first plug-in.

Previous topic

Mac OS X

Next topic

Appendix C: Plugin compatibility with Nuke 10