From 178aa5f2f0022aaab75772afa43b38931b68a3b8 Mon Sep 17 00:00:00 2001 From: Michael Legleux Date: Sun, 11 Feb 2024 13:32:48 -0800 Subject: [PATCH] rm macOS for now --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f5130e9..7aafe73 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,6 @@ This is the Witness Server for [XLS-38d Cross-Chain bridge project](https://gith |-------------|---------| | GCC | 11 | | Clang | 13 | -| Apple Clang | 14.0.3 | ## Build and run @@ -29,18 +28,21 @@ This is the Witness Server for [XLS-38d Cross-Chain bridge project](https://gith mkdir .build && cd .build ``` -2) Configure Conan (once before first build) +2. Configure Conan (once before first build) Add Ripple's Artifactory as a Conan remote to source the `libxrpl` Conan package. ```bash - conan remote add --insert 0 conan-non-prod http://18.143.149.228:8081/artifactory/api/conan/conan-non-prod -``` - -3. Configure the Conan profile. +conan remote add --insert 0 conan-non-prod http://18.143.149.228:8081/artifactory/api/conan/conan-non-prod +``` +The Conan `rippled` recipe is also available by checking out the [`rippled` source](https://github.com/XRPLF/rippled.git) and exporting the recipe locally. +```bash +git clone https://github.com/XRPLF/rippled.git +cd rippled +conan export . +``` ```bash - conan profile update settings.cppstd=20 default conan profile update settings.compiler.libcxx=libstdc++11 default ```