diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-02-05 09:02:26 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-02-05 16:31:33 -0800 |
commit | 456844a4f36270e37da4da8cd61c385d4bfc745f (patch) | |
tree | d4232e0b8141c2454b8cef9337462a6bb5cca935 /mesonbuild/backend/backends.py | |
parent | d2c7063c1a69175b9874fddad62e6201c4913363 (diff) | |
download | meson-456844a4f36270e37da4da8cd61c385d4bfc745f.zip meson-456844a4f36270e37da4da8cd61c385d4bfc745f.tar.gz meson-456844a4f36270e37da4da8cd61c385d4bfc745f.tar.bz2 |
vala: Disable unity builds
Our approach to unity builds with vala is broken, you cannot unify the
generated C files, as they contain duplicate symbols. We would need to
instead combine the files while they are still in their vala form, then
convert that to C and compile the unified C file.
This does not fix the linked issue, as this removed the ability to do
vala unity builds, but it does allow running vala with `--unity=on`.
Related: #5280
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r-- | mesonbuild/backend/backends.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index f95ca4d..233173f 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -49,7 +49,7 @@ if T.TYPE_CHECKING: # Languages that can mix with C or C++ but don't support unity builds yet # because the syntax we use for unity builds is specific to C/++/ObjC/++. # Assembly files cannot be unitified and neither can LLVM IR files -LANGS_CANT_UNITY = ('d', 'fortran') +LANGS_CANT_UNITY = ('d', 'fortran', 'vala') class TestProtocol(enum.Enum): |