From eb7cc583ef7ce825520795fde2b514a304c5548c Mon Sep 17 00:00:00 2001 From: sneurlax Date: Thu, 10 Oct 2024 17:03:38 -0500 Subject: support building other archs, copy file to correct path and touch gitignore --- impls/monero_rust/README.md | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) (limited to 'impls/monero_rust/README.md') diff --git a/impls/monero_rust/README.md b/impls/monero_rust/README.md index fa851fa..5affbd1 100644 --- a/impls/monero_rust/README.md +++ b/impls/monero_rust/README.md @@ -1,5 +1,5 @@ # `monero_rust` -`monero_c` bindings for Rust. +Proof of concept `monero_c` bindings for Rust. ## Getting started -1. Build `monero_c` -2. Copy the `monero_c` library to `monero_rust`. -3. Run `monero_rust` example - ### Build `monero_c` -Build a monero_c static Library for your architecture. Follow the upstream docs -at https://github.com/MrCyjaneK/monero_c or for example: +Build the monero_c Library for your architecture. Follow the upstream docs at +https://github.com/MrCyjaneK/monero_c and +place the library at `monero_c/impls/monero_rust/lib/libwallet2_api_c.so` or use +the provided script: ``` -./scripts/build_monero_c.sh +cd scripts +./build_monero_c.sh ``` - -or manually: +or build it manually as in: ``` git clone https://git.mrcyjanek.net/sneurlax/monero_c --branch rust cd monero_c @@ -30,16 +28,12 @@ rm -rf monero wownero release # Clean any previous builds. git submodule update --init --recursive --force ./apply_patches.sh monero ./build_single.sh monero x86_64-linux-gnu -j$(nproc) -``` - -### Copy the `monero_c` library to `monero_rust`. -Copy your `libwallet` library to `monero_c/impls/monero_rust/lib`. -``` -cp build/release/monero/x86_64-linux-gnu_libwallet2_api_c.so ../lib -mv ../lib/x86_64-linux-gnu_libwallet2_api_c.so ../lib/libx86_64-linux-gnu_libwallet2_api_c.so +# Adjust the commands below for your arch. +unxz -f release/monero/x86_64-linux-gnu_libwallet2_api_c.so.xz +mv release/monero/x86_64-linux-gnu_libwallet2_api_c.so ../lib/libwallet2_api_c.so +# The library should be at monero_c/impls/monero_rust/lib/libwallet2_api_c.so. ``` - ### Run `monero_rust` example From `monero_c/impls/monero_rust`: -- cgit v1.2.3