-Removed OpenMP support, replaced by a custom class.
-Disabled Opus, implementation is wrong.
This commit is contained in:
@ -191,8 +191,6 @@ def configure(env):
|
||||
if (env["use_lto"]):
|
||||
env.Append(CCFLAGS=['/GL'])
|
||||
env.Append(LINKFLAGS=['/LTCG'])
|
||||
if env['tools'] and env['openmp']:
|
||||
env.Append(CPPFLAGS=['/openmp'])
|
||||
|
||||
env.Append(CCFLAGS=["/I" + p for p in os.getenv("INCLUDE").split(";")])
|
||||
env.Append(LIBPATH=[p for p in os.getenv("LIB").split(";")])
|
||||
@ -270,9 +268,6 @@ def configure(env):
|
||||
env.Append(CCFLAGS=['-flto'])
|
||||
env.Append(LINKFLAGS=['-flto=' + str(env.GetOption("num_jobs"))])
|
||||
|
||||
if env['tools'] and env['openmp']:
|
||||
env.Append(CPPFLAGS=['-fopenmp'])
|
||||
env.Append(LINKFLAGS=['-fopenmp'])
|
||||
|
||||
## Compile flags
|
||||
|
||||
|
||||
Reference in New Issue
Block a user