aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpravic <[email protected]>2016-04-12 22:13:32 +0300
committerpravic <[email protected]>2016-04-12 22:13:32 +0300
commite65e59eef1922997c894983310407056d07a3929 (patch)
tree8aedce72959ae65ec5650dcecc6d7983dae985b1
parentadd getting started guide (diff)
downloadwinapi-kmd-rs-e65e59eef1922997c894983310407056d07a3929.tar.xz
winapi-kmd-rs-e65e59eef1922997c894983310407056d07a3929.zip
set relative path to native libs
-rw-r--r--README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index 58075fb..dd6d5b8 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,9 @@
## Windows Kernel-Mode Drivers written in Rust
-This library is just a proof-of-concept of windows kernel-mode drivers, which can be written in Rust programming language.
+This library is just a proof-of-concept of the windows kernel-mode drivers, which can be written in Rust programming language.
-It contains the types, constants and bindings for the [Windows Driver Kit](https://en.wikipedia.org/wiki/Windows_Driver_Kit) with target OS starting from Windows XP (x86/x64).
+It contains the types, constants and bindings for the [Windows Driver Kit](https://en.wikipedia.org/wiki/Windows_Driver_Kit)
+with target OS starting from Windows XP (x86/x64).
### Getting started
@@ -32,6 +33,9 @@ cd km\examples\01.minimal\
cargo build --release
```
+If linker fails with error *cannot open input file 'ntoskrnl.lib'*,
+open `kmd-env-rs/.cargo/config` file and replace `../../../` with the full path to the *kmd-env-rs* directory.
+
### Examples