From f2dd3159f97d6b5d327a0d4f62e63534e329bafc Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 7 Mar 2020 10:20:24 +1000 Subject: [PATCH] Update build command line examples to be consistent with each other. --- examples/build/README.md | 4 ++-- tests/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/build/README.md b/examples/build/README.md index 4b38a6e7..37ce5ad3 100644 --- a/examples/build/README.md +++ b/examples/build/README.md @@ -1,7 +1,7 @@ Examples -------- -gcc ../simple_playback.c -o bin/simple_playback -ldl -lpthread -lm -gcc ../simple_playback.c -o bin/simple_playback -ldl -lpthread -lm -Wall -Wextra -Wpedantic -std=c89 +gcc ../simple_playback.c -o bin/simple_playback -ldl -lm -lpthread +gcc ../simple_playback.c -o bin/simple_playback -ldl -lm -lpthread -Wall -Wextra -Wpedantic -std=c89 Emscripten ---------- diff --git a/tests/README.md b/tests/README.md index d8e57324..acbe08c4 100644 --- a/tests/README.md +++ b/tests/README.md @@ -2,7 +2,7 @@ Building ======== Build and run from "_build" directory. Example: - gcc ../test_deviceio/ma_test_deviceio.c -o bin/test_deviceio -Wall -Wextra -Wpedantic -ldl -lm -lpthread + gcc ../test_deviceio/ma_test_deviceio.c -o bin/test_deviceio -ldl -lm -lpthread -Wall -Wextra -Wpedantic -std=c89 ./bin/test_deviceio Output files will be placed in the "res/output" folder.