Prerequisites
In order to download, configure, and build the Chrono libraries from source, the following packages and libraries are required:
- git: to clone the GitHub repository; we recommend using Sourcetree for Win and Mac users that comes with Git already embedded;
- CMake: utility that generates all the required solution/make files for your specific toolchain;
- a C++ compiler: see requirements below
- the Eigen library: a linear algebra library
These are the minimal requirements, sufficient for building the core Chrono module. However, we strongly recommend to enable at least the IRRLICHT module to enable the visualization of your models. This will ask for an additional dependency:
- the Irrlicht library
We will suggest to refer to IRRLICHT install guide for in-detailed instructions, but we will provide some basic instructions also here.
Since additional modules may bring in additional dependencies we recommend to enable only those that are required by your project, at least for the first installation; for their installation please refer to Installation Guides.
1) Check/Install a C++ compiler
Recommended compilers:
- Microsoft Visual C++ from Visual Studio 2019 or newer. The community edition of the latest Visual Studio is available for free.
- GNU C++ compiler for Linux-based platforms (version 4.9 or newer).
Install the latest version of GCC through your package manger:gcc
. - LLVM Clang C and C++ compiler (version 1.6 or newer).
Install the latest version of Clang through your package manger:clang
. - Xcode Package for MacOS: Download via App Store for free - it contains the clang++ compiler.
Other compilers were also tested (e.g. Intel C++, PGI) but they are not officially supported and maintained. While it is likely possible to build Chrono with other toolchains, this might require changes to the CMake scripts.
Make sure to install the C++ toolchain during the setup!
Visual Studio 2017 has problems with the heavy use of inlining in recent version of Eigen. For the latest version of Chrono (specifically due to the reimplemented ANCF elements), this can result in very long compilation times or even hang ups. We recommend using VS 2019 or newer.
2) Download and install the Eigen library
Chrono now uses Eigen3 for all of its internal dense linear algebra needs. Chrono requires Eigen version 3.3.0 or newer, but we strongly encourage using the latest stable release, Eigen 3.4.0.
On Linux, Eigen is available through your system package manager as: eigen
, eigen3-dev
, eigen3-devel
.
On the Mac you should install it via homebrew: brew install eigen
. Homebrew installs into /opt/homebrew since MacOS 12 Monterey and the new Apple Silicon (arm46, M1, M2...) hardware. If Eigen is not found automatically, you can search its folder with:
find /opt/homebrew -name Eigen
The response is actually:
/opt/homebrew/Cellar/eigen/3.4.0_1/include/eigen3/unsupported/Eigen
/opt/homebrew/Cellar/eigen/3.4.0_1/include/eigen3/Eigen
/opt/homebrew/Cellar/eigen/3.4.0_1/include/eigen3/Eigen/Eigen
The include path is then **/opt/homebrew/Cellar/eigen/3.4.0_1/include/eigen3**.
Most Chrono modules will build and work with Eigen 3.3.0 or newer.
However, if you are building the Chrono::FSI or Chrono::Granular modules, note that CUDA 9.1 removed a header file (math_functions.hpp) which was referenced in older versions of Eigen; this issue was addressed as of Eigen 3.3.6.
3) Install CMake
CMake is required to configure the build toolchain before compiling Chrono.
CMake will configure and create the necessary solution files (Windows) or make files (Linux) necessary to compile and build Chrono from sources.
For Windows users: make sure to put the CMake executable in your Path
environmental variable (the installer can do this for you).
On Linux, if not already installed, use the package manager to install cmake
. Some distributions may need to install the package cmake-curses-gui
along with cmake
to use terminal based GUI for CMake.
For Xcode users: the CMake.app bundle also contains command line tools, you must set appropriate links to use it from the terminal. It is better to install a pure command line version via homebrew (https://brew.sh). After installing the home brew package manager type: brew install cmake
in the terminal.
4) Install a GIT client
While git can be used through command line we recommend using a git client. We suggest:
On Windows and MacOS, we suggest SourceTree. On MacOS you will find an Application Bundle under /Applications.
Various git clients are available for Linux as well. Consult the documentation for your distribution.
5) Download the project by cloning the Git repository
Download the Chrono source by performing a clone of the Git repository in a directory on your machine.
Assuming you are using SourceTree:
- in the menu bar press File and then Clone / New button in SourceTree
- enter
https://github.com/projectchrono/chrono.git
in the field "Source Path / URL" - in the field "Destination Path" enter a path to an empty directory, say
C:/workspace/chrono
- leave the Local Folder field as it is
- under Advanced Options set Checkout branch to
main
- press Clone and the source code will be downloaded into the folder you specified
If using git
from the command line, git clone -b main git@github.com:projectchrono/chrono.git
will create a copy of the Github repository in the current directory and checkout the main
(development) branch.
release
branches contain the various Chrono releases and contain the most stable code. If you are interested in using the latest features as they are developed and before the next official release, you can checkout the main
branch at any time after the initial cloning: git checkout main
. 6) Run CMake
The average user is suggested to use the CMake GUI interface. For those that have no graphical interface available on their systems, please refer to the command line instructions below.
Using CMake through the GUI interface
Start cmake-gui
to configure the build.
- In the field "Where is the source code" set the path to your Chrono directory.
This is the directory where you created your Git repository, in our example isC:/workspace/chrono
. - In the field "Where to build the binaries" set the path to another directory on your system, that must be empty. This is where the Visual C++ project will be created.
For our example, let's useC:/workspace/chrono_build
- Press the Configure button.
- Set the appropriate generator (e.g. Visual Studio, Makefile, etc...) and the appropriate platform (Win32, x64, etc...) i.e. if you have a 64-bit processor, as usually is, you should configure a 64-bit project.
In older CMake, there is a single list of generators in which you may choose between
e.g. 'Visual Studio 15 2017' and 'Visual Studio 15 2017 Win64' (then choose the latter).
In the latest CMake, there are separated fields, one for the generator (e.g. 'Visual Studio 15 2017') and another one for the platform (e.g. x64).
- Specify the location of the Eigen installation. If this is not detected automatically, you may need to manually set the CMake variable
EIGEN3_INCLUDE_DIR
.
For example,C:/workspace/libraries/eigen-3.3.7
.
- Enable any additional module. Refer to their Installation Guides before proceeding any further.
If you decided to install the Irrlicht module:- Tick
ENABLE_MODULE_IRRLICHT
.
Other modules might require additional settings and dependencies. - Press Configure.
- Set the
IRRLICHT_INSTALL_DIR
variable: it must contain the path to the directory where you unzipped Irrlicht.
In our example, browse toC:/workspace/libraries/irrlicht-1.8.4
- Press Configure again.
- The
IRRLICHT_LIBRARY
variable should be filled automatically. If not, select (for Win users):C:/workspace/libraries/irrlicht-1.8.4/lib/Win64-visualStudio/Irrlicht.lib
.
Then press Configure again.
- Tick
- Remember that you might need to press Configure after you change some setting, even multiple times, until all the variables get a white background.
- Finally, press Generate.
CMAKE_CONFIGURATION_TYPES
variable untouched (it should report Debug;Release;MinSizeRel;RelWithDebInfo; if not, please do File>*Delete Cache* and start again the CMake configuration).The build configuration will be chosen directly from Visual Studio. For Makefile-based solutions, on the contrary, you should set
CMAKE_CONFIGURATION_TYPES
to either Debug or Release (or MinSizeRel or RelWithDebInfo). Makefile does not support multiple configuration types. /
character for paths. Unix users are already used to this convention.Windows users should take care to convert the default separator
\
to /
! At this point you just created a project that will be later used to build Chrono. You can close CMake.
Using CMake through the command prompt
- Create a build directory outside of the Chrono source directory (
mkdir chrono_build
) and change your current directory to it:cd chrono_build
. - Run
ccmake /path/to/chrono
from the build directory. A text based GUI will appear in the terminal. - Enter
c
to Configure and continue. The interface will reload to a new screen with more options. - Specify the location of the Eigen installation. If this is not detected automatically, you may need to manually set the CMake variable
EIGEN3_INCLUDE_DIR
.
- The following instructions are optional but highly recommended.
- Enter
c
to Configure and continue to the next screen. - Enable the recommended optional modules: at least tick
ENABLE_MODULE_IRRLICHT
.
Other modules might require additional settings and dependencies. - Enter
c
to Configure and continue to the next screen. - Verify the path to the Irrlicht include directory and the Irrlicht library are automatically filled in the
IRRLICHT_INCLUDE_DIR
andIRRLICHT_LIBRARY
fields respectively. If this is not the case, update to match the example below.
- Enter
- Enter
c
to Configure and continue until you reach the final screen. At which point enterg
to Generate, CCMake will close on completion.
7) Compile the project
Visual Studio
- Go to the directory that you set in "Where to build the binaries". You will find the file Chrono.sln.
- Double-click on that file: your Visual Studio solution will open.
- In the toolbar, from the Solution Configurations drop-down menu choose 'Release' mode
- In the toolbar, click on Build > Build solution... .
The entire Chrono project and its demos will be compiled, creating many .exe and .dll files, in the bin/Release subdirectory.
This will take a few minutes. - Repeat step 3 and 4, but choosing Debug as configuration type. This will generate the binaries with debugging symbols: they will be placed under the bin/Debug subfolder.
Linux/make
Run command make
, optionally followed by make install
while in the same build directory as the newly created Makefile.
make install
will copy the Chrono libraries, data files, and demo executable to the install directory specified during CMake configuration. MacOS/clang
- CMake generates a hierarchy of makefiles in the directory specified in "Where to build the binaries".
- To build the Chrono libraries and demo executables, simply invoke
make
from the command line in that directory. - Optionally, type
make install
to install the Chrono libraries, data files, and demo executables in the directory specified during CMake configuration. - CMake can be configured to generate Xcode (
cmake -G Xcode ....
) configurations. You would normally use it with the Xcode IDE. The advantage is the possibilty to debug the code. Like in MS Visual Studio, you choose the build type from the IDE.
libChronoEngine_multicore
successfully.However, OpenMP support can be added using homebrew:
brew install libomp
. Having done so, you can then configure Chrono with OpenMP support. For this, you must define the right compiler flags:-Xpreprocessor -fopenmp
for the compiler and -lomp
for the linker. Please give the OpenMP options for both, the C compiler and the C++ compiler, otherwise the OpenMP configuration will fail. 8) Test the demos
For Windows users, executables for the various demos distributed with Chrono will be available in the bin/Release
or bin/Debug
subdirectory, depending on the configuration selected to build the Chrono libraries and executables.
For Linux users, these will be available in the subdirectory bin
.
Notes
- IMPORTANT: never mix 64-bit and 32-bit binaries and libraries!
For example, you must link the 64-bit Irrlicht library. Beginning with MacOS 10.15 Catalina there is no 32-bit support anymore. - Currently, the only dependency of the core Chrono module is the Eigen library. Since Eigen is a headers-only library, no additional steps must be taken to be able to run demos and programs that only link to the core Chrono library.
Other Chrono module (e.g., the run-time visualization Chrono modules) have additional dependencies. If using shared libraries for these dependencies, you must ensure that these are found at run time.- On Windows, you can either copy the corresponding DLLs (e.g., Irrlicht.dll) to the same directory as the executables or else add the path to these shared libraries to the
PATH
environment variable. - On Linux, you may need to append to the
LD_LIBRARY_PATH
environment variable.
- On Windows, you can either copy the corresponding DLLs (e.g., Irrlicht.dll) to the same directory as the executables or else add the path to these shared libraries to the