Configuring the FBX SDK for Linux

Downloading and installing FBX SDK

To download and install FBX SDK for Linux:

  1. Go to http://www.autodesk.com/fbx.
  2. Click GET FBX SDK to access the FBX SDK Downloads page.
  3. Download the FBX SDK for Linux setup file to your computer. The setup file is a compressed tar file ( .tar.gz ).
  4. Extract the contents of the file to a new directory that we call <yourFBXSDKpath> , your distribution directory for FBX SDK.
  5. Follow the instructions in <yourFBXSDKpath>\Install_FbxFileSdk.txt .
  6. Read <yourFBXSDKpath>/readme.txt . This readme.txt file contains detailed information about changes in FBX SDK since the previous version, as well as any last-minute documentation.

Runtime libraries for Linux

These are the names of the runtime libraries for Linux:

Library File Description
<yourFBXSDKpath>\lib\gcc4\x86\release\libfbxsdk.so gcc 4.0 compiler, dynamic library, release, 32-bit
<yourFBXSDKpath>\lib\gcc4\x86\debug\libfbxsdk.so gcc 4.0 compiler, dynamic library, debug, 32-bit
<yourFBXSDKpath>\lib\gcc4\x86\release\libfbxsdk-static.a gcc 4.0 compiler, static library, release, 32-bit
<yourFBXSDKpath>\lib\gcc4\x86\debug\libfbxsdk-static.a gcc 4.0 compiler, static library, debug, 32-bit
<yourFBXSDKpath>\lib\gcc4\x64\release\libfbxsdk.so gcc 4.0 compiler, dynamic library, release, 64-bit
<yourFBXSDKpath>\lib\gcc4\x64\debug\libfbxsdk.so gcc 4.0 compiler, dynamic library, debug, 64-bit
<yourFBXSDKpath>\lib\gcc4\x64\release\libfbxsdk-static.a gcc 4.0 compiler, static library, release, 64-bit
<yourFBXSDKpath>\lib\gcc4\x64\debug\libfbxsdk-static.a gcc 4.0 compiler, static library, debug, 64-bit

Use sample makefiles as a guide

You will find sample programs in <yourFBXSDKpath>\samples\ (see Sample Programs). Each sample program contains a makefile. Use one of these makefiles as a model for your own project.