summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCharles Lowell <cowboyd@frontside.io>2017-05-04 17:55:09 -0500
committerBen Smith <binjimin@gmail.com>2017-05-04 15:55:09 -0700
commit08cc271f600bafb7dbf42b519ba48c539cd3130e (patch)
tree438b64976d7c5abaf3d939dd7c2ab8048baea65c /README.md
parent2365f39ad37bc13723056d3865420c7eb7a0c314 (diff)
downloadwabt-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.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index a94c79e6..64f75209 100644
--- a/README.md
+++ b/README.md
@@ -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
```