From 497bf98a53d63d00cdc0eeffd4e1c92c5ee477eb Mon Sep 17 00:00:00 2001 From: Say Date: Fri, 12 Sep 2025 08:48:52 +0200 Subject: [PATCH] correct resources path in docs for compiling lib yourself --- docs/compile-argon2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/compile-argon2.md b/docs/compile-argon2.md index 0127da6..045472b 100644 --- a/docs/compile-argon2.md +++ b/docs/compile-argon2.md @@ -7,7 +7,7 @@ 5. Set the Java system property `jna.library.path` to the directory where your library is stored. Example: The library is located in `/home/moe/tmp/phc-winner-argon2/libargon2.so`. Start your Java application with `-Djna.library.path=/home/moe/tmp/phc-winner-argon2/` 6. If it doesn't work, set the Java system property `jna.debug_load` to `true`. This will print JNA library lookup details to the console. Example: `-Djna.debug_load=true` -You can make it available to JNA by placing them under your `resources/{OS}_{ARCH}`. In this case you don't need to use any extra system property. +You can make it available to JNA by placing them under your `resources/{OS}-{ARCH}`. In this case you don't need to use any extra system property. Check the [JNA getting started guide](https://github.com/java-native-access/jna/blob/master/www/GettingStarted.md) for details. ## Install it on your local system