diff options
author | Charles Lowell <cowboyd@frontside.io> | 2017-05-04 17:55:09 -0500 |
---|---|---|
committer | Ben Smith <binjimin@gmail.com> | 2017-05-04 15:55:09 -0700 |
commit | 08cc271f600bafb7dbf42b519ba48c539cd3130e (patch) | |
tree | 438b64976d7c5abaf3d939dd7c2ab8048baea65c /README.md | |
parent | 2365f39ad37bc13723056d3865420c7eb7a0c314 (diff) | |
download | wabt-08cc271f600bafb7dbf42b519ba48c539cd3130e.tar.gz wabt-08cc271f600bafb7dbf42b519ba48c539cd3130e.tar.bz2 wabt-08cc271f600bafb7dbf42b519ba48c539cd3130e.zip |
note CMake version dependency on OSX (#414)
With CMake version <= 1.3.1 on OSX you will see errors like the following because of https://cmake.org/Bug/view.php?id=15355
```
Make Error in CMakeLists.txt:
Target "hexfloat_test" requires the language dialect "CXX11" (with compiler
extensions), but CMake does not know the compile flags to use to enable it.
CMake Error in CMakeLists.txt:
Target "wabt-unittests" requires the language dialect "CXX11" (with
compiler extensions), but CMake does not know the compile flags to use to
enable it.
CMake Error in CMakeLists.txt:
Target "wasm-interp" requires the language dialect "CXX11" (with compiler
extensions), but CMake does not know the compile flags to use to enable it.
CMake Error in CMakeLists.txt:
Target "wasm-link" requires the language dialect "CXX11" (with compiler
extensions), but CMake does not know the compile flags to use to enable it.
CMake Error in CMakeLists.txt:
Target "wasm2wast" requires the language dialect "CXX11" (with compiler
extensions), but CMake does not know the compile flags to use to enable it.
CMake Error in CMakeLists.txt:
Target "wasmdump" requires the language dialect "CXX11" (with compiler
extensions), but CMake does not know the compile flags to use to enable it.
CMake Error in CMakeLists.txt:
Target "wasmopcodecnt" requires the language dialect "CXX11" (with compiler
extensions), but CMake does not know the compile flags to use to enable it.
CMake Error in CMakeLists.txt:
Target "wast-desugar" requires the language dialect "CXX11" (with compiler
extensions), but CMake does not know the compile flags to use to enable it.
CMake Error in CMakeLists.txt:
Target "wast2wasm" requires the language dialect "CXX11" (with compiler
extensions), but CMake does not know the compile flags to use to enable it.
```
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -36,6 +36,8 @@ This will fetch the testsuite and gtest repos, which are needed for some tests. You'll need [CMake](https://cmake.org). If you just run `make`, it will run CMake for you, and put the result in `out/clang/Debug/` by default: +> Note: If you are on OSX, you will need to use CMake version 3.2 or higher + ``` $ make ``` |