Skip to content

Commit

Permalink
Turn off use of -std=c++11 flag for now
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinD42 committed Mar 28, 2018
1 parent 4cbdab9 commit 89f2c3d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,11 @@ def _b(v):
# causes problems with other non-Windows, non-Darwin compilers then
# we'll need to make this a little smarter about what flag (if any)
# needs to be used.
if not isWindows and not isDarwin:
#
# NOTE 2: SIP chenged its output such that this doesn't appear to be
# needed anymore, but we'll leave the code in place to make it easy to
# turn it back on again if/when needed.
if False and not isWindows and not isDarwin:
stdflag = '-std=c++11'
curflags = os.environ.get('CXXFLAGS', '')
if stdflag not in curflags:
Expand Down

0 comments on commit 89f2c3d

Please sign in to comment.