Skip to content

Commit

Permalink
meson: bump submodule to 0.55.1
Browse files Browse the repository at this point in the history
This version includes an important bugfix to avoid including unnecessary
-Wl,-rpath flags.  It also avoids the warnings on custom_targets with
more than one output.

Reported-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: Laurent Vivier <lvivier@redhat.com>
Tested-by: Laurent Vivier <lvivier@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
bonzini committed Sep 1, 2020
1 parent 2f4c51c commit 4650443
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -2023,7 +2023,7 @@ python_version=$($python -c 'import sys; print("%d.%d.%d" % (sys.version_info[0]
python="$python -B"

if test -z "$meson"; then
if test "$explicit_python" = no && has meson && version_ge "$(meson --version)" 0.55.0; then
if test "$explicit_python" = no && has meson && version_ge "$(meson --version)" 0.55.1; then
meson=meson
elif test -e "${source_path}/.git" && test $git_update = 'yes' ; then
meson=git
Expand Down
2 changes: 1 addition & 1 deletion meson
Submodule meson updated 63 files
+1 −0 .gitignore
+4 −2 azure-pipelines.yml
+1 −0 data/shell-completions/zsh/_meson
+2 −1 data/syntax-highlighting/vim/syntax/meson.vim
+8 −0 docs/markdown/Release-notes-for-0.55.0.md
+22 −0 docs/markdown/Subprojects.md
+1 −1 man/meson.1
+31 −5 mesonbuild/backend/backends.py
+4 −2 mesonbuild/backend/ninjabackend.py
+2 −1 mesonbuild/build.py
+59 −17 mesonbuild/cmake/executor.py
+24 −7 mesonbuild/cmake/interpreter.py
+3 −2 mesonbuild/cmake/traceparser.py
+0 −3 mesonbuild/compilers/compilers.py
+0 −3 mesonbuild/compilers/cuda.py
+10 −2 mesonbuild/compilers/mixins/clike.py
+1 −1 mesonbuild/compilers/mixins/gnu.py
+0 −3 mesonbuild/compilers/mixins/islinker.py
+1 −1 mesonbuild/compilers/mixins/visualstudio.py
+12 −4 mesonbuild/coredata.py
+16 −5 mesonbuild/dependencies/base.py
+6 −1 mesonbuild/environment.py
+15 −6 mesonbuild/interpreter.py
+1 −1 mesonbuild/interpreterbase.py
+0 −13 mesonbuild/linkers.py
+374 −0 mesonbuild/mesondata.py
+2 −0 mesonbuild/mesonlib.py
+3 −1 mesonbuild/modules/cmake.py
+10 −1 mesonbuild/modules/qt.py
+0 −3 mesonbuild/modules/qt4.py
+0 −3 mesonbuild/modules/qt5.py
+1 −1 mesonbuild/mtest.py
+2 −1 mesonbuild/scripts/depfixer.py
+4 −1 mesonbuild/wrap/wrap.py
+0 −4 msi/createmsi.py
+4 −0 run_meson_command_tests.py
+9 −9 run_project_tests.py
+130 −15 run_unittests.py
+0 −5 setup.py
+1 −16 test cases/cmake/11 cmake_module_path/cmake/FindSomethingLikePython.cmake
+10 −2 test cases/cmake/11 cmake_module_path/meson.build
+15 −0 test cases/cmake/11 cmake_module_path/subprojects/cmMod/CMakeLists.txt
+9 −0 test cases/cmake/11 cmake_module_path/subprojects/cmMod/gen.py
+5 −0 test cases/cmake/11 cmake_module_path/test.json
+10 −0 test cases/cmake/8 custom command/subprojects/cmMod/CMakeLists.txt
+3 −0 test cases/cmake/8 custom command/subprojects/cmMod/cpyInc.hpp.am
+6 −0 test cases/cmake/8 custom command/subprojects/cmMod/macro_name.cpp
+3 −1 test cases/common/109 generatorcustom/meson.build
+3 −0 test cases/common/23 object extraction/meson.build
+3 −2 test cases/common/234 very long commmand line/codegen.py
+1 −5 test cases/common/234 very long commmand line/main.c
+12 −7 test cases/common/234 very long commmand line/meson.build
+23 −0 test cases/common/234 very long commmand line/name_gen.py
+0 −6 test cases/common/234 very long commmand line/seq.py
+0 −0 test cases/common/235 custom_target source/a
+5 −0 test cases/common/235 custom_target source/meson.build
+5 −0 test cases/common/235 custom_target source/x.py
+5 −1 test cases/frameworks/1 boost/meson.build
+3 −0 test cases/linuxlike/13 cmake dependency/cmake/FindSomethingLikeZLIB.cmake
+2 −1 test cases/vala/1 basic/meson.build
+2 −1 test cases/warning/2 languages missing native/meson.build
+1 −1 test cases/warning/2 languages missing native/test.json
+139 −0 tools/gen_data.py

0 comments on commit 4650443

Please sign in to comment.