From cae6aac5b0b7a34c073765931d86e459acce717f Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Tue, 27 Dec 2016 19:05:07 +0330 Subject: added a note regarding files including standard library headers --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 6e89133..32a5572 100644 --- a/README.md +++ b/README.md @@ -93,14 +93,14 @@ To run the executables with the mutator UI, you can use `mutator.sh`. For a list So for example if you want to run the TDD tests for the Misra-C checker, you run:
```bash -./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall"
+./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall" ``` Do note that if your file has included standard header libraries, you do need to tell it where to look for them, so for the above example on Fedora, you would need to run:
```bash -./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall -I/lib/gcc/x86_64-redhat-linux/5.3.1/include/"
+./mutator.sh -c misrac -i ./test/testFuncs2.c ./test/testFuncs1.c -opts "-Wall -I/lib/gcc/x86_64-redhat-linux/5.3.1/include/" ```
-- cgit v1.2.3