diff options
author | bloodstalker <thabogre@gmail.com> | 2017-02-08 08:07:43 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-02-08 08:07:43 +0000 |
commit | 8e2daa0324362f3d4b8378e1b7e9c37fa0a6ee38 (patch) | |
tree | ef5cef6bc33f1250712ec46408136b3ad6bd8e75 | |
parent | remove the error for win_buil (diff) | |
download | mutator-8e2daa0324362f3d4b8378e1b7e9c37fa0a6ee38.tar.gz mutator-8e2daa0324362f3d4b8378e1b7e9c37fa0a6ee38.zip |
updated. added some notes regarding windows builds.
Diffstat (limited to '')
-rw-r--r-- | README.md | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -88,6 +88,8 @@ All the as-of-yet implemented features of the project are very much buildable an ### Building +#### Linux + To build the project, you need to have the LLVM libraries 4.0 and up. The project can not be built with LLVM 3.8 or lower. The latest tested is LLVM trunk:292415.<br/> Here Are the build options:<br/> @@ -98,6 +100,8 @@ Here Are the build options:<br/> * `COV_USE` and `COV_GEN` are for use with the `profdata` format. This option can only be used to build with `clang++`.<br/> * `COV_GNU` will generate `gcov` compliant coverage data. This option can only be used to build with `clang++`.<br/> * `COV_NO_CLANG` will build the executable with no source coverage instrumentation. This option can only be used to build with `clang++`.<br/> + * `COV_NO_CLANG_1Z` will build with support for C++1z support. I use this for dev builds.<br/> + * `WIN_BUILD` will later be used to support Windows builds. It assumes there is a llvm-config and it's in windows path.<br/> * `GNU_MODE` will build the executable with no source code coverage instrumentation for `g++`. Can only be used to build with `g++`.<br/> * The `LLVM_CONF` option is used to tell the compiler which `llvm-config` to use. The default value is `llvm-config`.<br/> @@ -121,6 +125,11 @@ make install ``` +#### Windows + +Currently a Windows build is not officially supported but if you can build LLVM/Clang, then you can build mutator too. Currently the latest version of LLVM/Clang available on Cygwin is 3.8 and that does not include the dev-libraries so you can't use those. Just use the Guide on LLVM for building using Visual Studio. After you have the headers and libraries and llvm-config, just use `BUILD_MODE=WIN_BUILD` with Clang and you should be good to go.<br/> +Let me know if you decide to try this and/or have any problems with it.<br/> + ### Running To run any of the tree executables, just give a filename or a whitespace-separated list of files. The executables will print out the results to stdout.<br/> |