Skip to content

Commit

Permalink
[VERSION] 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rentzsch committed Jan 4, 2018
1 parent 30eac57 commit 843f234
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Then you can just:

Or compile it directly:

gcc stressdrive.c -o stressdrive -lcrypto -framework IOKit -framework CoreServices -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib
gcc stressdrive.c -o stressdrive -framework IOKit -framework CoreServices -I/usr/local/opt/openssl/include /usr/local/opt/openssl/lib/libcrypto.a

### Ubuntu

Expand All @@ -77,6 +77,10 @@ Indeed you could. I prefer a minimal focused tool whose operation is fixed, its

## Version History

### v1.2.1: 2018-01-04 [download](https://github.com/rentzsch/stressdrive/releases/download/1.2.1/stressdrive-mac-1.2.1.zip)

- [FIX] Statically link libcrypto. ([rentzsch](https://github.com/rentzsch/stressdrive/commit/30eac57352c49d3ebf8d980f12b3369b316f5c97))

### v1.2: 2018-01-03 [download](https://github.com/rentzsch/stressdrive/releases/download/1.2/stressdrive-mac-1.2.zip)

- [NEW] Linux support. ([Ivan Kuchin](https://github.com/rentzsch/stressdrive/pull/8))
Expand Down
4 changes: 2 additions & 2 deletions stressdrive.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// stressdrive.c 1.2
// stressdrive.c 1.2.1
// Copyright (c) 2011-2018 Jonathan 'Wolf' Rentzsch: http://rentzsch.com
// Some rights reserved: http://opensource.org/licenses/mit
// https://github.com/rentzsch/stressdrive
Expand Down Expand Up @@ -104,7 +104,7 @@ void SHA1_Finish(unsigned char *digest, SHA_CTX *ctx, const char *name) {

int main(int argc, const char *argv[]) {
if (argc != 2) {
fprintf(stderr, "stressdrive v1.2\n");
fprintf(stderr, "stressdrive v1.2.1\n");
#ifdef __APPLE__
fprintf(stderr, "Usage: sudo %s /dev/rdiskN\n", argv[0]);
#else
Expand Down

0 comments on commit 843f234

Please sign in to comment.