From 7608ffa9e028a1206d261287ded5d44b83ede0c4 Mon Sep 17 00:00:00 2001 From: Otsar <122266060+Otsar-Raikou@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:29:08 +0300 Subject: [PATCH 1/2] broken link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5350562b6..8681a8f5b 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ If you require more compute and have an interesting research project, we have [b ## Building ICICLE from source -ICICLE provides build systems for C++, Rust, and Go. Each build system incorporates the core ICICLE library, which contains the essential cryptographic primitives. Refer to the [Getting started page](https://dev.ingonyama.com/icicle/introduction) for full details about building and using ICICLE. +ICICLE provides build systems for C++, Rust, and Go. Each build system incorporates the core ICICLE library, which contains the essential cryptographic primitives. Refer to the [Getting started page](https://dev.ingonyama.com/icicle/build_from_source) for full details about building and using ICICLE. > [!WARNING] > Ensure ICICLE libraries are installed correctly when building or installing a library/application that depends on ICICLE so that they can be located at runtime. From 6d392b6833d596f888561a1bcc39fb4a3bb5feed Mon Sep 17 00:00:00 2001 From: Otsar <122266060+Otsar-Raikou@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:30:50 +0300 Subject: [PATCH 2/2] fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8681a8f5b..ffcf946b7 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ cmake -S icicle -B build -DFIELD=babybear cmake --build build -j # -j is for multi-core compilation ``` -**Link you application (or library) to ICICLE:** +**Link your application (or library) to ICICLE:** ```cmake target_link_libraries(yourApp PRIVATE icicle_field_babybear icicle_device)