Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix detection to work with never Java compilers.java9 | Jussi Pakkanen | 2018-03-29 | 1 | -1/+1 |
| | |||||
* | Document the new and improved review guidelines. [skip ci] | Jussi Pakkanen | 2018-03-22 | 1 | -0/+39 |
| | |||||
* | Enable CI builds for release branches | Aleksey Filippov | 2018-03-21 | 2 | -0/+4 |
| | |||||
* | Fix b_ndebug=if-release silently not working | Jussi Pakkanen | 2018-03-21 | 10 | -6/+102 |
|\ | |||||
| * | Disable b_ndebug tests on MSVC | Aleksey Filippov | 2018-03-21 | 3 | -0/+12 |
| | | |||||
| * | Fix b_ndebug=if-release option | Aleksey Filippov | 2018-03-21 | 3 | -6/+26 |
| | | | | | | | | Provide get_{type}_options_for_target() methods that unite {type} and builtin options. | ||||
| * | Add unittests for b_ndebug=if-release and buildtype interactions | Aleksey Filippov | 2018-03-21 | 3 | -0/+28 |
| | | |||||
| * | Add tests for b_ndebug=if-release and buildtype default options | Aleksey Filippov | 2018-03-21 | 4 | -0/+36 |
| | | | | | | | | Co-authored-by: David Seifert <soap@gentoo.org> | ||||
* | | Do not install configure_file output if install_dir is empty. Closes #3270. | Jussi Pakkanen | 2018-03-21 | 3 | -3/+12 |
|/ | |||||
* | Open mesontest logfiles in utf-8 mode | nyorain | 2018-03-20 | 1 | -2/+2 |
| | | | | | Otherwise unit tests fail on windows when they output some non-utf8 data. | ||||
* | Grab a file lock on the build dir during modifications. | Jussi Pakkanen | 2018-03-20 | 3 | -1/+53 |
| | |||||
* | Docs: Correct env variable SCAN_BUILD to SCANBUILD | Marvin Scholz | 2018-03-20 | 1 | -2/+2 |
| | |||||
* | options: s/yiel/yield/ typo | Thibault Saunier | 2018-03-20 | 1 | -1/+1 |
| | | | | Making the option unusable with Invalid kwargs for option use_orc: "yield" | ||||
* | Merge pull request #3223 from sarum9in/rename | Jussi Pakkanen | 2018-03-20 | 15 | -8/+58 |
|\ | | | | | Add install_data() rename parameter | ||||
| * | Add install_data() rename snippet | Aleksey Filippov | 2018-03-19 | 1 | -0/+11 |
| | | |||||
| * | Add install_data() rename documentation | Aleksey Filippov | 2018-03-19 | 2 | -0/+20 |
| | | |||||
| * | Add install_data() failing rename test | Aleksey Filippov | 2018-03-17 | 3 | -0/+3 |
| | | |||||
| * | Add install_data() succeeding rename tests | Aleksey Filippov | 2018-03-17 | 6 | -0/+10 |
| | | |||||
| * | Add rename parameter to install_data() | Aleksey Filippov | 2018-03-17 | 3 | -8/+14 |
| | | |||||
* | | Create a helper for checking if a string has a path component | Nirbheek Chauhan | 2018-03-19 | 5 | -13/+20 |
| | | | | | | | | | | This is used in a number of places, and in some places it is incomplete. Use a helper to ensure it's used properly. | ||||
* | | Merge pull request #3251 from mesonbuild/fixpkgconfigdeps | Jussi Pakkanen | 2018-03-19 | 9 | -5/+106 |
|\ \ | | | | | | | Fix pkg-config dependencies leaking out (debbug 892956) | ||||
| * | | Fix existing tests. | Jussi Pakkanen | 2018-03-19 | 3 | -3/+13 |
| | | | |||||
| * | | Do not leak out private dependencies for shared libraries. | Jussi Pakkanen | 2018-03-17 | 2 | -1/+18 |
| | | | |||||
| * | | Add test for pkgconfig generation and usage. | Jussi Pakkanen | 2018-03-16 | 7 | -2/+76 |
| | | | | | | | | | | | | | | | This builds a project with pkg-config file, installs it and then builds a second project that uses that dependency and runs the result. | ||||
* | | | Add -Wl,-dead_strip_dylibs support | David Seifert | 2018-03-19 | 7 | -3/+91 |
| | | | | | | | | | | | | | | | * `-Wl,-dead_strip_dylibs` is the analogue of `-Wl,--as-needed` on macOS. | ||||
* | | | fixing some typos on the icestorm page | Felipe Corrêa da Silva Sanches | 2018-03-19 | 1 | -3/+3 |
| | | | |||||
* | | | introspect: tests: Inform about tests run parallelization | Thibault Saunier | 2018-03-18 | 1 | -0/+1 |
| | | | |||||
* | | | Project-templates.md: Fix help command name [skip ci] | Martin Hostettler | 2018-03-18 | 1 | -1/+1 |
| | | | |||||
* | | | Replaced appveyor account by mesonbuild | Aleksey Filippov | 2018-03-18 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Fix appveyor failures: do not use PowerShell since it triggers ↵ | Aleksey Filippov | 2018-03-17 | 1 | -14/+8 |
| | | | | | | | | | | | | | | NativeCommandError if pacman prints to stderr Split command to avoid "The input line is too long." error. Also use --needed for pacman to not reinstall already installed packages. | ||||
* | | Use target.get_id() instead of basename and type_suffix concatenation at ↵ | Aleksey Filippov | 2018-03-15 | 9 | -14/+53 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | call site Fixes the bug with flat layout and identical target names in subprojects. Without this change directories are not created with subproject prefix and they can collide. Remove dead makedirs code in Backend.__init__(), during initialization of backend build.targets is empty. Create output directories in Vs2010Backend.generate_projects() instead. Also use double blank line in run_unittests.py according to https://www.python.org/dev/peps/pep-0008/#blank-lines. | ||||
* | | Fix FileNotFoundError when restorecon unavailable | Fabrice Fontaine | 2018-03-15 | 1 | -0/+4 |
| | | | | | | | | | | | | | | Fixes: - http://autobuild.buildroot.net/results/d5dcdfdfab3503fdc387f99e68267972a38c417d Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> | ||||
* | | Turn deprecated commands into errors. | Jussi Pakkanen | 2018-03-14 | 5 | -16/+11 |
| | | |||||
* | | Merge pull request #3127 from bluetech/method-permitted-kwargs | Jussi Pakkanen | 2018-03-13 | 5 | -2/+138 |
|\ \ | |||||
| * | | Warn if non-permitted keyword arguments are given to compiler methods | Ran Benita | 2018-02-23 | 4 | -1/+137 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This can help future generations avoid mistakes like this: https://github.com/xkbcommon/libxkbcommon/commit/edb1c662394578a54b7bbed231d918925e5d8150 To avoid breaking builds, this is currently just an error. After sufficient time has passed this can hopefully become a hard error, similarly to the already-existing `permittedKwargs` warnings. | ||||
| * | | Remove invalid kwarg from test cases/linuxlike/9 compiler checks with ↵ | Ran Benita | 2018-02-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | dependencies cc.has_function() does not accept a `name` keyword argument. | ||||
* | | | Merge pull request #3145 from thejk/gcovr | Jussi Pakkanen | 2018-03-13 | 6 | -16/+61 |
|\ \ \ | | | | | | | | | Support gcovr >= 3.1 and add gcovr html report as fallback | ||||
| * | | | fixup! Fix coverage-xml and coverage-text targets for gcovr >= 3.1 | Joel Klinghed | 2018-03-13 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | Fix fail cases of detect_gcovr | ||||
| * | | | fixup! Allow gcovr >= 3.1 to be used to generate html coverage report | Joel Klinghed | 2018-03-12 | 3 | -5/+5 |
| | | | | | | | | | | | | | | | | Rename gcovr_3_1 to gcovr_new_rootdir | ||||
| * | | | fixup! Fix coverage-xml and coverage-text targets for gcovr >= 3.1 | Joel Klinghed | 2018-03-12 | 3 | -6/+6 |
| | | | | | | | | | | | | | | | | Rename gcovr_3_1 to gcovr_new_rootdir | ||||
| * | | | Allow gcovr >= 3.1 to be used to generate html coverage report | Joel Klinghed | 2018-02-27 | 5 | -6/+28 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modern gcovr includes html generation support so if lcov and genhtml are not available fallback to gcovr. Kept lcov and genhtml as default so to not surprise existing users of coverage-html with the different output of gcovr. gcovr added html support in 3.0 but as there already is a test for 3.1 because of the changes to -r/--rootdir I opted to only allow html generation for >= 3.1 to keep things simple. | ||||
| * | | | Fix coverage-xml and coverage-text targets for gcovr >= 3.1 | Joel Klinghed | 2018-02-27 | 3 | -10/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In gcovr 3.1 the -r/--rootdir argument changed meaning causing reports generated with gcovr 3.1 to not find the source files and look for *.gcda in the whole source tree rather than the build dir. So, detect gcovr version and if 3.1 give build_root to -r instead of source_root. | ||||
* | | | | pkgconfig: allow any non-found dependency requires arguments | Aleksey Filippov | 2018-03-13 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | On some platforms such as OSX external dependency falls back to different dependency types if it is not found. | ||||
* | | | | pkgconfig: print requires argument type on error | Aleksey Filippov | 2018-03-13 | 1 | -1/+2 |
| |_|/ |/| | | |||||
* | | | Fix snippet heading to conform to new formatting rules. | Jussi Pakkanen | 2018-03-13 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #3205 from sarum9in/use-itertools | Jussi Pakkanen | 2018-03-12 | 6 | -14/+10 |
|\ \ \ | |||||
| * | | | Use specific exception types instead of Exception | Aleksey Filippov | 2018-03-12 | 2 | -3/+3 |
| | | | | |||||
| * | | | Use subprocess.check_output() instead of Popen().communicate() | Aleksey Filippov | 2018-03-11 | 1 | -6/+2 |
| | | | | |||||
| * | | | Do not use bare except [flake8] | Aleksey Filippov | 2018-03-11 | 4 | -6/+6 |
| | | | | | | | | | | | | | | | | | | | | Use more specific exception types where appropriate. This patch does not change bare except calls if exception is re-raised. | ||||
| * | | | Use itertools.chain() instead of list concatenation | Aleksey Filippov | 2018-03-11 | 2 | -2/+2 |
| | | | |