aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNicholas Tay <nick@windblume.net>2022-01-16 00:49:30 +1100
committerNicholas Tay <nick@windblume.net>2022-01-16 00:49:30 +1100
commit319cd947618d4ebaffc8aba636d017fe5c956025 (patch)
tree9fb6fa5359b8c81622702151b1a1d82753933c6d /README.md
parent35bc2c5c518da3133cc2810efbfcb10542b44d27 (diff)
downloadpassgen-319cd947618d4ebaffc8aba636d017fe5c956025.tar.gz
passgen-319cd947618d4ebaffc8aba636d017fe5c956025.tar.bz2
passgen-319cd947618d4ebaffc8aba636d017fe5c956025.zip
Batch script for Windows compilation
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 02fbb47..7fc784b 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ See `passgen --help` for details.
$ make
# Windows, in Developer CMD
-$ cl /std:c11 passgen.c /link Advapi32.lib
+$ build_msvc.bat
```
NOTE: Compilation with mingw will use the fallback RNG for password generation. This utilises `rand()` in C, seeded with the time and PID - may be unsafe! On Windows with `cl`, \*nix, macOS, Free/OpenBSD, the relevant system calls will be utilised to get better quality randomness. See the `_rng` functions for details.