diff options
author | Jack Lloyd <[email protected]> | 2020-03-12 09:06:43 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-03-12 09:06:43 -0400 |
commit | d60832d4c6a26338d4c30e5e1dc61ff88357e5b5 (patch) | |
tree | ca0f111b0230b8e29d6cc2c417b2cfdc512e61df /doc | |
parent | b8f8ed4dc534897b407932d29d483b8b9102f6ea (diff) | |
parent | 42e6b2b2c104770db76a20ed477b81df2c53369c (diff) |
Merge GH #2302 Add 'make check' target which sets LD paths
Diffstat (limited to 'doc')
-rw-r--r-- | doc/building.rst | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/doc/building.rst b/doc/building.rst index 4d906f59b..83782e38d 100644 --- a/doc/building.rst +++ b/doc/building.rst @@ -121,12 +121,7 @@ The basic build procedure on Unix and Unix-like systems is:: $ ./configure.py [--enable-modules=<list>] [--cc=CC] $ make - $ ./botan-test - -If that fails with an error about not being able to find libbotan.so, -you may need to set ``LD_LIBRARY_PATH``:: - - $ LD_LIBRARY_PATH=. ./botan-test + $ make check If the tests look OK, install:: @@ -172,7 +167,7 @@ shell), and run:: $ python configure.py --cc=msvc --os=windows $ nmake - $ botan-test.exe + $ nmake check $ nmake install Botan supports the nmake replacement `Jom <https://wiki.qt.io/Jom>`_ |