From b2a29425a3a33bc6358f6d7a3524e2e641495223 Mon Sep 17 00:00:00 2001 From: fanasina Date: Tue, 17 Oct 2023 16:50:52 +0200 Subject: [PATCH] update README --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa3a17d..5057426 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,11 @@ cp -r include_ytest/include/* ~/.local/include/ ``` if `/usr/include` or `~/.local/include` is in `CPATH` or -execute ```export CPATH=/Path_to_dir_ytest/include_ytest/include:$CPATH``` or add the precedent line in `~/.bashrc`. +execute +``` +export CPATH=/Path_to_dir_ytest/include_ytest/include:$CPATH +``` +or add the precedent line in `~/.bashrc`. We can avoid these copy or export to CPATH env by adding `-I/Path_to_dir_ytest/include_ytest/include` when compiling our test. @@ -37,7 +41,7 @@ add ```export LD_LIBRARY_PATH=/path_to/lib_ytest:$LD_LIBRARY_PATH``` in `~/.bas ## test examples -`test/is_good.c` +`test/is_good.c` and `permutation_test/is_good.c` ## compile and run the example ```