summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/compilers.py
AgeCommit message (Collapse)Author
2018-06-20Rename clike_langs to clink_langs for clarityNirbheek Chauhan
D is not a 'c-like' language, but it can link to C libraries. The same might be true of Rust in the future and Go when we add support for it. This contains no functionality changes.
2018-06-20dependencies: Don't assume self.compiler is a C compilerNirbheek Chauhan
All dependencies were using find_library, has_header, get_define, etc on self.compiler assuming that it's a compiler that outputs and consumes C-like libraries. This is not true for D (and in the future, for Rust) since although they can consume C libraries, they do not use the C ecosystem. For such purposes, we now have self.clib_compiler. Nothing uses self.compiler anymore as a result, and it has been removed.
2018-06-18Add missing stubs to Compiler.Christoph Behle
Added missing stubs to class Compiler for the methods: * compute_int * has_members * has_type * symbols_have_underscore_prefix
2018-06-18Use stub to report misuse of get_defineChristoph Behle
Instead of checking on the call site add a stub to Compiler which raises an exception.
2018-06-18macos: Rewrite install_name for dependent built libraries on installNirbheek Chauhan
On macOS, we set the install_name for built libraries to @rpath/libfoo.dylib, and when linking to the library, we set the RPATH to its path in the build directory. This allows all built binaries to be run as-is from the build directory (uninstalled). However, on install, we have to strip all the RPATHs because they point to the build directory, and we change the install_name of all built libraries to the absolute path to the library. This causes the install name in binaries to be out of date. We now change that install name to point to the absolute path to each built library after installation. Fixes https://github.com/mesonbuild/meson/issues/3038 Fixes https://github.com/mesonbuild/meson/issues/3077 With this, the default workflow on macOS matches what everyone seems to do, including Autotools and CMake. The next step is providing a way for build files to override the install_name that is used after installation for use with, f.ex., private libraries when combined with the install_rpath: kwarg on targets.
2018-06-10vala: fix extract_all_objects() resultPaolo Bonzini
Because vala is not listed in clike_langs, is_source(fname) is returning False for Vala source files. Therefore, extract_all_objects() is completely empty for Vala programs. Fixes #791
2018-06-06compilers: Use RUSTFLAGS from the env as default rust_args valueXavier Claessens
2018-06-06optinterpreter: Remove duplicated list of languagesXavier Claessens
It is important to keep the list of languages up to date in optinterpreter, otherwise we could have conflicting options when adding new languages.
2018-06-06Fix issues found by flake8Xavier Claessens
2018-06-06Move <lang>_args to coredata.compiler_optionsXavier Claessens
2018-06-06Move get_args_from_envvars() from environment to compilersXavier Claessens
2018-06-06Add a new option for building with Apple bitcode supportNirbheek Chauhan
Normally, people would just pass -fembed-bitcode in CFLAGS, but this conflicts with -Wl,-dead_strip_dylibs and -bundle, so we need it as an option so that those can be quietly disabled.
2018-06-05Add prog/lib dirs from the mingw cross-compiler to PATHNirbheek Chauhan
These directories contain DLLs that the executable may need, such as libstdc++-6.dll, libwinpthread, etc.
2018-05-30New compiler method: check_headerNirbheek Chauhan
This checks not only for existence, but also for usability of the header, which means it does a full compilation and not just pre-processing or __has_include. Fixes https://github.com/mesonbuild/meson/issues/2246
2018-05-29Don't raise StopIteration in generators, no longer allowed with Python 3.7. ↵Christoph Reiter
Fixes #3622 Raising StopIteration from a generator has been deprecated with Python 3.5 and is now an error with Python 3.7: https://docs.python.org/3.8/library/exceptions.html#StopIteration Just use return instead.
2018-05-09Revert "Add macOS linker versioning information"Nirbheek Chauhan
This reverts commit fa6ca160548d7e8df9c4c724e6c96f5e004e5316. Closes https://github.com/mesonbuild/meson/issues/3550
2018-05-04add linker flag to handle $ORIGIN on OpenBSDJasper Lievisse Adriaanse
2018-05-02Can combine D and C++ in a single target. Closes #3125.Jussi Pakkanen
2018-04-17Merge pull request #3353 from xclaesse/has-link-argumentJussi Pakkanen
Add has_link_argument() and friends
2018-04-17Explicitly check for OpenMP headers.Elliott Sales de Andrade
2018-04-17Add an OpenMP dependency.Elliott Sales de Andrade
This works similarly to the thread dependency which stores the various inconsistent flags in each compiler.
2018-04-16Add has_link_argument() and friendsXavier Claessens
Closes: #3335.
2018-04-16has_argument(): reduce code duplicationXavier Claessens
2018-04-16Merged Arm CC support.Jussi Pakkanen
2018-04-16Add macOS linker versioning informationTom Schoonjans
This patch exploits the information residing in ltversion to set the -compatibility_version and -current_version flags that are passed to the linker on macOS.
2018-04-16Do not use -soname when linking with GCC for mingw/cygwinMarvin Scholz
GNU LD does not use soname when linking a PE/COFF binary, so it makes no difference, but it breaks when using the llvm linker (lld), which does not support the soname flag when building PE/COFF binaries for Windows. Fix #3179
2018-04-15Merge pull request #3115 from makise-homura/e2k-lcc-supportJussi Pakkanen
Support lcc compiler for e2k (Elbrus) architecture
2018-04-15compilers: is_library: Also detect .so files with version (using soregex)Martin Hostettler
2018-04-14compilers: Cache compiler checks where we don't want the outputNirbheek Chauhan
This caching is only for a single run, so it doesn't help reconfigure. However, it is useful for subproject setups where different subprojects will run the same compiler checks. The cache is also per compiler instance and is not used for functions that want to read or run the outputted object file or binary. For gst-build, this halves the number of compiler checks that are run and reduces configuration time by 20%.
2018-04-13Deduplicate dependencies resolved to absolute pathsDaniel Schulte
If paths are absolute the order of search directories is not relevant as the path is already resolved.
2018-03-27Updates to CPP support and update review changesSomasekhar Penugonda
2018-03-23Added get_asneeded_args method to Intel compiler.Alexis Jeandet
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2018-03-21Fix b_ndebug=if-release optionAleksey Filippov
Provide get_{type}_options_for_target() methods that unite {type} and builtin options.
2018-03-20Fixed failure if compiler messages is not in UTF-8makise-homura
For example, Elbrus lcc does output in KOI8-R, if LC_ALL=C, and there is no English counterpart for original Russian message.
2018-03-20Added specific get_library_dirs function for lccmakise-homura
2018-03-19Add -Wl,-dead_strip_dylibs supportDavid Seifert
* `-Wl,-dead_strip_dylibs` is the analogue of `-Wl,--as-needed` on macOS.
2018-03-19Fixed indentation and space issues found by SideCImakise-homura
2018-03-19Added Elbrus lcc compilers support as inheritance from gcc onesmakise-homura
2018-03-14- Updating cpp_std options similar to other compiler classesBedarkar, Malhar
- Updating environment.py for selecting '--vsn' option for armcc only. - Updating build type arguments from GitHub pull request - 3157 Change-Id: Id3151e7715ec1016afdbd65391bb0d414ec7de13
2018-03-07Meson Github pull request - 3186 requested changesSomasekhar Penugonda
- Fixing flake8 error in compilers.py - [E124] closing bracket does not match visual indentation - Updating ARMCCompiler constructor in c.py to raise error as per comments
2018-03-05First cut of ARMCC support for MESON.Bedarkar, Malhar
Change-Id: I15d8258e84d392baaccb8f670e33eefcfe8cd49a
2018-02-11Enable default linker optimisations in MSVC release and minsize buildsLeon Krause
2018-01-30Use os.path: basename() and dirname() instead of split()Aleksey Filippov
According to Python documentation[1] dirname and basename are defined as follows: os.path.dirname() = os.path.split()[0] os.path.basename() = os.path.split()[1] For the purpose of better readability split() is replaced by appropriate function if only one part of returned tuple is used. [1]: https://docs.python.org/3/library/os.path.html#os.path.split
2018-01-06tests: fix rpath_uses_ORIGIN on dragonflybsdDylan Baker
Which always seems to prepend /usr/lib/gcc50 (or whatever version) to the rpath, and $ORIGIN after that.
2018-01-06compilers: fix unittest "16 prebuilt shared" on dragonfly bsdDylan Baker
2017-12-30add Compiler.thread_flags() stubAlexey Stukalov
fixes #2834
2017-12-30compilers: prefer C++ over objc in clink_langsNirbheek Chauhan
Otherwise we will try to use the objc compiler when linking projects with both objc and C++. Technically we should use the objc++ linker when doing this, but on most (all?) systems the objc++ linker is `c++`, which is the same as the C++ linker. Closes https://github.com/mesonbuild/meson/issues/2468
2017-12-23Add whitespace around '+'.Benjamin Redelings
2017-12-23Fix linking with clang++ on linux if install_rpath.Benjamin Redelings
2017-12-20Merge pull request #2791 from behlec/compiler-versionJussi Pakkanen
Add more version information to compiler