Skip to content

Commit

Permalink
Revert "Cherry pick PR #1909: Use -std=gnu++17 in mac GN configuratio…
Browse files Browse the repository at this point in the history
…n" (#2048)

Reverts youtube/cobalt#2033

This is causing a build breakage since a use of `auto_ptr` has been
removed in C++17

b/288332442
  • Loading branch information
gbournou committed Dec 7, 2023
1 parent 2086173 commit 3d8e920
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starboard/build/config/mac/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ config("host") {

config("common") {
arflags = [ "-no_warning_for_no_symbols" ]
cflags_cc = [ "-std=gnu++17" ]
cflags_objcc = [ "-std=gnu++17" ]
cflags_cc = [ "-std=gnu++14" ]
cflags_objcc = [ "-std=gnu++14" ]
cflags = [ "-fno-common" ]
asmflags = [ "-fno-common" ]
ldflags = [ "-fno-common" ]
Expand Down

0 comments on commit 3d8e920

Please sign in to comment.