aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/backends.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-03-21 01:21:37 +0200
committerGitHub <noreply@github.com>2019-03-21 01:21:37 +0200
commit3a613564d3f2db35ca03b2b8658f7050f5ed56d7 (patch)
tree101ea46c91394e8d3d782620bc5630dd3c16803c /mesonbuild/backend/backends.py
parent3bd27c2d8ae7c6157296ed82a016a90d8f49cc2d (diff)
parent1f342a208122c86fa564688c518ecc63b67650df (diff)
downloadmeson-3a613564d3f2db35ca03b2b8658f7050f5ed56d7.zip
meson-3a613564d3f2db35ca03b2b8658f7050f5ed56d7.tar.gz
meson-3a613564d3f2db35ca03b2b8658f7050f5ed56d7.tar.bz2
Merge pull request #5116 from dcbaker/openmp-de-specialize
dependencies/openmp: Don't special case OpenMP
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r--mesonbuild/backend/backends.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index 5b270d3..d69091b 100644
--- a/mesonbuild/backend/backends.py
+++ b/mesonbuild/backend/backends.py
@@ -641,8 +641,6 @@ class Backend:
# pkg-config puts the thread flags itself via `Cflags:`
if dep.need_threads():
commands += compiler.thread_flags(self.environment)
- elif dep.need_openmp():
- commands += compiler.openmp_flags()
# Fortran requires extra include directives.
if compiler.language == 'fortran':
for lt in target.link_targets: