From 951bc726a2a2174a8487946556911b418ccc230f Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Tue, 9 Nov 2021 09:50:07 +0100 Subject: [PATCH] Add some dev tips to a README Signed-off-by: Wolfgang Bumiller --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..d2dcb947 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Hints for development: + +With the current perlmod, the `.pm` files don't actually change anymore, since the exported method +setup is now handled by the bootstrap rust-function generated by perlmod, so for quicker debugging, +you can just keep the installed `.pm` files from the package and simply link the library to the +debug one like so: + +NOTE: You may need to adapt the perl version number in this path: +``` +# ln -sf $PWD/target/debug/libpve_rs.so /usr/lib/x86_64-linux-gnu/perl5/5.32/auto/libpve_rs.so +``` + +Then just restart pvedaemon/pveproxy after running `make pve`.