Skip to content

Commit

Permalink
limit inlines on Release builds (broken by a prior commit)
Browse files Browse the repository at this point in the history
  • Loading branch information
jBarz committed Aug 11, 2017
1 parent 00a55d0 commit ea748d8
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions build/toolchain.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -1160,15 +1160,12 @@
'-O2',
'-O1',
'-Os',
'-qinline=:::300',
],
'conditions': [
['OS!="os390"', {
'cflags': [
'-fdata-sections',
'-ffunction-sections',
],
}],
}],
['OS!="os390"', {
'cflags': [
'-fdata-sections',
'-ffunction-sections',
],
}],
['OS=="mac"', {
Expand Down Expand Up @@ -1359,6 +1356,11 @@
}],
],
}],
['OS=="os390"', {
'cflags': [
'-qinline=:::300',
],
}],
['OS=="android"', {
'cflags!': [
'-O3',
Expand Down

0 comments on commit ea748d8

Please sign in to comment.