diff options
author | Alex Reinking <alex_reinking@berkeley.edu> | 2022-08-25 21:18:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-26 01:18:06 +0000 |
commit | 5abf3c27bb0c1ea2bcfcfe18225e7c453d3e7c1c (patch) | |
tree | 82dd7672a553d1f0725d548b58768b25c35a85e4 /.github | |
parent | 7a1d82605b96f07a6a576b563b39acb536db4069 (diff) | |
download | wabt-5abf3c27bb0c1ea2bcfcfe18225e7c453d3e7c1c.tar.gz wabt-5abf3c27bb0c1ea2bcfcfe18225e7c453d3e7c1c.tar.bz2 wabt-5abf3c27bb0c1ea2bcfcfe18225e7c453d3e7c1c.zip |
Raise minimum CMake version to 3.16 (#1968)
The stated minimum, 3.1, was released on Dec 17, 2014 and did not
support a value of 17 for CMAKE_CXX_STANDARD. The first version to do so
was 3.8. In fact, attempting to build with CMake 3.7 fails with errors
like:
CMake Error in CMakeLists.txt:
Target "wasm-strip" requires the language dialect "CXX17" , but CMake does
not know the compile flags to use to enable it.
So we might as well take this chance to raise the minimum to something
more recent. I propose 3.16 here because of the following features:
* CMP0077 (v3.13) makes the lives of FetchContent users easier by
allowing option() to be overridden.
* CMP0082 (v3.14) corrects the semantics of install() rules, which is
relevant for FetchContent users.
* CMake 3.12 allows the namelink of a shared library on Linux to be
installed separately (i.e. in a dev package)
* CMake 3.14 integrates the standard install destination variables from
GNUInstallDirs with the install() command.
* CMake 3.15 introduced the CMAKE_MSVC_RUNTIME_LIBRARY variable for
controlling the selection of the runtime library from the outside.
* CMake 3.16 gained support for generator expressions in RPATH
properties, which will make it easier to ship shared libraries.
This version is quite conservative and I would even suggest upgrading
further. Windows and macOS users enjoy frequent updates from Homebrew
and Microsoft Visual Studio. Ubuntu Linux 20.04 LTS ships 3.16 and the
newest LTS ships 3.22. Linux users can always install the latest version
through PIP, even on ARM, PowerPC, and s390x, and even without sudo.
Fixes #1568
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85ce1aa4..bc0ba143 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -116,3 +116,35 @@ jobs: - run: make clang-release-ubsan - run: make test-clang-debug-ubsan - run: make test-clang-release-ubsan + + build-min-cmake: + name: min-cmake + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + with: + submodules: true + - uses: actions/setup-python@v1 + with: + python-version: '3.x' + - name: Install Ninja + run: sudo apt-get install ninja-build + - name: Detect minimum CMake version + run: > + awk 'match($0, /cmake_minimum_required\(VERSION *([0-9]+\.[0-9]+)\)/, a) + { print "WABT_CMAKE_VER=" a[1] }' CMakeLists.txt | tee $GITHUB_ENV + - name: Install minimum CMake + run: | + python -m pip install -U setuptools wheel pip + python -m pip install "cmake==${WABT_CMAKE_VER}.*" + cmake --version + - name: Configure WABT + run: cmake -G Ninja -S . -B out -DCMAKE_BUILD_TYPE=Release + - name: build + run: cmake --build out + - name: unittests + run: cmake --build out --target run-unittests + - name: c-api-tests + run: cmake --build out --target run-c-api-tests + - name: tests + run: cmake --build out --target run-tests |