Skip to content
Snippets Groups Projects
Commit fe06d409 authored by Craig Tiller's avatar Craig Tiller
Browse files

Try even harder to disable PDB generation

parent b059ae54
No related branches found
No related tags found
No related merge requests found
...@@ -479,7 +479,10 @@ if platform.system() == 'Windows': ...@@ -479,7 +479,10 @@ if platform.system() == 'Windows':
def make_jobspec(cfg, targets): def make_jobspec(cfg, targets):
extra_args = [] extra_args = []
if args.travis: if args.travis:
extra_args.extend(["/m", "/p:GenerateDebugInformation=false"]) # better do parallel compilation
extra_args.extend(["/m"])
# disable PDB generation: it's broken, and we don't need it during CI
extra_args.extend(["/p:GenerateDebugInformation=false", "/p:DebugInformationFormat:None"])
return [ return [
jobset.JobSpec(['vsprojects\\build.bat', jobset.JobSpec(['vsprojects\\build.bat',
'vsprojects\\%s.sln' % target, 'vsprojects\\%s.sln' % target,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment