CtrlK
BlogDocsLog inGet started
Tessl Logo

build-the-tool

Guide for building the tool when asked by the user or testing a code change that requires a new build of the tool

80

Quality

Does it follow best practices?

Impact

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

SKILL.md
Quality
Evals
Security

To build the tool, follow these steps:

  1. Make sure the clang++ compiler is available on your system. You can check this by running clang++ --version in your terminal. The current supported version is 19.

  2. If not available, a conda enviroment like the following can be loaded:

source ~/.bashrc
conda activate tutorial_env
  1. Move to the directory build inside the project root.

  2. If the build directory does not exist, create it and configure it like this:

mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=./install ..
  1. Build the tool using the following command:
make -j 4
  1. Install the tool using the following command:
make install
  1. After installing, one must add the bin directory of the install directory to the PATH environment variable.
export PATH=$PATH:/path/to/install/bin
Repository
llnl/FPChecker
Last updated
Created

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.