Do not require OpenMP for non-tools builds (export templates)

This commit is contained in:
Rémi Verschelde
2017-12-22 12:24:40 +01:00
parent 074b9d2b3e
commit bf4d398d4e
3 changed files with 4 additions and 4 deletions

View File

@@ -82,7 +82,7 @@ def configure(env):
env['RANLIB'] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ranlib"
env['AS'] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-as"
env.Append(CCFLAGS=['-D__MACPORTS__']) #hack to fix libvpx MM256_BROADCASTSI128_SI256 define
if (env["openmp"]):
if env['tools'] and env['openmp']:
env.Append(CPPFLAGS=['-fopenmp'])
env.Append(LINKFLAGS=['-fopenmp'])