Skip to content

Commit

Permalink
less debug info in release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Aug 20, 2014
1 parent 73da707 commit 607ed13
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@
"EnableIntrinsicFunctions": "true",
"AdditionalOptions": [
"/MP", # compile across multiple CPUs
]
],
"DebugInformationFormat": "0"
},
"VCLibrarianTool": {
"AdditionalOptions": [
Expand All @@ -63,7 +64,8 @@
"LinkTimeCodeGeneration": 1, # link-time code generation
"OptimizeReferences": 2, # /OPT:REF
"EnableCOMDATFolding": 2, # /OPT:ICF
"LinkIncremental": 1 # disable incremental linking
"LinkIncremental": 1, # disable incremental linking
"GenerateDebugInformation": "false"
}
}
},
Expand All @@ -82,7 +84,8 @@
"EnableIntrinsicFunctions": "true",
"AdditionalOptions": [
"/MP", # compile across multiple CPUs
]
],
"DebugInformationFormat": "0"
},
"VCLibrarianTool": {
"AdditionalOptions": [
Expand All @@ -93,7 +96,8 @@
"LinkTimeCodeGeneration": 1, # link-time code generation
"OptimizeReferences": 2, # /OPT:REF
"EnableCOMDATFolding": 2, # /OPT:ICF
"LinkIncremental": 1 # disable incremental linking
"LinkIncremental": 1, # disable incremental linking
"GenerateDebugInformation": "false"
}
}
}
Expand Down

0 comments on commit 607ed13

Please sign in to comment.