From 8dd932da3149e036f23e5dcd6dec7d3ab30520e3 Mon Sep 17 00:00:00 2001 From: Maarten Billemont Date: Tue, 18 Nov 2014 09:56:53 -0500 Subject: [PATCH 1/2] Comment on what to do when libcrypto.a is in a non-standard path for now. --- MasterPassword/C/build | 1 + 1 file changed, 1 insertion(+) diff --git a/MasterPassword/C/build b/MasterPassword/C/build index 90525aa4..ffa69e93 100755 --- a/MasterPassword/C/build +++ b/MasterPassword/C/build @@ -4,6 +4,7 @@ # - To enable verbose algorithm/implementation debugging, use ./build -DDEBUG # - If you see 'undefined reference to `AES_encrypt'', # make sure you have openssl installed. +# If libcrypto.a is in a non-standard directory, try ./build -L[your-lib-dir] # - If you see 'undefined reference to `clock_gettime'', # try ./build -lrt instead. # - If you see 'x86.S:202: Error: junk at end of line, first unrecognized character is `,'', From 1fe3edec0429c55e42eb835e71195aabf7ae8724 Mon Sep 17 00:00:00 2001 From: Maarten Billemont Date: Tue, 18 Nov 2014 15:33:19 -0500 Subject: [PATCH 2/2] oops - syntax error in build script. --- MasterPassword/C/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MasterPassword/C/build b/MasterPassword/C/build index ffa69e93..02ef276e 100755 --- a/MasterPassword/C/build +++ b/MasterPassword/C/build @@ -249,7 +249,7 @@ mpw-bench() { ### TARGETS haslib() { - LC_ALL=C cc -l"$1" 2>&1 | ! grep -q 'library not found' + ! LC_ALL=C cc -l"$1" 2>&1 | grep -q 'library not found' } cc() { if hash llvm-gcc 2>/dev/null; then