Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-07-21 | added *.pyc to .gitignore | Karl-Philipp Richter | 1 | -0/+2 | |
2017-07-21 | gnome: Fix wrong include path | Nicolas Dufresne | 1 | -3/+1 | |
When dealing with the SharedLibrary or StaticLibrary include directories, we where not taking into acount that path are relative to the source tree. With proper helper, this works now. This fixues issue where the gir may be generated bug from headers found in the prefix. | |||||
2017-07-21 | Fix run_target() accepting ConfigureFile for command | Patrick Griffis | 3 | -0/+16 | |
2017-07-21 | build.py: fixed a small issue where hasattr was passed only a name argument. | Hagai | 1 | -1/+1 | |
2017-07-21 | Renamed test dirs to remove duplicated numbers. | Jussi Pakkanen | 6 | -0/+0 | |
2017-07-21 | configure_file: warn in case a variable to subsitute is not present in the ↵ | Christoph Reiter | 2 | -3/+15 | |
passed configuration. Fixes #2090 | |||||
2017-07-21 | Merge pull request #1955 from jon-turney/exe-implib | Jussi Pakkanen | 26 | -111/+253 | |
Support implibs for executables on Windows | |||||
2017-07-21 | Make error message more informative | Emmanuele Bassi | 1 | -2/+2 | |
It's easier to identify a malformed variable assignment if we print it out. | |||||
2017-07-21 | Link to compiler properties for compiler ids list | Nirbheek Chauhan | 1 | -1/+1 | |
[skip ci] | |||||
2017-07-21 | Update compiler ids in Compiler-properties.md | Nirbheek Chauhan | 1 | -0/+5 | |
2017-07-21 | Merge pull request #2046 from martin-ejdestig/mintro_deps_name_key | Jussi Pakkanen | 2 | -3/+25 | |
Modify mesonintrospect --dependencies so 1 element in list is 1 depen… | |||||
2017-07-21 | Updates to the reference manual | Nirbheek Chauhan | 1 | -5/+7 | |
Typos, add details about how subprojects work, document compiler ids. | |||||
2017-07-20 | Add to release note | Jon Turney | 1 | -0/+5 | |
2017-07-20 | Use full_path() rather than adding current_build_dir() as rpath in test ↵ | Jon Turney | 1 | -4/+1 | |
common/154 | |||||
2017-07-20 | Make the name of the executable implib configurable | Jon Turney | 4 | -10/+17 | |
2017-07-20 | Consolidate windows tests which are divided between mingw and msvc | Jon Turney | 10 | -100/+26 | |
2017-07-20 | Support implibs for executables on Windows | Jon Turney | 15 | -11/+218 | |
Add a boolean 'implib' kwarg to executable(). If true, it is permitted to use the returned build target object in link_with: On platforms where this makes sense (e.g. Windows), an implib is generated for the executable and used when linking. Otherwise, it has no effect. (Rather than checking if it is a StaticLibrary or SharedLibary, BuildTarget subclasses gain the is_linkable_target method to test if they can appear in link_with:) Also install any executable implib in a similar way to a shared library implib, i.e. placing the implib in the appropriate place Add tests of: - a shared_module containing a reference to a symbol which is known (at link time) to be provided by the executable - trying to link with non-implib executables (should fail) - installing the implib (This last one needs a little enhancement of the installed file checking as this is the first install test we have which needs to work with either MSVC-style or GCC-style implib filenames) | |||||
2017-07-20 | Add a mesonintrospect --dependencies test | Martin Ejdestig | 1 | -0/+22 | |
2017-07-20 | Modify mesonintrospect --dependencies so 1 element in list is 1 dependency | Martin Ejdestig | 1 | -3/+3 | |
Makes it less awkward for tools to parse the data. Was modified to return a list, with two elements for each dependency, instead of a dictionary in ac1c929f66bde7209f1bd7e2d995dbd3949e1d8b . Closes #2018. | |||||
2017-07-20 | i18n: Fixed gettext permitted Kwargs list | Iñigo MartÃnez | 1 | -1/+1 | |
2017-07-20 | gnome.genmarshal(): Include generated header in generated source | Patrick Griffis | 1 | -1/+5 | |
This silences any strict-prototype warnings if enabled. | |||||
2017-07-20 | Allow test to depend on executable target in cross build. (#2007) | FredericHamel | 2 | -0/+7 | |
* Add a crossbuild case in 'test case/common/1 trivial/meson.build' * Add native flags for crossbuild tests. | |||||
2017-07-19 | Merge pull request #1374 from mesonbuild/simd | Jussi Pakkanen | 25 | -8/+879 | |
Add support for SIMD detection | |||||
2017-07-19 | Added documentation for SIMD module. | Jussi Pakkanen | 5 | -3/+91 | |
2017-07-18 | docs: Add HexChat to users... again | TingPing | 1 | -0/+1 | |
2017-07-19 | Update Users.md: point to upstream GLib repo | Tim-Philipp Müller | 1 | -3/+2 | |
And link to Gtk+ master branch instead of wip/meson. | |||||
2017-07-18 | docs: Add HexChat to list of users | TingPing | 1 | -0/+1 | |
2017-07-18 | Add more projects to Users.md | Nirbheek Chauhan | 1 | -2/+6 | |
2017-07-18 | Turned SIMD into an unstable module. | Jussi Pakkanen | 3 | -1/+5 | |
2017-07-18 | Close files reliably. | Jussi Pakkanen | 4 | -59/+66 | |
2017-07-18 | Revert "Merge pull request #1931 from centricular/use-patched-ninja" | Jussi Pakkanen | 6 | -26/+16 | |
This reverts commit aab7ada356e02033e4030143cf363d06d975283b, reversing changes made to e1b24765afd9e7d2d8043a408d69c7ad814d3551. | |||||
2017-07-17 | Renamed test case number to avoid dupes. | Jussi Pakkanen | 16 | -1/+3 | |
2017-07-17 | Renamed test dir. | Jussi Pakkanen | 14 | -0/+0 | |
2017-07-17 | Created merge_from method for ConfigurationData. | Jussi Pakkanen | 2 | -2/+14 | |
2017-07-17 | Create a new configuration data object and return it as the result. | Jussi Pakkanen | 2 | -10/+8 | |
2017-07-17 | Do not use AVX on OSX since we can't detect it reliably at runtime and some ↵ | Jussi Pakkanen | 1 | -1/+6 | |
CI machines do not seem to have it. | |||||
2017-07-17 | unittests: Don't pass /nologo to `cl` during detection | Nirbheek Chauhan | 1 | -1/+1 | |
This causes it to not output the version information to stderr, which we need to extract the version and the architecture. Found by Jussi. | |||||
2017-07-17 | msvc: Split stderr by line and raise exception if empty | Nirbheek Chauhan | 1 | -1/+4 | |
std.split() splits on whitespace, but we want the first line. | |||||
2017-07-17 | unittests: Check value of cc.is_64 with MSVC | Nirbheek Chauhan | 1 | -0/+9 | |
2017-07-17 | unittests: Ensure that the compiler version is not blank | Nirbheek Chauhan | 1 | -0/+4 | |
2017-07-17 | Hardcode processor features on OSX because it ships a broken ↵ | Jussi Pakkanen | 9 | -4/+40 | |
__builtin_cpu_supports. | |||||
2017-07-17 | Fix MMX on 32 bit x86. | Jussi Pakkanen | 1 | -1/+5 | |
2017-07-17 | A few fixes for OSX and VS2010. | Jussi Pakkanen | 2 | -0/+7 | |
2017-07-17 | Fix checks on MinGW and VS2010. | Jussi Pakkanen | 3 | -5/+21 | |
2017-07-17 | Added VS support to simd detector. | Jussi Pakkanen | 14 | -17/+144 | |
2017-07-17 | Fix building with Clang on Raspbian. | Jussi Pakkanen | 1 | -0/+6 | |
2017-07-17 | Fix a few OSX "features". | Jussi Pakkanen | 2 | -1/+6 | |
2017-07-17 | Created simd module. | Jussi Pakkanen | 3 | -40/+116 | |
2017-07-17 | Added NEON support. | Jussi Pakkanen | 4 | -3/+30 | |
2017-07-17 | Add AVX2. | Jussi Pakkanen | 3 | -0/+34 | |